diff --git a/404.php b/404.php index e551b3c..720383a 100644 --- a/404.php +++ b/404.php @@ -1,69 +1,53 @@ -
-
-
+ae_use_custom_content_bookends(); +get_header(); +get_template_part( 'parts/content-start' ); -
- -
-

+?> +
+
+ + - +
+

-
-
- -
-
- -
-

-
    - 'count', - 'order' => 'DESC', - 'show_count' => 1, - 'title_li' => '', - 'number' => 10, - ) ); - ?> -
-
- -
-
- -
-
- ' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', 'aether' ), convert_smilies( ':)' ) ) . '

'; - the_widget( 'WP_Widget_Archives', 'dropdown=1&title='.esc_html__( 'Archives', 'aether' ), "after_title=$archive_content" ); - ?> -
+
+
+ +
+
-
- -
-
+
+
+ ' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', 'aether' ), convert_smilies( ':)' ) ) . '

'; + the_widget( 'WP_Widget_Archives', 'dropdown=1&title='.esc_html__( 'Archives', 'aether' ), "after_title=$archive_content" ); + ?> +
+ +
+ +
+
+
+
+ -
-
-
- - +get_template_part( 'parts/content-end' ); +get_footer(); diff --git a/archive-noresults.php b/archive-noresults.php new file mode 100644 index 0000000..ba6a4c4 --- /dev/null +++ b/archive-noresults.php @@ -0,0 +1,24 @@ + + +
+
+ +

+
+
+ + diff --git a/archive-resultlist.php b/archive-resultlist.php new file mode 100644 index 0000000..6f94d65 --- /dev/null +++ b/archive-resultlist.php @@ -0,0 +1,118 @@ + +
+

+ ' . get_the_author() . '' ); + + elseif ( is_day() ) : + printf( esc_html__( 'Day: %s', 'aether' ), '' . get_the_date() . '' ); + + elseif ( is_month() ) : + printf( esc_html__( 'Month: %s', 'aether' ), '' . get_the_date( _x( 'F Y', 'monthly archives date format', 'aether' ) ) . '' ); + + elseif ( is_year() ) : + printf( esc_html__( 'Year: %s', 'aether' ), '' . get_the_date( _x( 'Y', 'yearly archives date format', 'aether' ) ) . '' ); + + elseif ( is_tax( 'post_format', 'post-format-aside' ) ) : + esc_html_e( 'Asides', 'aether' ); + + elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) : + esc_html_e( 'Galleries', 'aether'); + + elseif ( is_tax( 'post_format', 'post-format-image' ) ) : + esc_html_e( 'Images', 'aether'); + + elseif ( is_tax( 'post_format', 'post-format-video' ) ) : + esc_html_e( 'Videos', 'aether' ); + + elseif ( is_tax( 'post_format', 'post-format-quote' ) ) : + esc_html_e( 'Quotes', 'aether' ); + + elseif ( is_tax( 'post_format', 'post-format-link' ) ) : + esc_html_e( 'Links', 'aether' ); + + elseif ( is_tax( 'post_format', 'post-format-status' ) ) : + esc_html_e( 'Statuses', 'aether' ); + + elseif ( is_tax( 'post_format', 'post-format-audio' ) ) : + esc_html_e( 'Audios', 'aether' ); + + elseif ( is_tax( 'post_format', 'post-format-chat' ) ) : + esc_html_e( 'Chats', 'aether' ); + + else : + esc_html_e( 'Archives', 'aether' ); + + endif; + ?> +

+ %s', $term_description ); + endif; + ?> +
+ +
+
+ + + + + + + +
+ + + max_num_pages > 1 ): ?> + + +
+ + - -
-
- - - - - - - - - - - - - - - - - - - + ae_use_custom_content_bookends(); + get_header(); -
-
+ if (have_posts()) { + get_template_part( 'archive-resultlist' ); + } + else { + get_template_part( 'archive-noresults' ); + } - - + get_footer(); diff --git a/background.jpg b/background.jpg deleted file mode 100644 index 7aa254c..0000000 Binary files a/background.jpg and /dev/null differ diff --git a/classes/content-layout.php b/classes/content-layout.php new file mode 100644 index 0000000..da18b75 --- /dev/null +++ b/classes/content-layout.php @@ -0,0 +1,65 @@ +m_currentLayout = 'right-sidebar'; + $this->m_layouts = [ + 'left-sidebar' => esc_html__('Left Sidebar','aether'), + 'right-sidebar' => esc_html__('Right Sidebar','aether'), + 'no-sidebar' => esc_html__('No Sidebar','aether'), + 'full-width' => esc_html__('Full Width', 'aether') + ]; + } + + public function layouts() + { + return $this->m_layouts; + } + + public function layout() + { + if ($this->m_currentLayout == null) { + return 'right-sidebar'; + } + else { + return $this->m_currentLayout; + } + } + + public function setLayout($layout) + { + if (isset($this->m_layouts[$layout])) { + $this->m_currentLayout = $layout; + return true; + } + else { + return false; + } + } +} + + +/** + * End of File + */ diff --git a/classes/footer-nav-walker.php b/classes/footer-nav-walker.php new file mode 100644 index 0000000..80079e2 --- /dev/null +++ b/classes/footer-nav-walker.php @@ -0,0 +1,69 @@ +'; + + if ($item->url == '#' || $item->url == '') { + $output .= '

' . esc_attr( $item->title ) . '

'; + } + else { + $output .= '

' . esc_attr( $item->title ) . '

'; + } + } + else { + if ($item->url == '#' || $item->url == '') { + $output .= '' . esc_attr( $item->title ) . ''; + } + else { + $output .= '' . esc_attr( $item->title ) . ''; + } + } + } + + public function end_el( &$output, $item, $depth = 0, $args = array() ) + { + if ($depth == 0) { + $output .= ""; + } + //$output .= ""; + } + + public static function fallback( $args ) + { + if ( !current_user_can( 'manage_options' ) ) { + return; + } + + if ($depth == 0) { + echo ''; + } + } +} + + +/** + * End of File + */ diff --git a/classes/frontpage-splash.php b/classes/frontpage-splash.php new file mode 100644 index 0000000..8eb37a1 --- /dev/null +++ b/classes/frontpage-splash.php @@ -0,0 +1,181 @@ +add_section('ae_splash' , [ + 'title' => esc_html__( 'Æ Frontpage Splash', 'aether' ), + 'priority' => 90, + ]); + + + // Enable + $wp_customize->add_setting('ae_enable_splash', [ + 'default' => 1, + 'transport' => 'postMessage', + 'sanitize_callback' => 'Aether\\sanitizeCheckbox' + ]); + + $wp_customize->add_control('ae_enable_splash', [ + 'type' => 'checkbox', + 'label' => __('Enable homepage Splash', 'aether'), + 'description' => __('Display a prominent splash image on your homepage', 'aether'), + 'section' => 'ae_splash' + ]); + + + // Enable + $wp_customize->add_setting('ae_splash_title', [ + 'default' => '', + 'transport' => 'postMessage' + ]); + + $wp_customize->add_control('ae_splash_title', [ + 'type' => 'text', + 'label' => __('Title', 'aether'), + 'section' => 'ae_splash' + ]); + + + // Enable + $wp_customize->add_setting('ae_splash_subtitle', [ + 'default' => '', + 'transport' => 'postMessage' + ]); + + $wp_customize->add_control('ae_splash_subtitle', [ + 'type' => 'text', + 'label' => __('Subtitle', 'aether'), + 'section' => 'ae_splash' + ]); + + + // Foreground + $wp_customize->add_setting('ae_splash_foreground', [ + 'default' => '', + 'transport' => 'refresh', + //'sanitize_callback' => 'ae_sanitize_number' + ]); + + $wp_customize->add_control(new \WP_Customize_Media_Control($wp_customize, 'ae_splash_foreground', [ + 'label' => __('Foreground Image', 'aether'), + 'description' => __('Will be scaled down and centered to the middle of your splash area, with the maximum width being the content width.', 'aether'), + 'mime_type' => 'image', + 'section' => 'ae_splash' + ])); + + + // Layout + $wp_customize->add_setting('ae_splash_foreground_size', [ + 'default' => 'm', + 'transport' => 'refresh' + ]); + + $wp_customize->add_control('ae_splash_foreground_size', [ + 'type' => 'select', + 'label' => __('Foreground Image Size', 'aether'), + 'section' => 'ae_splash', + 'choices' => [ + 's' => __('Small / Icon size', 'aether' ), + 'm' => __('Medium', 'aether' ), + 'l' => __('Large', 'aether' ), + ] + ]); + + + // Layout + $wp_customize->add_setting('ae_splash_foreground_position', [ + 'default' => 'center', + 'transport' => 'refresh' + ]); + + $wp_customize->add_control('ae_splash_foreground_position', [ + 'type' => 'select', + 'label' => __('Foreground Image Position', 'aether'), + 'section' => 'ae_splash', + 'choices' => [ + 'top' => __('Top', 'aether' ), + 'center' => __('Middle', 'aether' ), + 'bottom' => __('Bottom', 'aether' ) + ] + ]); + + // Background + $wp_customize->add_setting('ae_splash_background', [ + 'default' => '', + 'transport' => 'refresh', + //'sanitize_callback' => 'ae_sanitize_number' + ]); + + $wp_customize->add_control(new \WP_Customize_Media_Control($wp_customize, 'ae_splash_background', [ + 'label' => __( 'Background Image', 'aether' ), + 'description' => __('Will be scaled and cropped to fill the background of your splash area.', 'aether'), + 'mime_type' => 'image', + 'section' => 'ae_splash' + ])); + + + // Background Color + $wp_customize->add_setting('ae_splash_background_color', [ + 'default' => '#343031', + 'transport' => 'refresh', + //'sanitize_callback' => 'ae_sanitize_number' + ]); + + $wp_customize->add_control(new \WP_Customize_Color_Control($wp_customize, 'ae_splash_background_color', [ + 'label' => __( 'Background Color', 'aether' ), + 'description' => __('','aether'), + 'section' => 'ae_splash' + ])); + + + // Font Color + $wp_customize->add_setting('ae_splash_text_color', [ + 'default' => '#f5f4f4', + 'transport' => 'refresh', + //'sanitize_callback' => 'ae_sanitize_number' + ]); + + $wp_customize->add_control(new \WP_Customize_Color_Control($wp_customize, 'ae_splash_text_color', [ + 'label' => __('Text Color', 'aether' ), + 'description' => __('','aether'), + 'section' => 'ae_splash' + ])); + + + // Shadow Color + $wp_customize->add_setting('ae_splash_shadow_color', [ + 'default' => '#000000', + 'transport' => 'refresh', + //'sanitize_callback' => 'ae_sanitize_number' + ]); + + $wp_customize->add_control(new \WP_Customize_Color_Control($wp_customize, 'ae_splash_shadow_color', [ + 'label' => __('Text Shadow Color', 'aether' ), + 'description' => __('','aether'), + 'section' => 'ae_splash' + ])); + } +} + +add_action('after_setup_theme', 'Aether\\FrontpageSplash::registerMediaSupport' ); +add_action('customize_register', 'Aether\\FrontpageSplash::registerCustomiser'); + +/** + * End of File + */ diff --git a/classes/kde-org-addons.php b/classes/kde-org-addons.php new file mode 100644 index 0000000..9a1925f --- /dev/null +++ b/classes/kde-org-addons.php @@ -0,0 +1,92 @@ +add_section('ae_kdeorg' , [ + 'title' => esc_html__( 'Æ KDE.org Branding', 'aether' ), + 'priority' => 90, + ]); + + + + $wp_customize->add_setting('ae_enable_kdeorg_logo', [ + 'default' => 1, + 'transport' => 'refresh', + 'sanitize_callback' => 'Aether\\sanitizeCheckbox' + ]); + + $wp_customize->add_control('ae_enable_kdeorg_logo', [ + 'type' => 'checkbox', + 'label' => __('Use the KDE Logo', 'aether'), + 'description' => __('Use the KDE logo in the header. If using a custom site icon, that icon will be used instead.', 'aether'), + 'section' => 'ae_kdeorg' + ]); + + + $wp_customize->add_setting('ae_enable_kdeorg_patrons', [ + 'default' => 0, + 'transport' => 'refresh', + 'sanitize_callback' => 'Aether\\sanitizeCheckbox' + ]); + + $wp_customize->add_control('ae_enable_kdeorg_patrons', [ + 'type' => 'checkbox', + 'label' => __('Show KDE Patrons', 'aether'), + 'description' => __('Will toggle the display of patrons, personal blogs should not show patrons.', 'aether'), + 'section' => 'ae_kdeorg' + ]); + + $wp_customize->add_setting('ae_enable_kdeorg_income', [ + 'default' => 1, + 'transport' => 'refresh', + 'sanitize_callback' => 'Aether\\sanitizeCheckbox' + ]); + + $wp_customize->add_control('ae_enable_kdeorg_income', [ + 'type' => 'checkbox', + 'label' => __('Show KDE donate and merch links', 'aether'), + 'description' => __('Will toggle the display of income sources.', 'aether'), + 'section' => 'ae_kdeorg' + ]); + + $wp_customize->add_setting('ae_enable_kdeorg_social', [ + 'default' => 1, + 'transport' => 'refresh', + 'sanitize_callback' => 'Aether\\sanitizeCheckbox' + ]); + + $wp_customize->add_control('ae_enable_kdeorg_social', [ + 'type' => 'checkbox', + 'label' => __('Show KDE Social Links', 'aether'), + 'description' => __('Will toggle the display of KDE social links.', 'aether'), + 'section' => 'ae_kdeorg' + ]); + + $wp_customize->add_setting('ae_enable_kdeorg_legal', [ + 'default' => 0, + 'transport' => 'refresh', + 'sanitize_callback' => 'Aether\\sanitizeCheckbox' + ]); + + $wp_customize->add_control('ae_enable_kdeorg_legal', [ + 'type' => 'checkbox', + 'label' => __('Show KDE legal notices in the footer', 'aether'), + 'description' => __('Includes copyrights and links.', 'aether'), + 'section' => 'ae_kdeorg' + ]); + } +} + +add_action('customize_register', 'Aether\\KdeOrgAddons::registerCustomiser'); + +/** + * End of File + */ diff --git a/classes/primary-header.php b/classes/primary-header.php new file mode 100644 index 0000000..a378af6 --- /dev/null +++ b/classes/primary-header.php @@ -0,0 +1,146 @@ +add_section('ae_section_header' , [ + 'title' => esc_html__( 'Æ Header & Search', 'aether' ), + 'priority' => 90, + ]); + + // logo + $wp_customize->add_setting('ae_header_logo', [ + 'default' => '', + 'transport' => 'refresh', + 'sanitize_callback' => 'ae_sanitize_number' + ]); + + $wp_customize->add_control(new \WP_Customize_Media_Control($wp_customize, 'ae_header_logo', [ + 'label' => __( 'Site Logo', 'aether' ), + 'mime_type' => 'image', + 'section' => 'ae_section_header', + 'priority' => 10, + ])); + + // Live Search + $wp_customize->add_setting('ae_option_livesearch', [ + 'default' => 1, + 'transport' => 'postMessage', + 'sanitize_callback' => 'Aether\\sanitizeCheckbox' + ]); + + $wp_customize->add_control('ae_option_livesearch', [ + 'type' => 'checkbox', + 'label' => __('Enable Live Search', 'aether'), + 'description' => __('Allow users to receive search results as they type. Enabled by default.', 'aether'), + 'section' => 'ae_section_header' + ]); + + // Local Caching + $wp_customize->add_setting('ae_option_localcaching', [ + 'default' => 1, + 'transport' => 'postMessage', + 'sanitize_callback' => 'Aether\\sanitizeCheckbox' + ]); + + $wp_customize->add_control('ae_option_localcaching', [ + 'type' => 'checkbox', + 'label' => __('Use local caching for search', 'aether'), + 'description' => __('Stores search results locally for 2 hours on a users machine. Requires Live Search. Enabled by default.', 'aether'), + 'section' => 'ae_section_header' + ]); + + // User Menu + $wp_customize->add_setting('ae_option_usermenu', [ + 'default' => 0, + 'transport' => 'postMessage', + 'sanitize_callback' => 'Aether\\sanitizeCheckbox' + ]); + + $wp_customize->add_control('ae_option_usermenu', [ + 'type' => 'checkbox', + 'label' => __('Show user menu', 'aether'), + 'description' => __('Ideal for official KDE websites using LDAP, pointless on small or personal blogs with few users. Disabled by default.', 'aether'), + 'section' => 'ae_section_header' + ]); + } + + + /** + * Performing a search without admin rights requires the livesearch option to + * be enabled. Calls into the standard live search if enabled. + */ + public static function ajaxUserSearch () + { + if (\get_theme_mod('ae_option_livesearch', '1') != '1') { + \wp_send_json([ + 'message' => __('Live Search Disabled', 'aether'), + 'cache' => false + ]); + } + else { + self::ajaxPrivSearch(); + } + } + + + /** + * Performs a live search, as provided by the header. This is the same search + * provided to users, so no 'admin' results should appear. + */ + public static function ajaxPrivSearch () + { + global $wpdb; + global $post; + + $params = struct($_GET, [ + 's' => '', + 'page' => 1 + ]); + + $results = []; + + $query = new \WP_Query([ + 's' => $params->s, + 'posts_per_page' => 10, + 'orderby' => [ + 'relevance' => 'DESC', + 'post_modified' => 'DESC', + 'post_title' => 'ASC', + ], + ]); + + while ($query->have_posts()) { + $query->the_post(); + + $results[] = [ + 'title' => get_the_title(), + 'author' => get_the_author(), + 'excerpt' => get_the_excerpt(), + 'url' => get_permalink() + ]; + } + + \wp_send_json([ + 'message' => count($results) == 0 ? __('No results found.', 'aether') : '', + 'totalResults' => count($results), + 'results' => $results, + 'cache' => true + ]); + } +} + +add_action('customize_register', 'Aether\\PrimaryHeader::registerCustomiser'); +add_action('wp_ajax_nopriv_search', 'Aether\\PrimaryHeader::ajaxUserSearch'); +add_action('wp_ajax_search', 'Aether\\PrimaryHeader::ajaxPrivSearch'); + +/** + * End of File + */ diff --git a/classes/primary-nav-walker.php b/classes/primary-nav-walker.php new file mode 100644 index 0000000..fb4573e --- /dev/null +++ b/classes/primary-nav-walker.php @@ -0,0 +1,275 @@ +m_menuSlug = $slug; + $this->m_menuData = $this->preprocessStructure(getMenuStructure($slug)); + } + + private function preprocessStructure($data) + { + $output = []; + + foreach ($data as $m) { + if ($m->menu_item_parent == 0) { + $output[$m->ID] = $this->generateRecurse($m, $data); + $output[$m->ID]['thumbnail'] = get_the_post_thumbnail_url($m->object_id, 'aether-primary-menu'); + } + } + + return $output; + } + + private function generateRecurse($menuObject, $data) { + + $output = [ + 'title' => $menuObject->title, + 'url' => $menuObject->url, + 'type' => $menuObject->type, + 'type_label' => $menuObject->type_label, + 'thumbnail' => null, + 'post_status' => $menuObject->post_status, + 'children' => [] + ]; + + foreach ($data as $m) { + if ($m->menu_item_parent != $menuObject->ID) { + continue; + } + + //echo $m->menu_item_parent .' -> '. $menuObject->ID . "\n"; + + $output['children'][$m->ID] = $this->generateRecurse($m, $data); + $output[$m->ID] = $output['children'][$m->ID]; + } + + $output['totalChildren'] = count($output['children']); + $output['childDepth'] = count($output['children']) ? 1 : 0; + + foreach ($output['children'] as $child) { + $output['totalChildren'] += $child['totalChildren']; + $output['childDepth'] += $child['childDepth']; + } + + return $output; + } + + private function feature_item (&$output) + { + $output .= + ''; + } + + private function start_complex_el (&$output, $item, $depth = 0, $args = array(), $id = 0) + { + $classes = empty($item->classes) ? [] : (array)$item->classes; + $classes = apply_filters( 'nav_menu_css_class', $classes, $item, $args ); + + //$classes[] = 'menu-item-' . $item->ID; + $classes[] = 'menu-item-depth-'.$depth; + $classes[] = $args->has_children ? 'dropdown' : null; + $classes[] = isExternalLink($item->url) ? 'external' : null; + $classes[] = in_array('current-menu-item', $classes) ? 'active' : null; + + $output .= + '
  • apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args ), + 'class' => implode(' ', array_filter($classes)), + ]).'>'; + + $attributes = [ + 'title' => empty($item->title) ? null : $item->title, + 'target' => empty($item->target) ? null : $item->target, + 'rel' => empty($item->xfn) ? null : $item->xfn + ]; + + $linkClasses = []; + + $external = isExternalLink($item->url); + $linkClasses[] = $external ? 'external' : null; + $attributes = array_merge($attributes, [ + 'href' => empty( $item->url ) ? null : $item->url, + 'target' => $external ? '_blank' : null + ]); + + + // If item has_children make it a dropdown + if ( $args->has_children && $depth < 2) { + $linkClasses[] = 'dropdown-toggle'; + $attributes = array_merge($attributes, [ + //'href' => '#', + 'data-toggle' => 'dropdown', + ]); + } + + + $attributes['class'] = implode(' ', $linkClasses); + + $attributes = apply_filters( 'nav_menu_link_attributes', $attributes, $item, $args ); + + $item_output = + $args->before. + ''. + //(empty( $item->attr_title ) ? '' : ''). + $args->link_before. + apply_filters( 'the_title', $item->title, $item->ID ). + $args->link_after. + ''. + $args->after; + + $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args ); + } + + public function start_lvl( &$output, $depth = 0, $args = array() ) + { + if ($depth == 0) { + $menuData = $this->m_menuData[$this->m_topLevelItem->ID]; + //$thumbnail = get_the_post_thumbnail_url($this->m_topLevelItem->object_id, 'aether-primary-menu'); + + if ($menuData['childDepth'] > 1 || $menuData['thumbnail'] !== false) { + $output .= ' + + - - -
    - -
    - - ID, 'site_layout', true) ){ - $layout_class = get_post_meta($post->ID, 'site_layout', true); - } - else{ - $layout_class = get_theme_mod( 'aether_sidebar_position' ); - }?> + function printForegroundImage ($pos) { + if ($pos == \get_theme_mod('ae_splash_foreground_position', 'center')) { + $url = \wp_get_attachment_image_url(\get_theme_mod('ae_splash_foreground'), 'aether-splash-sd'); + $class = 'splash-fg-'.\get_theme_mod('ae_splash_foreground_size', 'm'); + + echo ''; + } + } -
    -
    + if (is_front_page() && (\get_theme_mod('ae_enable_splash', '1') == '1' || is_customize_preview())) : + + + $shadow = \get_theme_mod('ae_splash_shadow_color', '#000000'); + list($r, $g, $b) = sscanf($shadow, "#%02x%02x%02x"); + +?> + +'; + + printForegroundImage('top'); + + if (get_theme_mod('ae_splash_title', '') != '') { + echo '

    '.htmlspecialchars(\get_theme_mod('ae_splash_title', '')).'

    '; + } + + printForegroundImage('center'); + + if (get_theme_mod('ae_splash_subtitle', '') != '') { + echo '

    '.htmlspecialchars(\get_theme_mod('ae_splash_subtitle', '')).'

    '; + } + + printForegroundImage('bottom'); + + /*echo '
    '; + */ + + echo '
    '; + echo ''; + + endif; + + if (!defined('AE_USE_CUSTOM_BOOKENDS')) { + get_template_part( 'parts/content-start' ); + echo '
    '; + } diff --git a/image.php b/image.php index f27c184..539a92e 100644 --- a/image.php +++ b/image.php @@ -1,102 +1,108 @@ +
    +
    >

    -
    $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); foreach ( $attachments as $k => $attachment ) { if ( $attachment->ID == $post->ID ) break; } $k++; // If there is more than 1 attachment in a gallery if ( count( $attachments ) > 1 ) { if ( isset( $attachments[ $k ] ) ) // get the URL of the next image attachment $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); else // or get the URL of the first image attachment $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); } else { // or, if there's only 1 image, get the URL of the image $next_attachment_url = wp_get_attachment_url(); } ?> ID, $attachment_size ); ?>
    post_excerpt ) ) : ?>
    '
    - - +
    +
    + + .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; - } - .label { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -@font-face { - font-family: 'Glyphicons Halflings'; - - src: url('../fonts/glyphicons-halflings-regular.eot'); - src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: normal; - line-height: 1; - - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.glyphicon-asterisk:before { - content: "\002a"; -} -.glyphicon-plus:before { - content: "\002b"; -} -.glyphicon-euro:before, -.glyphicon-eur:before { - content: "\20ac"; -} -.glyphicon-minus:before { - content: "\2212"; -} -.glyphicon-cloud:before { - content: "\2601"; -} -.glyphicon-envelope:before { - content: "\2709"; -} -.glyphicon-pencil:before { - content: "\270f"; -} -.glyphicon-glass:before { - content: "\e001"; -} -.glyphicon-music:before { - content: "\e002"; -} -.glyphicon-search:before { - content: "\e003"; -} -.glyphicon-heart:before { - content: "\e005"; -} -.glyphicon-star:before { - content: "\e006"; -} -.glyphicon-star-empty:before { - content: "\e007"; -} -.glyphicon-user:before { - content: "\e008"; -} -.glyphicon-film:before { - content: "\e009"; -} -.glyphicon-th-large:before { - content: "\e010"; -} -.glyphicon-th:before { - content: "\e011"; -} -.glyphicon-th-list:before { - content: "\e012"; -} -.glyphicon-ok:before { - content: "\e013"; -} -.glyphicon-remove:before { - content: "\e014"; -} -.glyphicon-zoom-in:before { - content: "\e015"; -} -.glyphicon-zoom-out:before { - content: "\e016"; -} -.glyphicon-off:before { - content: "\e017"; -} -.glyphicon-signal:before { - content: "\e018"; -} -.glyphicon-cog:before { - content: "\e019"; -} -.glyphicon-trash:before { - content: "\e020"; -} -.glyphicon-home:before { - content: "\e021"; -} -.glyphicon-file:before { - content: "\e022"; -} -.glyphicon-time:before { - content: "\e023"; -} -.glyphicon-road:before { - content: "\e024"; -} -.glyphicon-download-alt:before { - content: "\e025"; -} -.glyphicon-download:before { - content: "\e026"; -} -.glyphicon-upload:before { - content: "\e027"; -} -.glyphicon-inbox:before { - content: "\e028"; -} -.glyphicon-play-circle:before { - content: "\e029"; -} -.glyphicon-repeat:before { - content: "\e030"; -} -.glyphicon-refresh:before { - content: "\e031"; -} -.glyphicon-list-alt:before { - content: "\e032"; -} -.glyphicon-lock:before { - content: "\e033"; -} -.glyphicon-flag:before { - content: "\e034"; -} -.glyphicon-headphones:before { - content: "\e035"; -} -.glyphicon-volume-off:before { - content: "\e036"; -} -.glyphicon-volume-down:before { - content: "\e037"; -} -.glyphicon-volume-up:before { - content: "\e038"; -} -.glyphicon-qrcode:before { - content: "\e039"; -} -.glyphicon-barcode:before { - content: "\e040"; -} -.glyphicon-tag:before { - content: "\e041"; -} -.glyphicon-tags:before { - content: "\e042"; -} -.glyphicon-book:before { - content: "\e043"; -} -.glyphicon-bookmark:before { - content: "\e044"; -} -.glyphicon-print:before { - content: "\e045"; -} -.glyphicon-camera:before { - content: "\e046"; -} -.glyphicon-font:before { - content: "\e047"; -} -.glyphicon-bold:before { - content: "\e048"; -} -.glyphicon-italic:before { - content: "\e049"; -} -.glyphicon-text-height:before { - content: "\e050"; -} -.glyphicon-text-width:before { - content: "\e051"; -} -.glyphicon-align-left:before { - content: "\e052"; -} -.glyphicon-align-center:before { - content: "\e053"; -} -.glyphicon-align-right:before { - content: "\e054"; -} -.glyphicon-align-justify:before { - content: "\e055"; -} -.glyphicon-list:before { - content: "\e056"; -} -.glyphicon-indent-left:before { - content: "\e057"; -} -.glyphicon-indent-right:before { - content: "\e058"; -} -.glyphicon-facetime-video:before { - content: "\e059"; -} -.glyphicon-picture:before { - content: "\e060"; -} -.glyphicon-map-marker:before { - content: "\e062"; -} -.glyphicon-adjust:before { - content: "\e063"; -} -.glyphicon-tint:before { - content: "\e064"; -} -.glyphicon-edit:before { - content: "\e065"; -} -.glyphicon-share:before { - content: "\e066"; -} -.glyphicon-check:before { - content: "\e067"; -} -.glyphicon-move:before { - content: "\e068"; -} -.glyphicon-step-backward:before { - content: "\e069"; -} -.glyphicon-fast-backward:before { - content: "\e070"; -} -.glyphicon-backward:before { - content: "\e071"; -} -.glyphicon-play:before { - content: "\e072"; -} -.glyphicon-pause:before { - content: "\e073"; -} -.glyphicon-stop:before { - content: "\e074"; -} -.glyphicon-forward:before { - content: "\e075"; -} -.glyphicon-fast-forward:before { - content: "\e076"; -} -.glyphicon-step-forward:before { - content: "\e077"; -} -.glyphicon-eject:before { - content: "\e078"; -} -.glyphicon-chevron-left:before { - content: "\e079"; -} -.glyphicon-chevron-right:before { - content: "\e080"; -} -.glyphicon-plus-sign:before { - content: "\e081"; -} -.glyphicon-minus-sign:before { - content: "\e082"; -} -.glyphicon-remove-sign:before { - content: "\e083"; -} -.glyphicon-ok-sign:before { - content: "\e084"; -} -.glyphicon-question-sign:before { - content: "\e085"; -} -.glyphicon-info-sign:before { - content: "\e086"; -} -.glyphicon-screenshot:before { - content: "\e087"; -} -.glyphicon-remove-circle:before { - content: "\e088"; -} -.glyphicon-ok-circle:before { - content: "\e089"; -} -.glyphicon-ban-circle:before { - content: "\e090"; -} -.glyphicon-arrow-left:before { - content: "\e091"; -} -.glyphicon-arrow-right:before { - content: "\e092"; -} -.glyphicon-arrow-up:before { - content: "\e093"; -} -.glyphicon-arrow-down:before { - content: "\e094"; -} -.glyphicon-share-alt:before { - content: "\e095"; -} -.glyphicon-resize-full:before { - content: "\e096"; -} -.glyphicon-resize-small:before { - content: "\e097"; -} -.glyphicon-exclamation-sign:before { - content: "\e101"; -} -.glyphicon-gift:before { - content: "\e102"; -} -.glyphicon-leaf:before { - content: "\e103"; -} -.glyphicon-fire:before { - content: "\e104"; -} -.glyphicon-eye-open:before { - content: "\e105"; -} -.glyphicon-eye-close:before { - content: "\e106"; -} -.glyphicon-warning-sign:before { - content: "\e107"; -} -.glyphicon-plane:before { - content: "\e108"; -} -.glyphicon-calendar:before { - content: "\e109"; -} -.glyphicon-random:before { - content: "\e110"; -} -.glyphicon-comment:before { - content: "\e111"; -} -.glyphicon-magnet:before { - content: "\e112"; -} -.glyphicon-chevron-up:before { - content: "\e113"; -} -.glyphicon-chevron-down:before { - content: "\e114"; -} -.glyphicon-retweet:before { - content: "\e115"; -} -.glyphicon-shopping-cart:before { - content: "\e116"; -} -.glyphicon-folder-close:before { - content: "\e117"; -} -.glyphicon-folder-open:before { - content: "\e118"; -} -.glyphicon-resize-vertical:before { - content: "\e119"; -} -.glyphicon-resize-horizontal:before { - content: "\e120"; -} -.glyphicon-hdd:before { - content: "\e121"; -} -.glyphicon-bullhorn:before { - content: "\e122"; -} -.glyphicon-bell:before { - content: "\e123"; -} -.glyphicon-certificate:before { - content: "\e124"; -} -.glyphicon-thumbs-up:before { - content: "\e125"; -} -.glyphicon-thumbs-down:before { - content: "\e126"; -} -.glyphicon-hand-right:before { - content: "\e127"; -} -.glyphicon-hand-left:before { - content: "\e128"; -} -.glyphicon-hand-up:before { - content: "\e129"; -} -.glyphicon-hand-down:before { - content: "\e130"; -} -.glyphicon-circle-arrow-right:before { - content: "\e131"; -} -.glyphicon-circle-arrow-left:before { - content: "\e132"; -} -.glyphicon-circle-arrow-up:before { - content: "\e133"; -} -.glyphicon-circle-arrow-down:before { - content: "\e134"; -} -.glyphicon-globe:before { - content: "\e135"; -} -.glyphicon-wrench:before { - content: "\e136"; -} -.glyphicon-tasks:before { - content: "\e137"; -} -.glyphicon-filter:before { - content: "\e138"; -} -.glyphicon-briefcase:before { - content: "\e139"; -} -.glyphicon-fullscreen:before { - content: "\e140"; -} -.glyphicon-dashboard:before { - content: "\e141"; -} -.glyphicon-paperclip:before { - content: "\e142"; -} -.glyphicon-heart-empty:before { - content: "\e143"; -} -.glyphicon-link:before { - content: "\e144"; -} -.glyphicon-phone:before { - content: "\e145"; -} -.glyphicon-pushpin:before { - content: "\e146"; -} -.glyphicon-usd:before { - content: "\e148"; -} -.glyphicon-gbp:before { - content: "\e149"; -} -.glyphicon-sort:before { - content: "\e150"; -} -.glyphicon-sort-by-alphabet:before { - content: "\e151"; -} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"; -} -.glyphicon-sort-by-order:before { - content: "\e153"; -} -.glyphicon-sort-by-order-alt:before { - content: "\e154"; -} -.glyphicon-sort-by-attributes:before { - content: "\e155"; -} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"; -} -.glyphicon-unchecked:before { - content: "\e157"; -} -.glyphicon-expand:before { - content: "\e158"; -} -.glyphicon-collapse-down:before { - content: "\e159"; -} -.glyphicon-collapse-up:before { - content: "\e160"; -} -.glyphicon-log-in:before { - content: "\e161"; -} -.glyphicon-flash:before { - content: "\e162"; -} -.glyphicon-log-out:before { - content: "\e163"; -} -.glyphicon-new-window:before { - content: "\e164"; -} -.glyphicon-record:before { - content: "\e165"; -} -.glyphicon-save:before { - content: "\e166"; -} -.glyphicon-open:before { - content: "\e167"; -} -.glyphicon-saved:before { - content: "\e168"; -} -.glyphicon-import:before { - content: "\e169"; -} -.glyphicon-export:before { - content: "\e170"; -} -.glyphicon-send:before { - content: "\e171"; -} -.glyphicon-floppy-disk:before { - content: "\e172"; -} -.glyphicon-floppy-saved:before { - content: "\e173"; -} -.glyphicon-floppy-remove:before { - content: "\e174"; -} -.glyphicon-floppy-save:before { - content: "\e175"; -} -.glyphicon-floppy-open:before { - content: "\e176"; -} -.glyphicon-credit-card:before { - content: "\e177"; -} -.glyphicon-transfer:before { - content: "\e178"; -} -.glyphicon-cutlery:before { - content: "\e179"; -} -.glyphicon-header:before { - content: "\e180"; -} -.glyphicon-compressed:before { - content: "\e181"; -} -.glyphicon-earphone:before { - content: "\e182"; -} -.glyphicon-phone-alt:before { - content: "\e183"; -} -.glyphicon-tower:before { - content: "\e184"; -} -.glyphicon-stats:before { - content: "\e185"; -} -.glyphicon-sd-video:before { - content: "\e186"; -} -.glyphicon-hd-video:before { - content: "\e187"; -} -.glyphicon-subtitles:before { - content: "\e188"; -} -.glyphicon-sound-stereo:before { - content: "\e189"; -} -.glyphicon-sound-dolby:before { - content: "\e190"; -} -.glyphicon-sound-5-1:before { - content: "\e191"; -} -.glyphicon-sound-6-1:before { - content: "\e192"; -} -.glyphicon-sound-7-1:before { - content: "\e193"; -} -.glyphicon-copyright-mark:before { - content: "\e194"; -} -.glyphicon-registration-mark:before { - content: "\e195"; -} -.glyphicon-cloud-download:before { - content: "\e197"; -} -.glyphicon-cloud-upload:before { - content: "\e198"; -} -.glyphicon-tree-conifer:before { - content: "\e199"; -} -.glyphicon-tree-deciduous:before { - content: "\e200"; -} -.glyphicon-cd:before { - content: "\e201"; -} -.glyphicon-save-file:before { - content: "\e202"; -} -.glyphicon-open-file:before { - content: "\e203"; -} -.glyphicon-level-up:before { - content: "\e204"; -} -.glyphicon-copy:before { - content: "\e205"; -} -.glyphicon-paste:before { - content: "\e206"; -} -.glyphicon-alert:before { - content: "\e209"; -} -.glyphicon-equalizer:before { - content: "\e210"; -} -.glyphicon-king:before { - content: "\e211"; -} -.glyphicon-queen:before { - content: "\e212"; -} -.glyphicon-pawn:before { - content: "\e213"; -} -.glyphicon-bishop:before { - content: "\e214"; -} -.glyphicon-knight:before { - content: "\e215"; -} -.glyphicon-baby-formula:before { - content: "\e216"; -} -.glyphicon-tent:before { - content: "\26fa"; -} -.glyphicon-blackboard:before { - content: "\e218"; -} -.glyphicon-bed:before { - content: "\e219"; -} -.glyphicon-apple:before { - content: "\f8ff"; -} -.glyphicon-erase:before { - content: "\e221"; -} -.glyphicon-hourglass:before { - content: "\231b"; -} -.glyphicon-lamp:before { - content: "\e223"; -} -.glyphicon-duplicate:before { - content: "\e224"; -} -.glyphicon-piggy-bank:before { - content: "\e225"; -} -.glyphicon-scissors:before { - content: "\e226"; -} -.glyphicon-bitcoin:before { - content: "\e227"; -} -.glyphicon-btc:before { - content: "\e227"; -} -.glyphicon-xbt:before { - content: "\e227"; -} -.glyphicon-yen:before { - content: "\00a5"; -} -.glyphicon-jpy:before { - content: "\00a5"; -} -.glyphicon-ruble:before { - content: "\20bd"; -} -.glyphicon-rub:before { - content: "\20bd"; -} -.glyphicon-scale:before { - content: "\e230"; -} -.glyphicon-ice-lolly:before { - content: "\e231"; -} -.glyphicon-ice-lolly-tasted:before { - content: "\e232"; -} -.glyphicon-education:before { - content: "\e233"; -} -.glyphicon-option-horizontal:before { - content: "\e234"; -} -.glyphicon-option-vertical:before { - content: "\e235"; -} -.glyphicon-menu-hamburger:before { - content: "\e236"; -} -.glyphicon-modal-window:before { - content: "\e237"; -} -.glyphicon-oil:before { - content: "\e238"; -} -.glyphicon-grain:before { - content: "\e239"; -} -.glyphicon-sunglasses:before { - content: "\e240"; -} -.glyphicon-text-size:before { - content: "\e241"; -} -.glyphicon-text-color:before { - content: "\e242"; -} -.glyphicon-text-background:before { - content: "\e243"; -} -.glyphicon-object-align-top:before { - content: "\e244"; -} -.glyphicon-object-align-bottom:before { - content: "\e245"; -} -.glyphicon-object-align-horizontal:before { - content: "\e246"; -} -.glyphicon-object-align-left:before { - content: "\e247"; -} -.glyphicon-object-align-vertical:before { - content: "\e248"; -} -.glyphicon-object-align-right:before { - content: "\e249"; -} -.glyphicon-triangle-right:before { - content: "\e250"; -} -.glyphicon-triangle-left:before { - content: "\e251"; -} -.glyphicon-triangle-bottom:before { - content: "\e252"; -} -.glyphicon-triangle-top:before { - content: "\e253"; -} -.glyphicon-console:before { - content: "\e254"; -} -.glyphicon-superscript:before { - content: "\e255"; -} -.glyphicon-subscript:before { - content: "\e256"; -} -.glyphicon-menu-left:before { - content: "\e257"; -} -.glyphicon-menu-right:before { - content: "\e258"; -} -.glyphicon-menu-down:before { - content: "\e259"; -} -.glyphicon-menu-up:before { - content: "\e260"; -} -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -html { - font-size: 10px; - - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -body { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.42857143; - color: #333; - background-color: #fff; -} -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -a { - color: #337ab7; - text-decoration: none; -} -a:hover, -a:focus { - color: #23527c; - text-decoration: underline; -} -a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -figure { - margin: 0; -} -img { - vertical-align: middle; -} -.img-responsive, -.thumbnail > img, -.thumbnail a > img, -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; -} -.img-rounded { - border-radius: 6px; -} -.img-thumbnail { - display: inline-block; - max-width: 100%; - height: auto; - padding: 4px; - line-height: 1.42857143; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} -.img-circle { - border-radius: 50%; -} -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eee; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} -[role="button"] { - cursor: pointer; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small, -.h1 small, -.h2 small, -.h3 small, -.h4 small, -.h5 small, -.h6 small, -h1 .small, -h2 .small, -h3 .small, -h4 .small, -h5 .small, -h6 .small, -.h1 .small, -.h2 .small, -.h3 .small, -.h4 .small, -.h5 .small, -.h6 .small { - font-weight: normal; - line-height: 1; - color: #777; -} -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, -.h1 small, -h2 small, -.h2 small, -h3 small, -.h3 small, -h1 .small, -.h1 .small, -h2 .small, -.h2 .small, -h3 .small, -.h3 .small { - font-size: 65%; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, -.h4 small, -h5 small, -.h5 small, -h6 small, -.h6 small, -h4 .small, -.h4 .small, -h5 .small, -.h5 .small, -h6 .small, -.h6 .small { - font-size: 75%; -} -h1, -.h1 { - font-size: 36px; -} -h2, -.h2 { - font-size: 30px; -} -h3, -.h3 { - font-size: 24px; -} -h4, -.h4 { - font-size: 18px; -} -h5, -.h5 { - font-size: 14px; -} -h6, -.h6 { - font-size: 12px; -} -p { - margin: 0 0 10px; -} -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 21px; - } -} -small, -.small { - font-size: 85%; -} -mark, -.mark { - padding: .2em; - background-color: #fcf8e3; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.text-justify { - text-align: justify; -} -.text-nowrap { - white-space: nowrap; -} -.text-lowercase { - text-transform: lowercase; -} -.text-uppercase { - text-transform: uppercase; -} -.text-capitalize { - text-transform: capitalize; -} -.text-muted { - color: #777; -} -.text-primary { - color: #337ab7; -} -a.text-primary:hover, -a.text-primary:focus { - color: #286090; -} -.text-success { - color: #3c763d; -} -a.text-success:hover, -a.text-success:focus { - color: #2b542c; -} -.text-info { - color: #31708f; -} -a.text-info:hover, -a.text-info:focus { - color: #245269; -} -.text-warning { - color: #8a6d3b; -} -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; -} -.text-danger { - color: #a94442; -} -a.text-danger:hover, -a.text-danger:focus { - color: #843534; -} -.bg-primary { - color: #fff; - background-color: #337ab7; -} -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #286090; -} -.bg-success { - background-color: #dff0d8; -} -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; -} -.bg-info { - background-color: #d9edf7; -} -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; -} -.bg-warning { - background-color: #fcf8e3; -} -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; -} -.bg-danger { - background-color: #f2dede; -} -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; -} -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eee; -} -ul, -ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, -ol ul, -ul ol, -ol ol { - margin-bottom: 0; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline { - padding-left: 0; - margin-left: -5px; - list-style: none; -} -.list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; -} -dl { - margin-top: 0; - margin-bottom: 20px; -} -dt, -dd { - line-height: 1.42857143; -} -dt { - font-weight: bold; -} -dd { - margin-left: 0; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - overflow: hidden; - clear: left; - text-align: right; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} -abbr[title], -abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #777; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eee; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857143; - color: #777; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: '\2014 \00A0'; -} -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - text-align: right; - border-right: 5px solid #eee; - border-left: 0; -} -.blockquote-reverse footer:before, -blockquote.pull-right footer:before, -.blockquote-reverse small:before, -blockquote.pull-right small:before, -.blockquote-reverse .small:before, -blockquote.pull-right .small:before { - content: ''; -} -.blockquote-reverse footer:after, -blockquote.pull-right footer:after, -.blockquote-reverse small:after, -blockquote.pull-right small:after, -.blockquote-reverse .small:after, -blockquote.pull-right .small:after { - content: '\00A0 \2014'; -} -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857143; -} -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; -} -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; -} -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - -webkit-box-shadow: none; - box-shadow: none; -} -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857143; - color: #333; - word-break: break-all; - word-wrap: break-word; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -.container { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 768px) { - .container { - width: 750px; - } -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1170px; - } -} -.container-fluid { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.row { - margin-right: -15px; - margin-left: -15px; -} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} -.col-xs-12 { - width: 100%; -} -.col-xs-11 { - width: 91.66666667%; -} -.col-xs-10 { - width: 83.33333333%; -} -.col-xs-9 { - width: 75%; -} -.col-xs-8 { - width: 66.66666667%; -} -.col-xs-7 { - width: 58.33333333%; -} -.col-xs-6 { - width: 50%; -} -.col-xs-5 { - width: 41.66666667%; -} -.col-xs-4 { - width: 33.33333333%; -} -.col-xs-3 { - width: 25%; -} -.col-xs-2 { - width: 16.66666667%; -} -.col-xs-1 { - width: 8.33333333%; -} -.col-xs-pull-12 { - right: 100%; -} -.col-xs-pull-11 { - right: 91.66666667%; -} -.col-xs-pull-10 { - right: 83.33333333%; -} -.col-xs-pull-9 { - right: 75%; -} -.col-xs-pull-8 { - right: 66.66666667%; -} -.col-xs-pull-7 { - right: 58.33333333%; -} -.col-xs-pull-6 { - right: 50%; -} -.col-xs-pull-5 { - right: 41.66666667%; -} -.col-xs-pull-4 { - right: 33.33333333%; -} -.col-xs-pull-3 { - right: 25%; -} -.col-xs-pull-2 { - right: 16.66666667%; -} -.col-xs-pull-1 { - right: 8.33333333%; -} -.col-xs-pull-0 { - right: auto; -} -.col-xs-push-12 { - left: 100%; -} -.col-xs-push-11 { - left: 91.66666667%; -} -.col-xs-push-10 { - left: 83.33333333%; -} -.col-xs-push-9 { - left: 75%; -} -.col-xs-push-8 { - left: 66.66666667%; -} -.col-xs-push-7 { - left: 58.33333333%; -} -.col-xs-push-6 { - left: 50%; -} -.col-xs-push-5 { - left: 41.66666667%; -} -.col-xs-push-4 { - left: 33.33333333%; -} -.col-xs-push-3 { - left: 25%; -} -.col-xs-push-2 { - left: 16.66666667%; -} -.col-xs-push-1 { - left: 8.33333333%; -} -.col-xs-push-0 { - left: auto; -} -.col-xs-offset-12 { - margin-left: 100%; -} -.col-xs-offset-11 { - margin-left: 91.66666667%; -} -.col-xs-offset-10 { - margin-left: 83.33333333%; -} -.col-xs-offset-9 { - margin-left: 75%; -} -.col-xs-offset-8 { - margin-left: 66.66666667%; -} -.col-xs-offset-7 { - margin-left: 58.33333333%; -} -.col-xs-offset-6 { - margin-left: 50%; -} -.col-xs-offset-5 { - margin-left: 41.66666667%; -} -.col-xs-offset-4 { - margin-left: 33.33333333%; -} -.col-xs-offset-3 { - margin-left: 25%; -} -.col-xs-offset-2 { - margin-left: 16.66666667%; -} -.col-xs-offset-1 { - margin-left: 8.33333333%; -} -.col-xs-offset-0 { - margin-left: 0; -} -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - .col-sm-12 { - width: 100%; - } - .col-sm-11 { - width: 91.66666667%; - } - .col-sm-10 { - width: 83.33333333%; - } - .col-sm-9 { - width: 75%; - } - .col-sm-8 { - width: 66.66666667%; - } - .col-sm-7 { - width: 58.33333333%; - } - .col-sm-6 { - width: 50%; - } - .col-sm-5 { - width: 41.66666667%; - } - .col-sm-4 { - width: 33.33333333%; - } - .col-sm-3 { - width: 25%; - } - .col-sm-2 { - width: 16.66666667%; - } - .col-sm-1 { - width: 8.33333333%; - } - .col-sm-pull-12 { - right: 100%; - } - .col-sm-pull-11 { - right: 91.66666667%; - } - .col-sm-pull-10 { - right: 83.33333333%; - } - .col-sm-pull-9 { - right: 75%; - } - .col-sm-pull-8 { - right: 66.66666667%; - } - .col-sm-pull-7 { - right: 58.33333333%; - } - .col-sm-pull-6 { - right: 50%; - } - .col-sm-pull-5 { - right: 41.66666667%; - } - .col-sm-pull-4 { - right: 33.33333333%; - } - .col-sm-pull-3 { - right: 25%; - } - .col-sm-pull-2 { - right: 16.66666667%; - } - .col-sm-pull-1 { - right: 8.33333333%; - } - .col-sm-pull-0 { - right: auto; - } - .col-sm-push-12 { - left: 100%; - } - .col-sm-push-11 { - left: 91.66666667%; - } - .col-sm-push-10 { - left: 83.33333333%; - } - .col-sm-push-9 { - left: 75%; - } - .col-sm-push-8 { - left: 66.66666667%; - } - .col-sm-push-7 { - left: 58.33333333%; - } - .col-sm-push-6 { - left: 50%; - } - .col-sm-push-5 { - left: 41.66666667%; - } - .col-sm-push-4 { - left: 33.33333333%; - } - .col-sm-push-3 { - left: 25%; - } - .col-sm-push-2 { - left: 16.66666667%; - } - .col-sm-push-1 { - left: 8.33333333%; - } - .col-sm-push-0 { - left: auto; - } - .col-sm-offset-12 { - margin-left: 100%; - } - .col-sm-offset-11 { - margin-left: 91.66666667%; - } - .col-sm-offset-10 { - margin-left: 83.33333333%; - } - .col-sm-offset-9 { - margin-left: 75%; - } - .col-sm-offset-8 { - margin-left: 66.66666667%; - } - .col-sm-offset-7 { - margin-left: 58.33333333%; - } - .col-sm-offset-6 { - margin-left: 50%; - } - .col-sm-offset-5 { - margin-left: 41.66666667%; - } - .col-sm-offset-4 { - margin-left: 33.33333333%; - } - .col-sm-offset-3 { - margin-left: 25%; - } - .col-sm-offset-2 { - margin-left: 16.66666667%; - } - .col-sm-offset-1 { - margin-left: 8.33333333%; - } - .col-sm-offset-0 { - margin-left: 0; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - .col-md-12 { - width: 100%; - } - .col-md-11 { - width: 91.66666667%; - } - .col-md-10 { - width: 83.33333333%; - } - .col-md-9 { - width: 75%; - } - .col-md-8 { - width: 66.66666667%; - } - .col-md-7 { - width: 58.33333333%; - } - .col-md-6 { - width: 50%; - } - .col-md-5 { - width: 41.66666667%; - } - .col-md-4 { - width: 33.33333333%; - } - .col-md-3 { - width: 25%; - } - .col-md-2 { - width: 16.66666667%; - } - .col-md-1 { - width: 8.33333333%; - } - .col-md-pull-12 { - right: 100%; - } - .col-md-pull-11 { - right: 91.66666667%; - } - .col-md-pull-10 { - right: 83.33333333%; - } - .col-md-pull-9 { - right: 75%; - } - .col-md-pull-8 { - right: 66.66666667%; - } - .col-md-pull-7 { - right: 58.33333333%; - } - .col-md-pull-6 { - right: 50%; - } - .col-md-pull-5 { - right: 41.66666667%; - } - .col-md-pull-4 { - right: 33.33333333%; - } - .col-md-pull-3 { - right: 25%; - } - .col-md-pull-2 { - right: 16.66666667%; - } - .col-md-pull-1 { - right: 8.33333333%; - } - .col-md-pull-0 { - right: auto; - } - .col-md-push-12 { - left: 100%; - } - .col-md-push-11 { - left: 91.66666667%; - } - .col-md-push-10 { - left: 83.33333333%; - } - .col-md-push-9 { - left: 75%; - } - .col-md-push-8 { - left: 66.66666667%; - } - .col-md-push-7 { - left: 58.33333333%; - } - .col-md-push-6 { - left: 50%; - } - .col-md-push-5 { - left: 41.66666667%; - } - .col-md-push-4 { - left: 33.33333333%; - } - .col-md-push-3 { - left: 25%; - } - .col-md-push-2 { - left: 16.66666667%; - } - .col-md-push-1 { - left: 8.33333333%; - } - .col-md-push-0 { - left: auto; - } - .col-md-offset-12 { - margin-left: 100%; - } - .col-md-offset-11 { - margin-left: 91.66666667%; - } - .col-md-offset-10 { - margin-left: 83.33333333%; - } - .col-md-offset-9 { - margin-left: 75%; - } - .col-md-offset-8 { - margin-left: 66.66666667%; - } - .col-md-offset-7 { - margin-left: 58.33333333%; - } - .col-md-offset-6 { - margin-left: 50%; - } - .col-md-offset-5 { - margin-left: 41.66666667%; - } - .col-md-offset-4 { - margin-left: 33.33333333%; - } - .col-md-offset-3 { - margin-left: 25%; - } - .col-md-offset-2 { - margin-left: 16.66666667%; - } - .col-md-offset-1 { - margin-left: 8.33333333%; - } - .col-md-offset-0 { - margin-left: 0; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - .col-lg-12 { - width: 100%; - } - .col-lg-11 { - width: 91.66666667%; - } - .col-lg-10 { - width: 83.33333333%; - } - .col-lg-9 { - width: 75%; - } - .col-lg-8 { - width: 66.66666667%; - } - .col-lg-7 { - width: 58.33333333%; - } - .col-lg-6 { - width: 50%; - } - .col-lg-5 { - width: 41.66666667%; - } - .col-lg-4 { - width: 33.33333333%; - } - .col-lg-3 { - width: 25%; - } - .col-lg-2 { - width: 16.66666667%; - } - .col-lg-1 { - width: 8.33333333%; - } - .col-lg-pull-12 { - right: 100%; - } - .col-lg-pull-11 { - right: 91.66666667%; - } - .col-lg-pull-10 { - right: 83.33333333%; - } - .col-lg-pull-9 { - right: 75%; - } - .col-lg-pull-8 { - right: 66.66666667%; - } - .col-lg-pull-7 { - right: 58.33333333%; - } - .col-lg-pull-6 { - right: 50%; - } - .col-lg-pull-5 { - right: 41.66666667%; - } - .col-lg-pull-4 { - right: 33.33333333%; - } - .col-lg-pull-3 { - right: 25%; - } - .col-lg-pull-2 { - right: 16.66666667%; - } - .col-lg-pull-1 { - right: 8.33333333%; - } - .col-lg-pull-0 { - right: auto; - } - .col-lg-push-12 { - left: 100%; - } - .col-lg-push-11 { - left: 91.66666667%; - } - .col-lg-push-10 { - left: 83.33333333%; - } - .col-lg-push-9 { - left: 75%; - } - .col-lg-push-8 { - left: 66.66666667%; - } - .col-lg-push-7 { - left: 58.33333333%; - } - .col-lg-push-6 { - left: 50%; - } - .col-lg-push-5 { - left: 41.66666667%; - } - .col-lg-push-4 { - left: 33.33333333%; - } - .col-lg-push-3 { - left: 25%; - } - .col-lg-push-2 { - left: 16.66666667%; - } - .col-lg-push-1 { - left: 8.33333333%; - } - .col-lg-push-0 { - left: auto; - } - .col-lg-offset-12 { - margin-left: 100%; - } - .col-lg-offset-11 { - margin-left: 91.66666667%; - } - .col-lg-offset-10 { - margin-left: 83.33333333%; - } - .col-lg-offset-9 { - margin-left: 75%; - } - .col-lg-offset-8 { - margin-left: 66.66666667%; - } - .col-lg-offset-7 { - margin-left: 58.33333333%; - } - .col-lg-offset-6 { - margin-left: 50%; - } - .col-lg-offset-5 { - margin-left: 41.66666667%; - } - .col-lg-offset-4 { - margin-left: 33.33333333%; - } - .col-lg-offset-3 { - margin-left: 25%; - } - .col-lg-offset-2 { - margin-left: 16.66666667%; - } - .col-lg-offset-1 { - margin-left: 8.33333333%; - } - .col-lg-offset-0 { - margin-left: 0; - } -} -table { - background-color: transparent; -} -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777; - text-align: left; -} -th { - text-align: left; -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857143; - vertical-align: top; - border-top: 1px solid #ddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; -} -.table > caption + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > th, -.table > thead:first-child > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} -.table-condensed > thead > tr > th, -.table-condensed > tbody > tr > th, -.table-condensed > tfoot > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > td { - padding: 5px; -} -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > tbody > tr > th, -.table-bordered > tfoot > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > td { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; -} -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} -table col[class*="col-"] { - position: static; - display: table-column; - float: none; -} -table td[class*="col-"], -table th[class*="col-"] { - position: static; - display: table-cell; - float: none; -} -.table > thead > tr > td.active, -.table > tbody > tr > td.active, -.table > tfoot > tr > td.active, -.table > thead > tr > th.active, -.table > tbody > tr > th.active, -.table > tfoot > tr > th.active, -.table > thead > tr.active > td, -.table > tbody > tr.active > td, -.table > tfoot > tr.active > td, -.table > thead > tr.active > th, -.table > tbody > tr.active > th, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; -} -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; -} -.table > thead > tr > td.success, -.table > tbody > tr > td.success, -.table > tfoot > tr > td.success, -.table > thead > tr > th.success, -.table > tbody > tr > th.success, -.table > tfoot > tr > th.success, -.table > thead > tr.success > td, -.table > tbody > tr.success > td, -.table > tfoot > tr.success > td, -.table > thead > tr.success > th, -.table > tbody > tr.success > th, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} -.table > thead > tr > td.info, -.table > tbody > tr > td.info, -.table > tfoot > tr > td.info, -.table > thead > tr > th.info, -.table > tbody > tr > th.info, -.table > tfoot > tr > th.info, -.table > thead > tr.info > td, -.table > tbody > tr.info > td, -.table > tfoot > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr.info > th, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} -.table > thead > tr > td.warning, -.table > tbody > tr > td.warning, -.table > tfoot > tr > td.warning, -.table > thead > tr > th.warning, -.table > tbody > tr > th.warning, -.table > tfoot > tr > th.warning, -.table > thead > tr.warning > td, -.table > tbody > tr.warning > td, -.table > tfoot > tr.warning > td, -.table > thead > tr.warning > th, -.table > tbody > tr.warning > th, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} -.table > thead > tr > td.danger, -.table > tbody > tr > td.danger, -.table > tfoot > tr > td.danger, -.table > thead > tr > th.danger, -.table > tbody > tr > th.danger, -.table > tfoot > tr > th.danger, -.table > thead > tr.danger > td, -.table > tbody > tr.danger > td, -.table > tfoot > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr.danger > th, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} -.table-responsive { - min-height: .01%; - overflow-x: auto; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; - } - .table-responsive > .table { - margin-bottom: 0; - } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; - } - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; - } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; - } -} -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: bold; -} -input[type="search"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -input[type="radio"], -input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal; -} -input[type="file"] { - display: block; -} -input[type="range"] { - display: block; - width: 100%; -} -select[multiple], -select[size] { - height: auto; -} -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.42857143; - color: #555; -} -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - color: #555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; - -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); -} -.form-control::-moz-placeholder { - color: #999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999; -} -.form-control::-webkit-input-placeholder { - color: #999; -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control[disabled], -.form-control[readonly], -fieldset[disabled] .form-control { - background-color: #eee; - opacity: 1; -} -.form-control[disabled], -fieldset[disabled] .form-control { - cursor: not-allowed; -} -textarea.form-control { - height: auto; -} -input[type="search"] { - -webkit-appearance: none; -} -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type="date"].form-control, - input[type="time"].form-control, - input[type="datetime-local"].form-control, - input[type="month"].form-control { - line-height: 34px; - } - input[type="date"].input-sm, - input[type="time"].input-sm, - input[type="datetime-local"].input-sm, - input[type="month"].input-sm, - .input-group-sm input[type="date"], - .input-group-sm input[type="time"], - .input-group-sm input[type="datetime-local"], - .input-group-sm input[type="month"] { - line-height: 30px; - } - input[type="date"].input-lg, - input[type="time"].input-lg, - input[type="datetime-local"].input-lg, - input[type="month"].input-lg, - .input-group-lg input[type="date"], - .input-group-lg input[type="time"], - .input-group-lg input[type="datetime-local"], - .input-group-lg input[type="month"] { - line-height: 46px; - } -} -.form-group { - margin-bottom: 15px; -} -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio label, -.checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - cursor: pointer; -} -.radio input[type="radio"], -.radio-inline input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - position: absolute; - margin-top: 4px \9; - margin-left: -20px; -} -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - vertical-align: middle; - cursor: pointer; -} -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} -input[type="radio"][disabled], -input[type="checkbox"][disabled], -input[type="radio"].disabled, -input[type="checkbox"].disabled, -fieldset[disabled] input[type="radio"], -fieldset[disabled] input[type="checkbox"] { - cursor: not-allowed; -} -.radio-inline.disabled, -.checkbox-inline.disabled, -fieldset[disabled] .radio-inline, -fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} -.radio.disabled label, -.checkbox.disabled label, -fieldset[disabled] .radio label, -fieldset[disabled] .checkbox label { - cursor: not-allowed; -} -.form-control-static { - min-height: 34px; - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; -} -.form-control-static.input-lg, -.form-control-static.input-sm { - padding-right: 0; - padding-left: 0; -} -.input-sm { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-sm { - height: 30px; - line-height: 30px; -} -textarea.input-sm, -select[multiple].input-sm { - height: auto; -} -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.form-group-sm select.form-control { - height: 30px; - line-height: 30px; -} -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; -} -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 6px 10px; - font-size: 12px; - line-height: 1.5; -} -.input-lg { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -select.input-lg { - height: 46px; - line-height: 46px; -} -textarea.input-lg, -select[multiple].input-lg { - height: auto; -} -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.form-group-lg select.form-control { - height: 46px; - line-height: 46px; -} -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; -} -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 11px 16px; - font-size: 18px; - line-height: 1.3333333; -} -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 42.5px; -} -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; -} -.input-lg + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} -.input-sm + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - background-color: #dff0d8; - border-color: #3c763d; -} -.has-success .form-control-feedback { - color: #3c763d; -} -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #8a6d3b; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - background-color: #f2dede; - border-color: #a94442; -} -.has-error .form-control-feedback { - color: #a94442; -} -.has-feedback label ~ .form-control-feedback { - top: 25px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-static { - display: inline-block; - } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; - } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; - } - .form-inline .radio input[type="radio"], - .form-inline .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; -} -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - padding-top: 7px; - margin-bottom: 0; - text-align: right; - } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 18px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 12px; - } -} -.btn { - display: inline-block; - padding: 6px 12px; - margin-bottom: 0; - font-size: 14px; - font-weight: normal; - line-height: 1.42857143; - text-align: center; - white-space: nowrap; - vertical-align: middle; - -ms-touch-action: manipulation; - touch-action: manipulation; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.btn:focus, -.btn:active:focus, -.btn.active:focus, -.btn.focus, -.btn:active.focus, -.btn.active.focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, -.btn:focus, -.btn.focus { - color: #333; - text-decoration: none; -} -.btn:active, -.btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; - opacity: .65; -} -a.btn.disabled, -fieldset[disabled] a.btn { - pointer-events: none; -} -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; -} -.btn-default:focus, -.btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; -} -.btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active:hover, -.btn-default.active:hover, -.open > .dropdown-toggle.btn-default:hover, -.btn-default:active:focus, -.btn-default.active:focus, -.open > .dropdown-toggle.btn-default:focus, -.btn-default:active.focus, -.btn-default.active.focus, -.open > .dropdown-toggle.btn-default.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - background-image: none; -} -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus, -.btn-default.disabled.focus, -.btn-default[disabled].focus, -fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: #ccc; -} -.btn-default .badge { - color: #fff; - background-color: #333; -} -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:focus, -.btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; -} -.btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active:hover, -.btn-primary.active:hover, -.open > .dropdown-toggle.btn-primary:hover, -.btn-primary:active:focus, -.btn-primary.active:focus, -.open > .dropdown-toggle.btn-primary:focus, -.btn-primary:active.focus, -.btn-primary.active.focus, -.open > .dropdown-toggle.btn-primary.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - background-image: none; -} -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus, -.btn-primary.disabled.focus, -.btn-primary[disabled].focus, -fieldset[disabled] .btn-primary.focus { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #fff; -} -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:focus, -.btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; -} -.btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active:hover, -.btn-success.active:hover, -.open > .dropdown-toggle.btn-success:hover, -.btn-success:active:focus, -.btn-success.active:focus, -.open > .dropdown-toggle.btn-success:focus, -.btn-success:active.focus, -.btn-success.active.focus, -.open > .dropdown-toggle.btn-success.focus { - color: #fff; - background-color: #398439; - border-color: #255625; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - background-image: none; -} -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus, -.btn-success.disabled.focus, -.btn-success[disabled].focus, -fieldset[disabled] .btn-success.focus { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #fff; -} -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:focus, -.btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; -} -.btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active:hover, -.btn-info.active:hover, -.open > .dropdown-toggle.btn-info:hover, -.btn-info:active:focus, -.btn-info.active:focus, -.open > .dropdown-toggle.btn-info:focus, -.btn-info:active.focus, -.btn-info.active.focus, -.open > .dropdown-toggle.btn-info.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - background-image: none; -} -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus, -.btn-info.disabled.focus, -.btn-info[disabled].focus, -fieldset[disabled] .btn-info.focus { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #fff; -} -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:focus, -.btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; -} -.btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active:hover, -.btn-warning.active:hover, -.open > .dropdown-toggle.btn-warning:hover, -.btn-warning:active:focus, -.btn-warning.active:focus, -.open > .dropdown-toggle.btn-warning:focus, -.btn-warning:active.focus, -.btn-warning.active.focus, -.open > .dropdown-toggle.btn-warning.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - background-image: none; -} -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus, -.btn-warning.disabled.focus, -.btn-warning[disabled].focus, -fieldset[disabled] .btn-warning.focus { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #fff; -} -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:focus, -.btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; -} -.btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active:hover, -.btn-danger.active:hover, -.open > .dropdown-toggle.btn-danger:hover, -.btn-danger:active:focus, -.btn-danger.active:focus, -.open > .dropdown-toggle.btn-danger:focus, -.btn-danger:active.focus, -.btn-danger.active.focus, -.open > .dropdown-toggle.btn-danger.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - background-image: none; -} -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus, -.btn-danger.disabled.focus, -.btn-danger[disabled].focus, -fieldset[disabled] .btn-danger.focus { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #fff; -} -.btn-link { - font-weight: normal; - color: #337ab7; - border-radius: 0; -} -.btn-link, -.btn-link:active, -.btn-link.active, -.btn-link[disabled], -fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, -.btn-link:hover, -.btn-link:focus, -.btn-link:active { - border-color: transparent; -} -.btn-link:hover, -.btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, -fieldset[disabled] .btn-link:hover, -.btn-link[disabled]:focus, -fieldset[disabled] .btn-link:focus { - color: #777; - text-decoration: none; -} -.btn-lg, -.btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.btn-sm, -.btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-xs, -.btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 5px; -} -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} -.fade { - opacity: 0; - -webkit-transition: opacity .15s linear; - -o-transition: opacity .15s linear; - transition: opacity .15s linear; -} -.fade.in { - opacity: 1; -} -.collapse { - display: none; -} -.collapse.in { - display: block; -} -tr.collapse.in { - display: table-row; -} -tbody.collapse.in { - display: table-row-group; -} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-duration: .35s; - -o-transition-duration: .35s; - transition-duration: .35s; - -webkit-transition-property: height, visibility; - -o-transition-property: height, visibility; - transition-property: height, visibility; -} -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \9; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} -.dropup, -.dropdown { - position: relative; -} -.dropdown-toggle:focus { - outline: 0; -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - font-size: 14px; - text-align: left; - list-style: none; - background-color: #fff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, .15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); - box-shadow: 0 6px 12px rgba(0, 0, 0, .175); -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.42857143; - color: #333; - white-space: nowrap; -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; -} -.dropdown-menu > .disabled > a, -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - color: #777; -} -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - text-decoration: none; - cursor: not-allowed; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} -.open > .dropdown-menu { - display: block; -} -.open > a { - outline: 0; -} -.dropdown-menu-right { - right: 0; - left: auto; -} -.dropdown-menu-left { - right: auto; - left: 0; -} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.42857143; - color: #777; - white-space: nowrap; -} -.dropdown-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 990; -} -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - content: ""; - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \9; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; - } - .navbar-right .dropdown-menu-left { - right: auto; - left: 0; - } -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - float: left; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover, -.btn-group > .btn:focus, -.btn-group-vertical > .btn:focus, -.btn-group > .btn:active, -.btn-group-vertical > .btn:active, -.btn-group > .btn.active, -.btn-group-vertical > .btn.active { - z-index: 2; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; -} -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar .btn, -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: left; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 5px; -} -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group > .btn-group { - float: left; -} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} -.btn-group > .btn + .dropdown-toggle { - padding-right: 8px; - padding-left: 8px; -} -.btn-group > .btn-lg + .dropdown-toggle { - padding-right: 12px; - padding-left: 12px; -} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn .caret { - margin-left: 0; -} -.btn-lg .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} -.dropup .btn-lg .caret { - border-width: 0 5px 5px; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified > .btn, -.btn-group-justified > .btn-group { - display: table-cell; - float: none; - width: 1%; -} -.btn-group-justified > .btn-group .btn { - width: 100%; -} -.btn-group-justified > .btn-group .dropdown-menu { - left: auto; -} -[data-toggle="buttons"] > .btn input[type="radio"], -[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], -[data-toggle="buttons"] > .btn input[type="checkbox"], -[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*="col-"] { - float: none; - padding-right: 0; - padding-left: 0; -} -.input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; -} -.input-group .form-control:focus { - z-index: 3; -} -.input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -select.input-group-lg > .form-control, -select.input-group-lg > .input-group-addon, -select.input-group-lg > .input-group-btn > .btn { - height: 46px; - line-height: 46px; -} -textarea.input-group-lg > .form-control, -textarea.input-group-lg > .input-group-addon, -textarea.input-group-lg > .input-group-btn > .btn, -select[multiple].input-group-lg > .form-control, -select[multiple].input-group-lg > .input-group-addon, -select[multiple].input-group-lg > .input-group-btn > .btn { - height: auto; -} -.input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-group-sm > .form-control, -select.input-group-sm > .input-group-addon, -select.input-group-sm > .input-group-btn > .btn { - height: 30px; - line-height: 30px; -} -textarea.input-group-sm > .form-control, -textarea.input-group-sm > .input-group-addon, -textarea.input-group-sm > .input-group-btn > .btn, -select[multiple].input-group-sm > .form-control, -select[multiple].input-group-sm > .input-group-addon, -select[multiple].input-group-sm > .input-group-btn > .btn { - height: auto; -} -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: normal; - line-height: 1; - color: #555; - text-align: center; - background-color: #eee; - border: 1px solid #ccc; - border-radius: 4px; -} -.input-group-addon.input-sm { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; -} -.input-group-addon.input-lg { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; -} -.input-group-addon input[type="radio"], -.input-group-addon input[type="checkbox"] { - margin-top: 0; -} -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group-addon:first-child { - border-right: 0; -} -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group-addon:last-child { - border-left: 0; -} -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn > .btn { - position: relative; -} -.input-group-btn > .btn + .btn { - margin-left: -1px; -} -.input-group-btn > .btn:hover, -.input-group-btn > .btn:focus, -.input-group-btn > .btn:active { - z-index: 2; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-right: -1px; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; -} -.nav { - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav > li > a:hover, -.nav > li > a:focus { - text-decoration: none; - background-color: #eee; -} -.nav > li.disabled > a { - color: #777; -} -.nav > li.disabled > a:hover, -.nav > li.disabled > a:focus { - color: #777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; -} -.nav .open > a, -.nav .open > a:hover, -.nav .open > a:focus { - background-color: #eee; - border-color: #337ab7; -} -.nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.42857143; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eee #eee #ddd; -} -.nav-tabs > li.active > a, -.nav-tabs > li.active > a:hover, -.nav-tabs > li.active > a:focus { - color: #555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; -} -.nav-tabs.nav-justified { - width: 100%; - border-bottom: 0; -} -.nav-tabs.nav-justified > li { - float: none; -} -.nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} -.nav-tabs.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs.nav-justified > .active > a, -.nav-tabs.nav-justified > .active > a:hover, -.nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs.nav-justified > .active > a, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; - } -} -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 4px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, -.nav-pills > li.active > a:hover, -.nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; -} -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} -.nav-justified { - width: 100%; -} -.nav-justified > li { - float: none; -} -.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} -.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus { - border-bottom-color: #fff; - } -} -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; -} -@media (min-width: 768px) { - .navbar { - border-radius: 4px; - } -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - -webkit-overflow-scrolling: touch; - border-top: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - -webkit-box-shadow: none; - box-shadow: none; - } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; - } - .navbar-collapse.in { - overflow-y: visible; - } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; - } -} -.navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 340px; -} -@media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; - } -} -.container > .navbar-header, -.container-fluid > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, - .container-fluid > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; - } -} -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; - } -} -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -@media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; - } -} -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} -.navbar-brand { - float: left; - height: 50px; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; -} -.navbar-brand:hover, -.navbar-brand:focus { - text-decoration: none; -} -.navbar-brand > img { - display: block; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-left: -15px; - } -} -.navbar-toggle { - position: relative; - float: right; - padding: 9px 10px; - margin-top: 8px; - margin-right: 15px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.navbar-toggle:focus { - outline: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; -} -@media (min-width: 768px) { - .navbar-toggle { - display: none; - } -} -.navbar-nav { - margin: 7.5px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; - } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; - } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; - } - .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; - } - .navbar-nav > li { - float: left; - } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; - } -} -.navbar-form { - padding: 10px 15px; - margin-top: 8px; - margin-right: -15px; - margin-bottom: 8px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); -} -@media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .navbar-form .form-control-static { - display: inline-block; - } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; - } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; - } - .navbar-form .input-group > .form-control { - width: 100%; - } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; - } - .navbar-form .radio input[type="radio"], - .navbar-form .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .navbar-form .has-feedback .form-control-feedback { - top: 0; - } -} -@media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; - } - .navbar-form .form-group:last-child { - margin-bottom: 0; - } -} -@media (min-width: 768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; - } -} -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; -} -.navbar-btn.btn-sm { - margin-top: 10px; - margin-bottom: 10px; -} -.navbar-btn.btn-xs { - margin-top: 14px; - margin-bottom: 14px; -} -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; - } -} -@media (min-width: 768px) { - .navbar-left { - float: left !important; - } - .navbar-right { - float: right !important; - margin-right: -15px; - } - .navbar-right ~ .navbar-right { - margin-right: 0; - } -} -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; -} -.navbar-default .navbar-brand { - color: #777; -} -.navbar-default .navbar-brand:hover, -.navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #777; -} -.navbar-default .navbar-nav > li > a { - color: #777; -} -.navbar-default .navbar-nav > li > a:hover, -.navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, -.navbar-default .navbar-nav > .active > a:hover, -.navbar-default .navbar-nav > .active > a:focus { - color: #555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav > .disabled > a, -.navbar-default .navbar-nav > .disabled > a:hover, -.navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; - background-color: transparent; -} -.navbar-default .navbar-toggle { - border-color: #ddd; -} -.navbar-default .navbar-toggle:hover, -.navbar-default .navbar-toggle:focus { - background-color: #ddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888; -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: #e7e7e7; -} -.navbar-default .navbar-nav > .open > a, -.navbar-default .navbar-nav > .open > a:hover, -.navbar-default .navbar-nav > .open > a:focus { - color: #555; - background-color: #e7e7e7; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; - } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; - } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; - } -} -.navbar-default .navbar-link { - color: #777; -} -.navbar-default .navbar-link:hover { - color: #333; -} -.navbar-default .btn-link { - color: #777; -} -.navbar-default .btn-link:hover, -.navbar-default .btn-link:focus { - color: #333; -} -.navbar-default .btn-link[disabled]:hover, -fieldset[disabled] .navbar-default .btn-link:hover, -.navbar-default .btn-link[disabled]:focus, -fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; -} -.navbar-inverse { - background-color: #222; - border-color: #080808; -} -.navbar-inverse .navbar-brand { - color: #9d9d9d; -} -.navbar-inverse .navbar-brand:hover, -.navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a:hover, -.navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .active > a, -.navbar-inverse .navbar-nav > .active > a:hover, -.navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; - background-color: #080808; -} -.navbar-inverse .navbar-nav > .disabled > a, -.navbar-inverse .navbar-nav > .disabled > a:hover, -.navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; -} -.navbar-inverse .navbar-toggle { - border-color: #333; -} -.navbar-inverse .navbar-toggle:hover, -.navbar-inverse .navbar-toggle:focus { - background-color: #333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #101010; -} -.navbar-inverse .navbar-nav > .open > a, -.navbar-inverse .navbar-nav > .open > a:hover, -.navbar-inverse .navbar-nav > .open > a:focus { - color: #fff; - background-color: #080808; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; - } -} -.navbar-inverse .navbar-link { - color: #9d9d9d; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.navbar-inverse .btn-link { - color: #9d9d9d; -} -.navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link:focus { - color: #fff; -} -.navbar-inverse .btn-link[disabled]:hover, -fieldset[disabled] .navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link[disabled]:focus, -fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; -} -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: "/\00a0"; -} -.breadcrumb > .active { - color: #777; -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857143; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} -.pagination > li > a:hover, -.pagination > li > span:hover, -.pagination > li > a:focus, -.pagination > li > span:focus { - z-index: 2; - color: #23527c; - background-color: #eee; - border-color: #ddd; -} -.pagination > .active > a, -.pagination > .active > span, -.pagination > .active > a:hover, -.pagination > .active > span:hover, -.pagination > .active > a:focus, -.pagination > .active > span:focus { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} -.pager { - padding-left: 0; - margin: 20px 0; - text-align: center; - list-style: none; -} -.pager li { - display: inline; -} -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #eee; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #777; - cursor: not-allowed; - background-color: #fff; -} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; -} -a.label:hover, -a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} -.label-default { - background-color: #777; -} -.label-default[href]:hover, -.label-default[href]:focus { - background-color: #5e5e5e; -} -.label-primary { - background-color: #337ab7; -} -.label-primary[href]:hover, -.label-primary[href]:focus { - background-color: #286090; -} -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, -.label-success[href]:focus { - background-color: #449d44; -} -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, -.label-info[href]:focus { - background-color: #31b0d5; -} -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, -.label-warning[href]:focus { - background-color: #ec971f; -} -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, -.label-danger[href]:focus { - background-color: #c9302c; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: middle; - background-color: #777; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, -.btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -a.badge:hover, -a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -.list-group-item.active > .badge, -.nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eee; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #d5d5d5; -} -.container .jumbotron, -.container-fluid .jumbotron { - padding-right: 15px; - padding-left: 15px; - border-radius: 6px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; - } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; - } - .jumbotron h1, - .jumbotron .h1 { - font-size: 63px; - } -} -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.42857143; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border .2s ease-in-out; - -o-transition: border .2s ease-in-out; - transition: border .2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - margin-right: auto; - margin-left: auto; -} -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; -} -.thumbnail .caption { - padding: 9px; - color: #333; -} -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} -.alert-success { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} -.alert-info { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} -.alert-warning { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@-o-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -.progress { - height: 20px; - margin-bottom: 20px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); -} -.progress-bar { - float: left; - width: 0; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); - -webkit-transition: width .6s ease; - -o-transition: width .6s ease; - transition: width .6s ease; -} -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - -webkit-background-size: 40px 40px; - background-size: 40px 40px; -} -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.progress-bar-success { - background-color: #5cb85c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-info { - background-color: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-warning { - background-color: #f0ad4e; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-danger { - background-color: #d9534f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} -.media, -.media-body { - overflow: hidden; - zoom: 1; -} -.media-body { - width: 10000px; -} -.media-object { - display: block; -} -.media-object.img-thumbnail { - max-width: none; -} -.media-right, -.media > .pull-right { - padding-left: 10px; -} -.media-left, -.media > .pull-left { - padding-right: 10px; -} -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; -} -.media-middle { - vertical-align: middle; -} -.media-bottom { - vertical-align: bottom; -} -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} -.media-list { - padding-left: 0; - list-style: none; -} -.list-group { - padding-left: 0; - margin-bottom: 20px; -} -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; -} -.list-group-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -a.list-group-item, -button.list-group-item { - color: #555; -} -a.list-group-item .list-group-item-heading, -button.list-group-item .list-group-item-heading { - color: #333; -} -a.list-group-item:hover, -button.list-group-item:hover, -a.list-group-item:focus, -button.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; -} -button.list-group-item { - width: 100%; - text-align: left; -} -.list-group-item.disabled, -.list-group-item.disabled:hover, -.list-group-item.disabled:focus { - color: #777; - cursor: not-allowed; - background-color: #eee; -} -.list-group-item.disabled .list-group-item-heading, -.list-group-item.disabled:hover .list-group-item-heading, -.list-group-item.disabled:focus .list-group-item-heading { - color: inherit; -} -.list-group-item.disabled .list-group-item-text, -.list-group-item.disabled:hover .list-group-item-text, -.list-group-item.disabled:focus .list-group-item-text { - color: #777; -} -.list-group-item.active, -.list-group-item.active:hover, -.list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, -.list-group-item.active:hover .list-group-item-heading > .small, -.list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; -} -.list-group-item.active .list-group-item-text, -.list-group-item.active:hover .list-group-item-text, -.list-group-item.active:focus .list-group-item-text { - color: #c7ddef; -} -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading, -button.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, -button.list-group-item-success:hover, -a.list-group-item-success:focus, -button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, -button.list-group-item-success.active, -a.list-group-item-success.active:hover, -button.list-group-item-success.active:hover, -a.list-group-item-success.active:focus, -button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading, -button.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, -button.list-group-item-info:hover, -a.list-group-item-info:focus, -button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, -button.list-group-item-info.active, -a.list-group-item-info.active:hover, -button.list-group-item-info.active:hover, -a.list-group-item-info.active:focus, -button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading, -button.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, -button.list-group-item-warning:hover, -a.list-group-item-warning:focus, -button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, -button.list-group-item-warning.active, -a.list-group-item-warning.active:hover, -button.list-group-item-warning.active:hover, -a.list-group-item-warning.active:focus, -button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading, -button.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, -button.list-group-item-danger:hover, -a.list-group-item-danger:focus, -button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, -button.list-group-item-danger.active, -a.list-group-item-danger.active:hover, -button.list-group-item-danger.active:hover, -a.list-group-item-danger.active:focus, -button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); - box-shadow: 0 1px 1px rgba(0, 0, 0, .05); -} -.panel-body { - padding: 15px; -} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; -} -.panel-title > a, -.panel-title > small, -.panel-title > .small, -.panel-title > small > a, -.panel-title > .small > a { - color: inherit; -} -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .list-group:last-child .list-group-item:last-child, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} -.list-group + .panel-footer { - border-top-width: 0; -} -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - margin-bottom: 0; - border: 0; -} -.panel-group { - margin-bottom: 20px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 4px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; -} -.panel-default { - border-color: #ddd; -} -.panel-default > .panel-heading { - color: #333; - background-color: #f5f5f5; - border-color: #ddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; -} -.panel-primary { - border-color: #337ab7; -} -.panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; -} -.panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; -} -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; -} -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} -.embed-responsive-16by9 { - padding-bottom: 56.25%; -} -.embed-responsive-4by3 { - padding-bottom: 75%; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, .15); -} -.well-lg { - padding: 24px; - border-radius: 6px; -} -.well-sm { - padding: 9px; - border-radius: 3px; -} -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: .2; -} -.close:hover, -.close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: .5; -} -button.close { - -webkit-appearance: none; - padding: 0; - cursor: pointer; - background: transparent; - border: 0; -} -.modal-open { - overflow: hidden; -} -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transition: -webkit-transform .3s ease-out; - -o-transition: -o-transform .3s ease-out; - transition: transform .3s ease-out; - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} -.modal-content { - position: relative; - background-color: #fff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: 6px; - outline: 0; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); - box-shadow: 0 3px 9px rgba(0, 0, 0, .5); -} -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - filter: alpha(opacity=0); - opacity: 0; -} -.modal-backdrop.in { - filter: alpha(opacity=50); - opacity: .5; -} -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; -} -.modal-header .close { - margin-top: -2px; -} -.modal-title { - margin: 0; - line-height: 1.42857143; -} -.modal-body { - position: relative; - padding: 15px; -} -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; -} -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); - box-shadow: 0 5px 15px rgba(0, 0, 0, .5); - } - .modal-sm { - width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - width: 900px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12px; - font-style: normal; - font-weight: normal; - line-height: 1.42857143; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - filter: alpha(opacity=0); - opacity: 0; - - line-break: auto; -} -.tooltip.in { - filter: alpha(opacity=90); - opacity: .9; -} -.tooltip.top { - padding: 5px 0; - margin-top: -3px; -} -.tooltip.right { - padding: 0 5px; - margin-left: 3px; -} -.tooltip.bottom { - padding: 5px 0; - margin-top: 3px; -} -.tooltip.left { - padding: 0 5px; - margin-left: -3px; -} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 4px; -} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-left .tooltip-arrow { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - font-style: normal; - font-weight: normal; - line-height: 1.42857143; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - background-color: #fff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); - box-shadow: 0 5px 10px rgba(0, 0, 0, .2); - - line-break: auto; -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} -.popover-title { - padding: 8px 14px; - margin: 0; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; -} -.popover-content { - padding: 9px 14px; -} -.popover > .arrow, -.popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover > .arrow { - border-width: 11px; -} -.popover > .arrow:after { - content: ""; - border-width: 10px; -} -.popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999; - border-top-color: rgba(0, 0, 0, .25); - border-bottom-width: 0; -} -.popover.top > .arrow:after { - bottom: 1px; - margin-left: -10px; - content: " "; - border-top-color: #fff; - border-bottom-width: 0; -} -.popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999; - border-right-color: rgba(0, 0, 0, .25); - border-left-width: 0; -} -.popover.right > .arrow:after { - bottom: -10px; - left: 1px; - content: " "; - border-right-color: #fff; - border-left-width: 0; -} -.popover.bottom > .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999; - border-bottom-color: rgba(0, 0, 0, .25); -} -.popover.bottom > .arrow:after { - top: 1px; - margin-left: -10px; - content: " "; - border-top-width: 0; - border-bottom-color: #fff; -} -.popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999; - border-left-color: rgba(0, 0, 0, .25); -} -.popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: " "; - border-right-width: 0; - border-left-color: #fff; -} -.carousel { - position: relative; -} -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: .6s ease-in-out left; - -o-transition: .6s ease-in-out left; - transition: .6s ease-in-out left; -} -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - line-height: 1; -} -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform .6s ease-in-out; - -o-transition: -o-transform .6s ease-in-out; - transition: transform .6s ease-in-out; - - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - perspective: 1000px; - } - .carousel-inner > .item.next, - .carousel-inner > .item.active.right { - left: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } - .carousel-inner > .item.prev, - .carousel-inner > .item.active.left { - left: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } - .carousel-inner > .item.next.left, - .carousel-inner > .item.prev.right, - .carousel-inner > .item.active { - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { - display: block; -} -.carousel-inner > .active { - left: 0; -} -.carousel-inner > .next, -.carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel-inner > .next { - left: 100%; -} -.carousel-inner > .prev { - left: -100%; -} -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; -} -.carousel-inner > .active.left { - left: -100%; -} -.carousel-inner > .active.right { - left: 100%; -} -.carousel-control { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); - background-color: rgba(0, 0, 0, 0); - filter: alpha(opacity=50); - opacity: .5; -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); - background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); - background-repeat: repeat-x; -} -.carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); - background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); - background-repeat: repeat-x; -} -.carousel-control:hover, -.carousel-control:focus { - color: #fff; - text-decoration: none; - filter: alpha(opacity=90); - outline: 0; - opacity: .9; -} -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; - margin-top: -10px; -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; -} -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 20px; - height: 20px; - font-family: serif; - line-height: 1; -} -.carousel-control .icon-prev:before { - content: '\2039'; -} -.carousel-control .icon-next:before { - content: '\203a'; -} -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - padding-left: 0; - margin-left: -30%; - text-align: center; - list-style: none; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \9; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; -} -.carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; -} -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); -} -.carousel-caption .btn { - text-shadow: none; -} -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -10px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -10px; - } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -10px; - } - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; - } - .carousel-indicators { - bottom: 20px; - } -} -.clearfix:before, -.clearfix:after, -.dl-horizontal dd:before, -.dl-horizontal dd:after, -.container:before, -.container:after, -.container-fluid:before, -.container-fluid:after, -.row:before, -.row:after, -.form-horizontal .form-group:before, -.form-horizontal .form-group:after, -.btn-toolbar:before, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:before, -.btn-group-vertical > .btn-group:after, -.nav:before, -.nav:after, -.navbar:before, -.navbar:after, -.navbar-header:before, -.navbar-header:after, -.navbar-collapse:before, -.navbar-collapse:after, -.pager:before, -.pager:after, -.panel-body:before, -.panel-body:after, -.modal-header:before, -.modal-header:after, -.modal-footer:before, -.modal-footer:after { - display: table; - content: " "; -} -.clearfix:after, -.dl-horizontal dd:after, -.container:after, -.container-fluid:after, -.row:after, -.form-horizontal .form-group:after, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:after, -.nav:after, -.navbar:after, -.navbar-header:after, -.navbar-collapse:after, -.pager:after, -.panel-body:after, -.modal-header:after, -.modal-footer:after { - clear: both; -} -.center-block { - display: block; - margin-right: auto; - margin-left: auto; -} -.pull-right { - float: right !important; -} -.pull-left { - float: left !important; -} -.hide { - display: none !important; -} -.show { - display: block !important; -} -.invisible { - visibility: hidden; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.hidden { - display: none !important; -} -.affix { - position: fixed; -} -@-ms-viewport { - width: device-width; -} -.visible-xs, -.visible-sm, -.visible-md, -.visible-lg { - display: none !important; -} -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } - table.visible-xs { - display: table !important; - } - tr.visible-xs { - display: table-row !important; - } - th.visible-xs, - td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } - table.visible-sm { - display: table !important; - } - tr.visible-sm { - display: table-row !important; - } - th.visible-sm, - td.visible-sm { - display: table-cell !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } - table.visible-md { - display: table !important; - } - tr.visible-md { - display: table-row !important; - } - th.visible-md, - td.visible-md { - display: table-cell !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } -} -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } - table.visible-lg { - display: table !important; - } - tr.visible-lg { - display: table-row !important; - } - th.visible-lg, - td.visible-lg { - display: table-cell !important; - } -} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } -} -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } -} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } -} -.visible-print { - display: none !important; -} -@media print { - .visible-print { - display: block !important; - } - table.visible-print { - display: table !important; - } - tr.visible-print { - display: table-row !important; - } - th.visible-print, - td.visible-print { - display: table-cell !important; - } -} -.visible-print-block { - display: none !important; -} -@media print { - .visible-print-block { - display: block !important; - } -} -.visible-print-inline { - display: none !important; -} -@media print { - .visible-print-inline { - display: inline !important; - } -} -.visible-print-inline-block { - display: none !important; -} -@media print { - .visible-print-inline-block { - display: inline-block !important; - } -} -@media print { - .hidden-print { - display: none !important; - } -} -/*# sourceMappingURL=bootstrap.css.map */ diff --git a/inc/css/bootstrap.min.css b/inc/css/bootstrap.min.css deleted file mode 100644 index 4cf729e..0000000 --- a/inc/css/bootstrap.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Bootstrap v3.3.6 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/inc/css/font-awesome.css b/inc/css/font-awesome.css deleted file mode 100644 index b2a5fe2..0000000 --- a/inc/css/font-awesome.css +++ /dev/null @@ -1,2086 +0,0 @@ -/*! - * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ -/* FONT PATH - * -------------------------- */ -@font-face { - font-family: 'FontAwesome'; - src: url('../fonts/fontawesome-webfont.eot?v=4.5.0'); - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg'); - font-weight: normal; - font-style: normal; -} -.fa { - display: inline-block; - font: normal normal normal 14px/1 FontAwesome; - font-size: inherit; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -/* makes the font 33% larger relative to the icon container */ -.fa-lg { - font-size: 1.33333333em; - line-height: 0.75em; - vertical-align: -15%; -} -.fa-2x { - font-size: 2em; -} -.fa-3x { - font-size: 3em; -} -.fa-4x { - font-size: 4em; -} -.fa-5x { - font-size: 5em; -} -.fa-fw { - width: 1.28571429em; - text-align: center; -} -.fa-ul { - padding-left: 0; - margin-left: 2.14285714em; - list-style-type: none; -} -.fa-ul > li { - position: relative; -} -.fa-li { - position: absolute; - left: -2.14285714em; - width: 2.14285714em; - top: 0.14285714em; - text-align: center; -} -.fa-li.fa-lg { - left: -1.85714286em; -} -.fa-border { - padding: .2em .25em .15em; - border: solid 0.08em #eeeeee; - border-radius: .1em; -} -.fa-pull-left { - float: left; -} -.fa-pull-right { - float: right; -} -.fa.fa-pull-left { - margin-right: .3em; -} -.fa.fa-pull-right { - margin-left: .3em; -} -/* Deprecated as of 4.4.0 */ -.pull-right { - float: right; -} -.pull-left { - float: left; -} -.fa.pull-left { - margin-right: .3em; -} -.fa.pull-right { - margin-left: .3em; -} -.fa-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} -.fa-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -.fa-rotate-90 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); -} -.fa-rotate-180 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} -.fa-rotate-270 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); -} -.fa-flip-horizontal { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); - -webkit-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - transform: scale(-1, 1); -} -.fa-flip-vertical { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); - -webkit-transform: scale(1, -1); - -ms-transform: scale(1, -1); - transform: scale(1, -1); -} -:root .fa-rotate-90, -:root .fa-rotate-180, -:root .fa-rotate-270, -:root .fa-flip-horizontal, -:root .fa-flip-vertical { - filter: none; -} -.fa-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.fa-stack-1x, -.fa-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.fa-stack-1x { - line-height: inherit; -} -.fa-stack-2x { - font-size: 2em; -} -.fa-inverse { - color: #ffffff; -} -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.fa-glass:before { - content: "\f000"; -} -.fa-music:before { - content: "\f001"; -} -.fa-search:before { - content: "\f002"; -} -.fa-envelope-o:before { - content: "\f003"; -} -.fa-heart:before { - content: "\f004"; -} -.fa-star:before { - content: "\f005"; -} -.fa-star-o:before { - content: "\f006"; -} -.fa-user:before { - content: "\f007"; -} -.fa-film:before { - content: "\f008"; -} -.fa-th-large:before { - content: "\f009"; -} -.fa-th:before { - content: "\f00a"; -} -.fa-th-list:before { - content: "\f00b"; -} -.fa-check:before { - content: "\f00c"; -} -.fa-remove:before, -.fa-close:before, -.fa-times:before { - content: "\f00d"; -} -.fa-search-plus:before { - content: "\f00e"; -} -.fa-search-minus:before { - content: "\f010"; -} -.fa-power-off:before { - content: "\f011"; -} -.fa-signal:before { - content: "\f012"; -} -.fa-gear:before, -.fa-cog:before { - content: "\f013"; -} -.fa-trash-o:before { - content: "\f014"; -} -.fa-home:before { - content: "\f015"; -} -.fa-file-o:before { - content: "\f016"; -} -.fa-clock-o:before { - content: "\f017"; -} -.fa-road:before { - content: "\f018"; -} -.fa-download:before { - content: "\f019"; -} -.fa-arrow-circle-o-down:before { - content: "\f01a"; -} -.fa-arrow-circle-o-up:before { - content: "\f01b"; -} -.fa-inbox:before { - content: "\f01c"; -} -.fa-play-circle-o:before { - content: "\f01d"; -} -.fa-rotate-right:before, -.fa-repeat:before { - content: "\f01e"; -} -.fa-refresh:before { - content: "\f021"; -} -.fa-list-alt:before { - content: "\f022"; -} -.fa-lock:before { - content: "\f023"; -} -.fa-flag:before { - content: "\f024"; -} -.fa-headphones:before { - content: "\f025"; -} -.fa-volume-off:before { - content: "\f026"; -} -.fa-volume-down:before { - content: "\f027"; -} -.fa-volume-up:before { - content: "\f028"; -} -.fa-qrcode:before { - content: "\f029"; -} -.fa-barcode:before { - content: "\f02a"; -} -.fa-tag:before { - content: "\f02b"; -} -.fa-tags:before { - content: "\f02c"; -} -.fa-book:before { - content: "\f02d"; -} -.fa-bookmark:before { - content: "\f02e"; -} -.fa-print:before { - content: "\f02f"; -} -.fa-camera:before { - content: "\f030"; -} -.fa-font:before { - content: "\f031"; -} -.fa-bold:before { - content: "\f032"; -} -.fa-italic:before { - content: "\f033"; -} -.fa-text-height:before { - content: "\f034"; -} -.fa-text-width:before { - content: "\f035"; -} -.fa-align-left:before { - content: "\f036"; -} -.fa-align-center:before { - content: "\f037"; -} -.fa-align-right:before { - content: "\f038"; -} -.fa-align-justify:before { - content: "\f039"; -} -.fa-list:before { - content: "\f03a"; -} -.fa-dedent:before, -.fa-outdent:before { - content: "\f03b"; -} -.fa-indent:before { - content: "\f03c"; -} -.fa-video-camera:before { - content: "\f03d"; -} -.fa-photo:before, -.fa-image:before, -.fa-picture-o:before { - content: "\f03e"; -} -.fa-pencil:before { - content: "\f040"; -} -.fa-map-marker:before { - content: "\f041"; -} -.fa-adjust:before { - content: "\f042"; -} -.fa-tint:before { - content: "\f043"; -} -.fa-edit:before, -.fa-pencil-square-o:before { - content: "\f044"; -} -.fa-share-square-o:before { - content: "\f045"; -} -.fa-check-square-o:before { - content: "\f046"; -} -.fa-arrows:before { - content: "\f047"; -} -.fa-step-backward:before { - content: "\f048"; -} -.fa-fast-backward:before { - content: "\f049"; -} -.fa-backward:before { - content: "\f04a"; -} -.fa-play:before { - content: "\f04b"; -} -.fa-pause:before { - content: "\f04c"; -} -.fa-stop:before { - content: "\f04d"; -} -.fa-forward:before { - content: "\f04e"; -} -.fa-fast-forward:before { - content: "\f050"; -} -.fa-step-forward:before { - content: "\f051"; -} -.fa-eject:before { - content: "\f052"; -} -.fa-chevron-left:before { - content: "\f053"; -} -.fa-chevron-right:before { - content: "\f054"; -} -.fa-plus-circle:before { - content: "\f055"; -} -.fa-minus-circle:before { - content: "\f056"; -} -.fa-times-circle:before { - content: "\f057"; -} -.fa-check-circle:before { - content: "\f058"; -} -.fa-question-circle:before { - content: "\f059"; -} -.fa-info-circle:before { - content: "\f05a"; -} -.fa-crosshairs:before { - content: "\f05b"; -} -.fa-times-circle-o:before { - content: "\f05c"; -} -.fa-check-circle-o:before { - content: "\f05d"; -} -.fa-ban:before { - content: "\f05e"; -} -.fa-arrow-left:before { - content: "\f060"; -} -.fa-arrow-right:before { - content: "\f061"; -} -.fa-arrow-up:before { - content: "\f062"; -} -.fa-arrow-down:before { - content: "\f063"; -} -.fa-mail-forward:before, -.fa-share:before { - content: "\f064"; -} -.fa-expand:before { - content: "\f065"; -} -.fa-compress:before { - content: "\f066"; -} -.fa-plus:before { - content: "\f067"; -} -.fa-minus:before { - content: "\f068"; -} -.fa-asterisk:before { - content: "\f069"; -} -.fa-exclamation-circle:before { - content: "\f06a"; -} -.fa-gift:before { - content: "\f06b"; -} -.fa-leaf:before { - content: "\f06c"; -} -.fa-fire:before { - content: "\f06d"; -} -.fa-eye:before { - content: "\f06e"; -} -.fa-eye-slash:before { - content: "\f070"; -} -.fa-warning:before, -.fa-exclamation-triangle:before { - content: "\f071"; -} -.fa-plane:before { - content: "\f072"; -} -.fa-calendar:before { - content: "\f073"; -} -.fa-random:before { - content: "\f074"; -} -.fa-comment:before { - content: "\f075"; -} -.fa-magnet:before { - content: "\f076"; -} -.fa-chevron-up:before { - content: "\f077"; -} -.fa-chevron-down:before { - content: "\f078"; -} -.fa-retweet:before { - content: "\f079"; -} -.fa-shopping-cart:before { - content: "\f07a"; -} -.fa-folder:before { - content: "\f07b"; -} -.fa-folder-open:before { - content: "\f07c"; -} -.fa-arrows-v:before { - content: "\f07d"; -} -.fa-arrows-h:before { - content: "\f07e"; -} -.fa-bar-chart-o:before, -.fa-bar-chart:before { - content: "\f080"; -} -.fa-twitter-square:before { - content: "\f081"; -} -.fa-facebook-square:before { - content: "\f082"; -} -.fa-camera-retro:before { - content: "\f083"; -} -.fa-key:before { - content: "\f084"; -} -.fa-gears:before, -.fa-cogs:before { - content: "\f085"; -} -.fa-comments:before { - content: "\f086"; -} -.fa-thumbs-o-up:before { - content: "\f087"; -} -.fa-thumbs-o-down:before { - content: "\f088"; -} -.fa-star-half:before { - content: "\f089"; -} -.fa-heart-o:before { - content: "\f08a"; -} -.fa-sign-out:before { - content: "\f08b"; -} -.fa-linkedin-square:before { - content: "\f08c"; -} -.fa-thumb-tack:before { - content: "\f08d"; -} -.fa-external-link:before { - content: "\f08e"; -} -.fa-sign-in:before { - content: "\f090"; -} -.fa-trophy:before { - content: "\f091"; -} -.fa-github-square:before { - content: "\f092"; -} -.fa-upload:before { - content: "\f093"; -} -.fa-lemon-o:before { - content: "\f094"; -} -.fa-phone:before { - content: "\f095"; -} -.fa-square-o:before { - content: "\f096"; -} -.fa-bookmark-o:before { - content: "\f097"; -} -.fa-phone-square:before { - content: "\f098"; -} -.fa-twitter:before { - content: "\f099"; -} -.fa-facebook-f:before, -.fa-facebook:before { - content: "\f09a"; -} -.fa-github:before { - content: "\f09b"; -} -.fa-unlock:before { - content: "\f09c"; -} -.fa-credit-card:before { - content: "\f09d"; -} -.fa-feed:before, -.fa-rss:before { - content: "\f09e"; -} -.fa-hdd-o:before { - content: "\f0a0"; -} -.fa-bullhorn:before { - content: "\f0a1"; -} -.fa-bell:before { - content: "\f0f3"; -} -.fa-certificate:before { - content: "\f0a3"; -} -.fa-hand-o-right:before { - content: "\f0a4"; -} -.fa-hand-o-left:before { - content: "\f0a5"; -} -.fa-hand-o-up:before { - content: "\f0a6"; -} -.fa-hand-o-down:before { - content: "\f0a7"; -} -.fa-arrow-circle-left:before { - content: "\f0a8"; -} -.fa-arrow-circle-right:before { - content: "\f0a9"; -} -.fa-arrow-circle-up:before { - content: "\f0aa"; -} -.fa-arrow-circle-down:before { - content: "\f0ab"; -} -.fa-globe:before { - content: "\f0ac"; -} -.fa-wrench:before { - content: "\f0ad"; -} -.fa-tasks:before { - content: "\f0ae"; -} -.fa-filter:before { - content: "\f0b0"; -} -.fa-briefcase:before { - content: "\f0b1"; -} -.fa-arrows-alt:before { - content: "\f0b2"; -} -.fa-group:before, -.fa-users:before { - content: "\f0c0"; -} -.fa-chain:before, -.fa-link:before { - content: "\f0c1"; -} -.fa-cloud:before { - content: "\f0c2"; -} -.fa-flask:before { - content: "\f0c3"; -} -.fa-cut:before, -.fa-scissors:before { - content: "\f0c4"; -} -.fa-copy:before, -.fa-files-o:before { - content: "\f0c5"; -} -.fa-paperclip:before { - content: "\f0c6"; -} -.fa-save:before, -.fa-floppy-o:before { - content: "\f0c7"; -} -.fa-square:before { - content: "\f0c8"; -} -.fa-navicon:before, -.fa-reorder:before, -.fa-bars:before { - content: "\f0c9"; -} -.fa-list-ul:before { - content: "\f0ca"; -} -.fa-list-ol:before { - content: "\f0cb"; -} -.fa-strikethrough:before { - content: "\f0cc"; -} -.fa-underline:before { - content: "\f0cd"; -} -.fa-table:before { - content: "\f0ce"; -} -.fa-magic:before { - content: "\f0d0"; -} -.fa-truck:before { - content: "\f0d1"; -} -.fa-pinterest:before { - content: "\f0d2"; -} -.fa-pinterest-square:before { - content: "\f0d3"; -} -.fa-google-plus-square:before { - content: "\f0d4"; -} -.fa-google-plus:before { - content: "\f0d5"; -} -.fa-money:before { - content: "\f0d6"; -} -.fa-caret-down:before { - content: "\f0d7"; -} -.fa-caret-up:before { - content: "\f0d8"; -} -.fa-caret-left:before { - content: "\f0d9"; -} -.fa-caret-right:before { - content: "\f0da"; -} -.fa-columns:before { - content: "\f0db"; -} -.fa-unsorted:before, -.fa-sort:before { - content: "\f0dc"; -} -.fa-sort-down:before, -.fa-sort-desc:before { - content: "\f0dd"; -} -.fa-sort-up:before, -.fa-sort-asc:before { - content: "\f0de"; -} -.fa-envelope:before { - content: "\f0e0"; -} -.fa-linkedin:before { - content: "\f0e1"; -} -.fa-rotate-left:before, -.fa-undo:before { - content: "\f0e2"; -} -.fa-legal:before, -.fa-gavel:before { - content: "\f0e3"; -} -.fa-dashboard:before, -.fa-tachometer:before { - content: "\f0e4"; -} -.fa-comment-o:before { - content: "\f0e5"; -} -.fa-comments-o:before { - content: "\f0e6"; -} -.fa-flash:before, -.fa-bolt:before { - content: "\f0e7"; -} -.fa-sitemap:before { - content: "\f0e8"; -} -.fa-umbrella:before { - content: "\f0e9"; -} -.fa-paste:before, -.fa-clipboard:before { - content: "\f0ea"; -} -.fa-lightbulb-o:before { - content: "\f0eb"; -} -.fa-exchange:before { - content: "\f0ec"; -} -.fa-cloud-download:before { - content: "\f0ed"; -} -.fa-cloud-upload:before { - content: "\f0ee"; -} -.fa-user-md:before { - content: "\f0f0"; -} -.fa-stethoscope:before { - content: "\f0f1"; -} -.fa-suitcase:before { - content: "\f0f2"; -} -.fa-bell-o:before { - content: "\f0a2"; -} -.fa-coffee:before { - content: "\f0f4"; -} -.fa-cutlery:before { - content: "\f0f5"; -} -.fa-file-text-o:before { - content: "\f0f6"; -} -.fa-building-o:before { - content: "\f0f7"; -} -.fa-hospital-o:before { - content: "\f0f8"; -} -.fa-ambulance:before { - content: "\f0f9"; -} -.fa-medkit:before { - content: "\f0fa"; -} -.fa-fighter-jet:before { - content: "\f0fb"; -} -.fa-beer:before { - content: "\f0fc"; -} -.fa-h-square:before { - content: "\f0fd"; -} -.fa-plus-square:before { - content: "\f0fe"; -} -.fa-angle-double-left:before { - content: "\f100"; -} -.fa-angle-double-right:before { - content: "\f101"; -} -.fa-angle-double-up:before { - content: "\f102"; -} -.fa-angle-double-down:before { - content: "\f103"; -} -.fa-angle-left:before { - content: "\f104"; -} -.fa-angle-right:before { - content: "\f105"; -} -.fa-angle-up:before { - content: "\f106"; -} -.fa-angle-down:before { - content: "\f107"; -} -.fa-desktop:before { - content: "\f108"; -} -.fa-laptop:before { - content: "\f109"; -} -.fa-tablet:before { - content: "\f10a"; -} -.fa-mobile-phone:before, -.fa-mobile:before { - content: "\f10b"; -} -.fa-circle-o:before { - content: "\f10c"; -} -.fa-quote-left:before { - content: "\f10d"; -} -.fa-quote-right:before { - content: "\f10e"; -} -.fa-spinner:before { - content: "\f110"; -} -.fa-circle:before { - content: "\f111"; -} -.fa-mail-reply:before, -.fa-reply:before { - content: "\f112"; -} -.fa-github-alt:before { - content: "\f113"; -} -.fa-folder-o:before { - content: "\f114"; -} -.fa-folder-open-o:before { - content: "\f115"; -} -.fa-smile-o:before { - content: "\f118"; -} -.fa-frown-o:before { - content: "\f119"; -} -.fa-meh-o:before { - content: "\f11a"; -} -.fa-gamepad:before { - content: "\f11b"; -} -.fa-keyboard-o:before { - content: "\f11c"; -} -.fa-flag-o:before { - content: "\f11d"; -} -.fa-flag-checkered:before { - content: "\f11e"; -} -.fa-terminal:before { - content: "\f120"; -} -.fa-code:before { - content: "\f121"; -} -.fa-mail-reply-all:before, -.fa-reply-all:before { - content: "\f122"; -} -.fa-star-half-empty:before, -.fa-star-half-full:before, -.fa-star-half-o:before { - content: "\f123"; -} -.fa-location-arrow:before { - content: "\f124"; -} -.fa-crop:before { - content: "\f125"; -} -.fa-code-fork:before { - content: "\f126"; -} -.fa-unlink:before, -.fa-chain-broken:before { - content: "\f127"; -} -.fa-question:before { - content: "\f128"; -} -.fa-info:before { - content: "\f129"; -} -.fa-exclamation:before { - content: "\f12a"; -} -.fa-superscript:before { - content: "\f12b"; -} -.fa-subscript:before { - content: "\f12c"; -} -.fa-eraser:before { - content: "\f12d"; -} -.fa-puzzle-piece:before { - content: "\f12e"; -} -.fa-microphone:before { - content: "\f130"; -} -.fa-microphone-slash:before { - content: "\f131"; -} -.fa-shield:before { - content: "\f132"; -} -.fa-calendar-o:before { - content: "\f133"; -} -.fa-fire-extinguisher:before { - content: "\f134"; -} -.fa-rocket:before { - content: "\f135"; -} -.fa-maxcdn:before { - content: "\f136"; -} -.fa-chevron-circle-left:before { - content: "\f137"; -} -.fa-chevron-circle-right:before { - content: "\f138"; -} -.fa-chevron-circle-up:before { - content: "\f139"; -} -.fa-chevron-circle-down:before { - content: "\f13a"; -} -.fa-html5:before { - content: "\f13b"; -} -.fa-css3:before { - content: "\f13c"; -} -.fa-anchor:before { - content: "\f13d"; -} -.fa-unlock-alt:before { - content: "\f13e"; -} -.fa-bullseye:before { - content: "\f140"; -} -.fa-ellipsis-h:before { - content: "\f141"; -} -.fa-ellipsis-v:before { - content: "\f142"; -} -.fa-rss-square:before { - content: "\f143"; -} -.fa-play-circle:before { - content: "\f144"; -} -.fa-ticket:before { - content: "\f145"; -} -.fa-minus-square:before { - content: "\f146"; -} -.fa-minus-square-o:before { - content: "\f147"; -} -.fa-level-up:before { - content: "\f148"; -} -.fa-level-down:before { - content: "\f149"; -} -.fa-check-square:before { - content: "\f14a"; -} -.fa-pencil-square:before { - content: "\f14b"; -} -.fa-external-link-square:before { - content: "\f14c"; -} -.fa-share-square:before { - content: "\f14d"; -} -.fa-compass:before { - content: "\f14e"; -} -.fa-toggle-down:before, -.fa-caret-square-o-down:before { - content: "\f150"; -} -.fa-toggle-up:before, -.fa-caret-square-o-up:before { - content: "\f151"; -} -.fa-toggle-right:before, -.fa-caret-square-o-right:before { - content: "\f152"; -} -.fa-euro:before, -.fa-eur:before { - content: "\f153"; -} -.fa-gbp:before { - content: "\f154"; -} -.fa-dollar:before, -.fa-usd:before { - content: "\f155"; -} -.fa-rupee:before, -.fa-inr:before { - content: "\f156"; -} -.fa-cny:before, -.fa-rmb:before, -.fa-yen:before, -.fa-jpy:before { - content: "\f157"; -} -.fa-ruble:before, -.fa-rouble:before, -.fa-rub:before { - content: "\f158"; -} -.fa-won:before, -.fa-krw:before { - content: "\f159"; -} -.fa-bitcoin:before, -.fa-btc:before { - content: "\f15a"; -} -.fa-file:before { - content: "\f15b"; -} -.fa-file-text:before { - content: "\f15c"; -} -.fa-sort-alpha-asc:before { - content: "\f15d"; -} -.fa-sort-alpha-desc:before { - content: "\f15e"; -} -.fa-sort-amount-asc:before { - content: "\f160"; -} -.fa-sort-amount-desc:before { - content: "\f161"; -} -.fa-sort-numeric-asc:before { - content: "\f162"; -} -.fa-sort-numeric-desc:before { - content: "\f163"; -} -.fa-thumbs-up:before { - content: "\f164"; -} -.fa-thumbs-down:before { - content: "\f165"; -} -.fa-youtube-square:before { - content: "\f166"; -} -.fa-youtube:before { - content: "\f167"; -} -.fa-xing:before { - content: "\f168"; -} -.fa-xing-square:before { - content: "\f169"; -} -.fa-youtube-play:before { - content: "\f16a"; -} -.fa-dropbox:before { - content: "\f16b"; -} -.fa-stack-overflow:before { - content: "\f16c"; -} -.fa-instagram:before { - content: "\f16d"; -} -.fa-flickr:before { - content: "\f16e"; -} -.fa-adn:before { - content: "\f170"; -} -.fa-bitbucket:before { - content: "\f171"; -} -.fa-bitbucket-square:before { - content: "\f172"; -} -.fa-tumblr:before { - content: "\f173"; -} -.fa-tumblr-square:before { - content: "\f174"; -} -.fa-long-arrow-down:before { - content: "\f175"; -} -.fa-long-arrow-up:before { - content: "\f176"; -} -.fa-long-arrow-left:before { - content: "\f177"; -} -.fa-long-arrow-right:before { - content: "\f178"; -} -.fa-apple:before { - content: "\f179"; -} -.fa-windows:before { - content: "\f17a"; -} -.fa-android:before { - content: "\f17b"; -} -.fa-linux:before { - content: "\f17c"; -} -.fa-dribbble:before { - content: "\f17d"; -} -.fa-skype:before { - content: "\f17e"; -} -.fa-foursquare:before { - content: "\f180"; -} -.fa-trello:before { - content: "\f181"; -} -.fa-female:before { - content: "\f182"; -} -.fa-male:before { - content: "\f183"; -} -.fa-gittip:before, -.fa-gratipay:before { - content: "\f184"; -} -.fa-sun-o:before { - content: "\f185"; -} -.fa-moon-o:before { - content: "\f186"; -} -.fa-archive:before { - content: "\f187"; -} -.fa-bug:before { - content: "\f188"; -} -.fa-vk:before { - content: "\f189"; -} -.fa-weibo:before { - content: "\f18a"; -} -.fa-renren:before { - content: "\f18b"; -} -.fa-pagelines:before { - content: "\f18c"; -} -.fa-stack-exchange:before { - content: "\f18d"; -} -.fa-arrow-circle-o-right:before { - content: "\f18e"; -} -.fa-arrow-circle-o-left:before { - content: "\f190"; -} -.fa-toggle-left:before, -.fa-caret-square-o-left:before { - content: "\f191"; -} -.fa-dot-circle-o:before { - content: "\f192"; -} -.fa-wheelchair:before { - content: "\f193"; -} -.fa-vimeo-square:before { - content: "\f194"; -} -.fa-turkish-lira:before, -.fa-try:before { - content: "\f195"; -} -.fa-plus-square-o:before { - content: "\f196"; -} -.fa-space-shuttle:before { - content: "\f197"; -} -.fa-slack:before { - content: "\f198"; -} -.fa-envelope-square:before { - content: "\f199"; -} -.fa-wordpress:before { - content: "\f19a"; -} -.fa-openid:before { - content: "\f19b"; -} -.fa-institution:before, -.fa-bank:before, -.fa-university:before { - content: "\f19c"; -} -.fa-mortar-board:before, -.fa-graduation-cap:before { - content: "\f19d"; -} -.fa-yahoo:before { - content: "\f19e"; -} -.fa-google:before { - content: "\f1a0"; -} -.fa-reddit:before { - content: "\f1a1"; -} -.fa-reddit-square:before { - content: "\f1a2"; -} -.fa-stumbleupon-circle:before { - content: "\f1a3"; -} -.fa-stumbleupon:before { - content: "\f1a4"; -} -.fa-delicious:before { - content: "\f1a5"; -} -.fa-digg:before { - content: "\f1a6"; -} -.fa-pied-piper:before { - content: "\f1a7"; -} -.fa-pied-piper-alt:before { - content: "\f1a8"; -} -.fa-drupal:before { - content: "\f1a9"; -} -.fa-joomla:before { - content: "\f1aa"; -} -.fa-language:before { - content: "\f1ab"; -} -.fa-fax:before { - content: "\f1ac"; -} -.fa-building:before { - content: "\f1ad"; -} -.fa-child:before { - content: "\f1ae"; -} -.fa-paw:before { - content: "\f1b0"; -} -.fa-spoon:before { - content: "\f1b1"; -} -.fa-cube:before { - content: "\f1b2"; -} -.fa-cubes:before { - content: "\f1b3"; -} -.fa-behance:before { - content: "\f1b4"; -} -.fa-behance-square:before { - content: "\f1b5"; -} -.fa-steam:before { - content: "\f1b6"; -} -.fa-steam-square:before { - content: "\f1b7"; -} -.fa-recycle:before { - content: "\f1b8"; -} -.fa-automobile:before, -.fa-car:before { - content: "\f1b9"; -} -.fa-cab:before, -.fa-taxi:before { - content: "\f1ba"; -} -.fa-tree:before { - content: "\f1bb"; -} -.fa-spotify:before { - content: "\f1bc"; -} -.fa-deviantart:before { - content: "\f1bd"; -} -.fa-soundcloud:before { - content: "\f1be"; -} -.fa-database:before { - content: "\f1c0"; -} -.fa-file-pdf-o:before { - content: "\f1c1"; -} -.fa-file-word-o:before { - content: "\f1c2"; -} -.fa-file-excel-o:before { - content: "\f1c3"; -} -.fa-file-powerpoint-o:before { - content: "\f1c4"; -} -.fa-file-photo-o:before, -.fa-file-picture-o:before, -.fa-file-image-o:before { - content: "\f1c5"; -} -.fa-file-zip-o:before, -.fa-file-archive-o:before { - content: "\f1c6"; -} -.fa-file-sound-o:before, -.fa-file-audio-o:before { - content: "\f1c7"; -} -.fa-file-movie-o:before, -.fa-file-video-o:before { - content: "\f1c8"; -} -.fa-file-code-o:before { - content: "\f1c9"; -} -.fa-vine:before { - content: "\f1ca"; -} -.fa-codepen:before { - content: "\f1cb"; -} -.fa-jsfiddle:before { - content: "\f1cc"; -} -.fa-life-bouy:before, -.fa-life-buoy:before, -.fa-life-saver:before, -.fa-support:before, -.fa-life-ring:before { - content: "\f1cd"; -} -.fa-circle-o-notch:before { - content: "\f1ce"; -} -.fa-ra:before, -.fa-rebel:before { - content: "\f1d0"; -} -.fa-ge:before, -.fa-empire:before { - content: "\f1d1"; -} -.fa-git-square:before { - content: "\f1d2"; -} -.fa-git:before { - content: "\f1d3"; -} -.fa-y-combinator-square:before, -.fa-yc-square:before, -.fa-hacker-news:before { - content: "\f1d4"; -} -.fa-tencent-weibo:before { - content: "\f1d5"; -} -.fa-qq:before { - content: "\f1d6"; -} -.fa-wechat:before, -.fa-weixin:before { - content: "\f1d7"; -} -.fa-send:before, -.fa-paper-plane:before { - content: "\f1d8"; -} -.fa-send-o:before, -.fa-paper-plane-o:before { - content: "\f1d9"; -} -.fa-history:before { - content: "\f1da"; -} -.fa-circle-thin:before { - content: "\f1db"; -} -.fa-header:before { - content: "\f1dc"; -} -.fa-paragraph:before { - content: "\f1dd"; -} -.fa-sliders:before { - content: "\f1de"; -} -.fa-share-alt:before { - content: "\f1e0"; -} -.fa-share-alt-square:before { - content: "\f1e1"; -} -.fa-bomb:before { - content: "\f1e2"; -} -.fa-soccer-ball-o:before, -.fa-futbol-o:before { - content: "\f1e3"; -} -.fa-tty:before { - content: "\f1e4"; -} -.fa-binoculars:before { - content: "\f1e5"; -} -.fa-plug:before { - content: "\f1e6"; -} -.fa-slideshare:before { - content: "\f1e7"; -} -.fa-twitch:before { - content: "\f1e8"; -} -.fa-yelp:before { - content: "\f1e9"; -} -.fa-newspaper-o:before { - content: "\f1ea"; -} -.fa-wifi:before { - content: "\f1eb"; -} -.fa-calculator:before { - content: "\f1ec"; -} -.fa-paypal:before { - content: "\f1ed"; -} -.fa-google-wallet:before { - content: "\f1ee"; -} -.fa-cc-visa:before { - content: "\f1f0"; -} -.fa-cc-mastercard:before { - content: "\f1f1"; -} -.fa-cc-discover:before { - content: "\f1f2"; -} -.fa-cc-amex:before { - content: "\f1f3"; -} -.fa-cc-paypal:before { - content: "\f1f4"; -} -.fa-cc-stripe:before { - content: "\f1f5"; -} -.fa-bell-slash:before { - content: "\f1f6"; -} -.fa-bell-slash-o:before { - content: "\f1f7"; -} -.fa-trash:before { - content: "\f1f8"; -} -.fa-copyright:before { - content: "\f1f9"; -} -.fa-at:before { - content: "\f1fa"; -} -.fa-eyedropper:before { - content: "\f1fb"; -} -.fa-paint-brush:before { - content: "\f1fc"; -} -.fa-birthday-cake:before { - content: "\f1fd"; -} -.fa-area-chart:before { - content: "\f1fe"; -} -.fa-pie-chart:before { - content: "\f200"; -} -.fa-line-chart:before { - content: "\f201"; -} -.fa-lastfm:before { - content: "\f202"; -} -.fa-lastfm-square:before { - content: "\f203"; -} -.fa-toggle-off:before { - content: "\f204"; -} -.fa-toggle-on:before { - content: "\f205"; -} -.fa-bicycle:before { - content: "\f206"; -} -.fa-bus:before { - content: "\f207"; -} -.fa-ioxhost:before { - content: "\f208"; -} -.fa-angellist:before { - content: "\f209"; -} -.fa-cc:before { - content: "\f20a"; -} -.fa-shekel:before, -.fa-sheqel:before, -.fa-ils:before { - content: "\f20b"; -} -.fa-meanpath:before { - content: "\f20c"; -} -.fa-buysellads:before { - content: "\f20d"; -} -.fa-connectdevelop:before { - content: "\f20e"; -} -.fa-dashcube:before { - content: "\f210"; -} -.fa-forumbee:before { - content: "\f211"; -} -.fa-leanpub:before { - content: "\f212"; -} -.fa-sellsy:before { - content: "\f213"; -} -.fa-shirtsinbulk:before { - content: "\f214"; -} -.fa-simplybuilt:before { - content: "\f215"; -} -.fa-skyatlas:before { - content: "\f216"; -} -.fa-cart-plus:before { - content: "\f217"; -} -.fa-cart-arrow-down:before { - content: "\f218"; -} -.fa-diamond:before { - content: "\f219"; -} -.fa-ship:before { - content: "\f21a"; -} -.fa-user-secret:before { - content: "\f21b"; -} -.fa-motorcycle:before { - content: "\f21c"; -} -.fa-street-view:before { - content: "\f21d"; -} -.fa-heartbeat:before { - content: "\f21e"; -} -.fa-venus:before { - content: "\f221"; -} -.fa-mars:before { - content: "\f222"; -} -.fa-mercury:before { - content: "\f223"; -} -.fa-intersex:before, -.fa-transgender:before { - content: "\f224"; -} -.fa-transgender-alt:before { - content: "\f225"; -} -.fa-venus-double:before { - content: "\f226"; -} -.fa-mars-double:before { - content: "\f227"; -} -.fa-venus-mars:before { - content: "\f228"; -} -.fa-mars-stroke:before { - content: "\f229"; -} -.fa-mars-stroke-v:before { - content: "\f22a"; -} -.fa-mars-stroke-h:before { - content: "\f22b"; -} -.fa-neuter:before { - content: "\f22c"; -} -.fa-genderless:before { - content: "\f22d"; -} -.fa-facebook-official:before { - content: "\f230"; -} -.fa-pinterest-p:before { - content: "\f231"; -} -.fa-whatsapp:before { - content: "\f232"; -} -.fa-server:before { - content: "\f233"; -} -.fa-user-plus:before { - content: "\f234"; -} -.fa-user-times:before { - content: "\f235"; -} -.fa-hotel:before, -.fa-bed:before { - content: "\f236"; -} -.fa-viacoin:before { - content: "\f237"; -} -.fa-train:before { - content: "\f238"; -} -.fa-subway:before { - content: "\f239"; -} -.fa-medium:before { - content: "\f23a"; -} -.fa-yc:before, -.fa-y-combinator:before { - content: "\f23b"; -} -.fa-optin-monster:before { - content: "\f23c"; -} -.fa-opencart:before { - content: "\f23d"; -} -.fa-expeditedssl:before { - content: "\f23e"; -} -.fa-battery-4:before, -.fa-battery-full:before { - content: "\f240"; -} -.fa-battery-3:before, -.fa-battery-three-quarters:before { - content: "\f241"; -} -.fa-battery-2:before, -.fa-battery-half:before { - content: "\f242"; -} -.fa-battery-1:before, -.fa-battery-quarter:before { - content: "\f243"; -} -.fa-battery-0:before, -.fa-battery-empty:before { - content: "\f244"; -} -.fa-mouse-pointer:before { - content: "\f245"; -} -.fa-i-cursor:before { - content: "\f246"; -} -.fa-object-group:before { - content: "\f247"; -} -.fa-object-ungroup:before { - content: "\f248"; -} -.fa-sticky-note:before { - content: "\f249"; -} -.fa-sticky-note-o:before { - content: "\f24a"; -} -.fa-cc-jcb:before { - content: "\f24b"; -} -.fa-cc-diners-club:before { - content: "\f24c"; -} -.fa-clone:before { - content: "\f24d"; -} -.fa-balance-scale:before { - content: "\f24e"; -} -.fa-hourglass-o:before { - content: "\f250"; -} -.fa-hourglass-1:before, -.fa-hourglass-start:before { - content: "\f251"; -} -.fa-hourglass-2:before, -.fa-hourglass-half:before { - content: "\f252"; -} -.fa-hourglass-3:before, -.fa-hourglass-end:before { - content: "\f253"; -} -.fa-hourglass:before { - content: "\f254"; -} -.fa-hand-grab-o:before, -.fa-hand-rock-o:before { - content: "\f255"; -} -.fa-hand-stop-o:before, -.fa-hand-paper-o:before { - content: "\f256"; -} -.fa-hand-scissors-o:before { - content: "\f257"; -} -.fa-hand-lizard-o:before { - content: "\f258"; -} -.fa-hand-spock-o:before { - content: "\f259"; -} -.fa-hand-pointer-o:before { - content: "\f25a"; -} -.fa-hand-peace-o:before { - content: "\f25b"; -} -.fa-trademark:before { - content: "\f25c"; -} -.fa-registered:before { - content: "\f25d"; -} -.fa-creative-commons:before { - content: "\f25e"; -} -.fa-gg:before { - content: "\f260"; -} -.fa-gg-circle:before { - content: "\f261"; -} -.fa-tripadvisor:before { - content: "\f262"; -} -.fa-odnoklassniki:before { - content: "\f263"; -} -.fa-odnoklassniki-square:before { - content: "\f264"; -} -.fa-get-pocket:before { - content: "\f265"; -} -.fa-wikipedia-w:before { - content: "\f266"; -} -.fa-safari:before { - content: "\f267"; -} -.fa-chrome:before { - content: "\f268"; -} -.fa-firefox:before { - content: "\f269"; -} -.fa-opera:before { - content: "\f26a"; -} -.fa-internet-explorer:before { - content: "\f26b"; -} -.fa-tv:before, -.fa-television:before { - content: "\f26c"; -} -.fa-contao:before { - content: "\f26d"; -} -.fa-500px:before { - content: "\f26e"; -} -.fa-amazon:before { - content: "\f270"; -} -.fa-calendar-plus-o:before { - content: "\f271"; -} -.fa-calendar-minus-o:before { - content: "\f272"; -} -.fa-calendar-times-o:before { - content: "\f273"; -} -.fa-calendar-check-o:before { - content: "\f274"; -} -.fa-industry:before { - content: "\f275"; -} -.fa-map-pin:before { - content: "\f276"; -} -.fa-map-signs:before { - content: "\f277"; -} -.fa-map-o:before { - content: "\f278"; -} -.fa-map:before { - content: "\f279"; -} -.fa-commenting:before { - content: "\f27a"; -} -.fa-commenting-o:before { - content: "\f27b"; -} -.fa-houzz:before { - content: "\f27c"; -} -.fa-vimeo:before { - content: "\f27d"; -} -.fa-black-tie:before { - content: "\f27e"; -} -.fa-fonticons:before { - content: "\f280"; -} -.fa-reddit-alien:before { - content: "\f281"; -} -.fa-edge:before { - content: "\f282"; -} -.fa-credit-card-alt:before { - content: "\f283"; -} -.fa-codiepie:before { - content: "\f284"; -} -.fa-modx:before { - content: "\f285"; -} -.fa-fort-awesome:before { - content: "\f286"; -} -.fa-usb:before { - content: "\f287"; -} -.fa-product-hunt:before { - content: "\f288"; -} -.fa-mixcloud:before { - content: "\f289"; -} -.fa-scribd:before { - content: "\f28a"; -} -.fa-pause-circle:before { - content: "\f28b"; -} -.fa-pause-circle-o:before { - content: "\f28c"; -} -.fa-stop-circle:before { - content: "\f28d"; -} -.fa-stop-circle-o:before { - content: "\f28e"; -} -.fa-shopping-bag:before { - content: "\f290"; -} -.fa-shopping-basket:before { - content: "\f291"; -} -.fa-hashtag:before { - content: "\f292"; -} -.fa-bluetooth:before { - content: "\f293"; -} -.fa-bluetooth-b:before { - content: "\f294"; -} -.fa-percent:before { - content: "\f295"; -} diff --git a/inc/css/font-awesome.min.css b/inc/css/font-awesome.min.css deleted file mode 100644 index d0603cb..0000000 --- a/inc/css/font-awesome.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"} diff --git a/inc/css/font-awsome.css b/inc/css/font-awsome.css deleted file mode 100644 index 053f637..0000000 --- a/inc/css/font-awsome.css +++ /dev/null @@ -1,2641 +0,0 @@ -/*! - * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ - -@font-face { - font-family: 'FontAwesome'; - src: url('../fonts/fontawesome-webfont.eot?v=4.4.0'); - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg'); - font-weight: normal; - font-style: normal -} - -.fa { - display: inline-block; - font: normal normal normal 14px/1 FontAwesome; - font-size: inherit; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale -} - -.fa-lg { - font-size: 1.33333333em; - line-height: .75em; - vertical-align: -15% -} - -.fa-2x { - font-size: 2em -} - -.fa-3x { - font-size: 3em -} - -.fa-4x { - font-size: 4em -} - -.fa-5x { - font-size: 5em -} - -.fa-fw { - width: 1.28571429em; - text-align: center -} - -.fa-ul { - padding-left: 0; - margin-left: 2.14285714em; - list-style-type: none -} - -.fa-ul>li { - position: relative -} - -.fa-li { - position: absolute; - left: -2.14285714em; - width: 2.14285714em; - top: .14285714em; - text-align: center -} - -.fa-li.fa-lg { - left: -1.85714286em -} - -.fa-border { - padding: .2em .25em .15em; - border: solid .08em #eee; - border-radius: .1em -} - -.fa-pull-left { - float: left -} - -.fa-pull-right { - float: right -} - -.fa.fa-pull-left { - margin-right: .3em -} - -.fa.fa-pull-right { - margin-left: .3em -} - -.pull-right { - float: right -} - -.pull-left { - float: left -} - -.fa.pull-left { - margin-right: .3em -} - -.fa.pull-right { - margin-left: .3em -} - -.fa-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear -} - -.fa-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8) -} - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg) - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg) - } -} - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg) - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg) - } -} - -.fa-rotate-90 { - filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1); - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg) -} - -.fa-rotate-180 { - filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2); - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg) -} - -.fa-rotate-270 { - filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3); - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg) -} - -.fa-flip-horizontal { - filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); - -webkit-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - transform: scale(-1, 1) -} - -.fa-flip-vertical { - filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); - -webkit-transform: scale(1, -1); - -ms-transform: scale(1, -1); - transform: scale(1, -1) -} - -:root .fa-rotate-90, -:root .fa-rotate-180, -:root .fa-rotate-270, -:root .fa-flip-horizontal, -:root .fa-flip-vertical { - filter: none -} - -.fa-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle -} - -.fa-stack-1x, -.fa-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center -} - -.fa-stack-1x { - line-height: inherit -} - -.fa-stack-2x { - font-size: 2em -} - -.fa-inverse { - color: #fff -} - -.fa-glass:before { - content: "\f000" -} - -.fa-music:before { - content: "\f001" -} - -.fa-search:before { - content: "\f002" -} - -.fa-envelope-o:before { - content: "\f003" -} - -.fa-heart:before { - content: "\f004" -} - -.fa-star:before { - content: "\f005" -} - -.fa-star-o:before { - content: "\f006" -} - -.fa-user:before { - content: "\f007" -} - -.fa-film:before { - content: "\f008" -} - -.fa-th-large:before { - content: "\f009" -} - -.fa-th:before { - content: "\f00a" -} - -.fa-th-list:before { - content: "\f00b" -} - -.fa-check:before { - content: "\f00c" -} - -.fa-remove:before, -.fa-close:before, -.fa-times:before { - content: "\f00d" -} - -.fa-search-plus:before { - content: "\f00e" -} - -.fa-search-minus:before { - content: "\f010" -} - -.fa-power-off:before { - content: "\f011" -} - -.fa-signal:before { - content: "\f012" -} - -.fa-gear:before, -.fa-cog:before { - content: "\f013" -} - -.fa-trash-o:before { - content: "\f014" -} - -.fa-home:before { - content: "\f015" -} - -.fa-file-o:before { - content: "\f016" -} - -.fa-clock-o:before { - content: "\f017" -} - -.fa-road:before { - content: "\f018" -} - -.fa-download:before { - content: "\f019" -} - -.fa-arrow-circle-o-down:before { - content: "\f01a" -} - -.fa-arrow-circle-o-up:before { - content: "\f01b" -} - -.fa-inbox:before { - content: "\f01c" -} - -.fa-play-circle-o:before { - content: "\f01d" -} - -.fa-rotate-right:before, -.fa-repeat:before { - content: "\f01e" -} - -.fa-refresh:before { - content: "\f021" -} - -.fa-list-alt:before { - content: "\f022" -} - -.fa-lock:before { - content: "\f023" -} - -.fa-flag:before { - content: "\f024" -} - -.fa-headphones:before { - content: "\f025" -} - -.fa-volume-off:before { - content: "\f026" -} - -.fa-volume-down:before { - content: "\f027" -} - -.fa-volume-up:before { - content: "\f028" -} - -.fa-qrcode:before { - content: "\f029" -} - -.fa-barcode:before { - content: "\f02a" -} - -.fa-tag:before { - content: "\f02b" -} - -.fa-tags:before { - content: "\f02c" -} - -.fa-book:before { - content: "\f02d" -} - -.fa-bookmark:before { - content: "\f02e" -} - -.fa-print:before { - content: "\f02f" -} - -.fa-camera:before { - content: "\f030" -} - -.fa-font:before { - content: "\f031" -} - -.fa-bold:before { - content: "\f032" -} - -.fa-italic:before { - content: "\f033" -} - -.fa-text-height:before { - content: "\f034" -} - -.fa-text-width:before { - content: "\f035" -} - -.fa-align-left:before { - content: "\f036" -} - -.fa-align-center:before { - content: "\f037" -} - -.fa-align-right:before { - content: "\f038" -} - -.fa-align-justify:before { - content: "\f039" -} - -.fa-list:before { - content: "\f03a" -} - -.fa-dedent:before, -.fa-outdent:before { - content: "\f03b" -} - -.fa-indent:before { - content: "\f03c" -} - -.fa-video-camera:before { - content: "\f03d" -} - -.fa-photo:before, -.fa-image:before, -.fa-picture-o:before { - content: "\f03e" -} - -.fa-pencil:before { - content: "\f040" -} - -.fa-map-marker:before { - content: "\f041" -} - -.fa-adjust:before { - content: "\f042" -} - -.fa-tint:before { - content: "\f043" -} - -.fa-edit:before, -.fa-pencil-square-o:before { - content: "\f044" -} - -.fa-share-square-o:before { - content: "\f045" -} - -.fa-check-square-o:before { - content: "\f046" -} - -.fa-arrows:before { - content: "\f047" -} - -.fa-step-backward:before { - content: "\f048" -} - -.fa-fast-backward:before { - content: "\f049" -} - -.fa-backward:before { - content: "\f04a" -} - -.fa-play:before { - content: "\f04b" -} - -.fa-pause:before { - content: "\f04c" -} - -.fa-stop:before { - content: "\f04d" -} - -.fa-forward:before { - content: "\f04e" -} - -.fa-fast-forward:before { - content: "\f050" -} - -.fa-step-forward:before { - content: "\f051" -} - -.fa-eject:before { - content: "\f052" -} - -.fa-chevron-left:before { - content: "\f053" -} - -.fa-chevron-right:before { - content: "\f054" -} - -.fa-plus-circle:before { - content: "\f055" -} - -.fa-minus-circle:before { - content: "\f056" -} - -.fa-times-circle:before { - content: "\f057" -} - -.fa-check-circle:before { - content: "\f058" -} - -.fa-question-circle:before { - content: "\f059" -} - -.fa-info-circle:before { - content: "\f05a" -} - -.fa-crosshairs:before { - content: "\f05b" -} - -.fa-times-circle-o:before { - content: "\f05c" -} - -.fa-check-circle-o:before { - content: "\f05d" -} - -.fa-ban:before { - content: "\f05e" -} - -.fa-arrow-left:before { - content: "\f060" -} - -.fa-arrow-right:before { - content: "\f061" -} - -.fa-arrow-up:before { - content: "\f062" -} - -.fa-arrow-down:before { - content: "\f063" -} - -.fa-mail-forward:before, -.fa-share:before { - content: "\f064" -} - -.fa-expand:before { - content: "\f065" -} - -.fa-compress:before { - content: "\f066" -} - -.fa-plus:before { - content: "\f067" -} - -.fa-minus:before { - content: "\f068" -} - -.fa-asterisk:before { - content: "\f069" -} - -.fa-exclamation-circle:before { - content: "\f06a" -} - -.fa-gift:before { - content: "\f06b" -} - -.fa-leaf:before { - content: "\f06c" -} - -.fa-fire:before { - content: "\f06d" -} - -.fa-eye:before { - content: "\f06e" -} - -.fa-eye-slash:before { - content: "\f070" -} - -.fa-warning:before, -.fa-exclamation-triangle:before { - content: "\f071" -} - -.fa-plane:before { - content: "\f072" -} - -.fa-calendar:before { - content: "\f073" -} - -.fa-random:before { - content: "\f074" -} - -.fa-comment:before { - content: "\f075" -} - -.fa-magnet:before { - content: "\f076" -} - -.fa-chevron-up:before { - content: "\f077" -} - -.fa-chevron-down:before { - content: "\f078" -} - -.fa-retweet:before { - content: "\f079" -} - -.fa-shopping-cart:before { - content: "\f07a" -} - -.fa-folder:before { - content: "\f07b" -} - -.fa-folder-open:before { - content: "\f07c" -} - -.fa-arrows-v:before { - content: "\f07d" -} - -.fa-arrows-h:before { - content: "\f07e" -} - -.fa-bar-chart-o:before, -.fa-bar-chart:before { - content: "\f080" -} - -.fa-twitter-square:before { - content: "\f081" -} - -.fa-facebook-square:before { - content: "\f082" -} - -.fa-camera-retro:before { - content: "\f083" -} - -.fa-key:before { - content: "\f084" -} - -.fa-gears:before, -.fa-cogs:before { - content: "\f085" -} - -.fa-comments:before { - content: "\f086" -} - -.fa-thumbs-o-up:before { - content: "\f087" -} - -.fa-thumbs-o-down:before { - content: "\f088" -} - -.fa-star-half:before { - content: "\f089" -} - -.fa-heart-o:before { - content: "\f08a" -} - -.fa-sign-out:before { - content: "\f08b" -} - -.fa-linkedin-square:before { - content: "\f08c" -} - -.fa-thumb-tack:before { - content: "\f08d" -} - -.fa-external-link:before { - content: "\f08e" -} - -.fa-sign-in:before { - content: "\f090" -} - -.fa-trophy:before { - content: "\f091" -} - -.fa-github-square:before { - content: "\f092" -} - -.fa-upload:before { - content: "\f093" -} - -.fa-lemon-o:before { - content: "\f094" -} - -.fa-phone:before { - content: "\f095" -} - -.fa-square-o:before { - content: "\f096" -} - -.fa-bookmark-o:before { - content: "\f097" -} - -.fa-phone-square:before { - content: "\f098" -} - -.fa-twitter:before { - content: "\f099" -} - -.fa-facebook-f:before, -.fa-facebook:before { - content: "\f09a" -} - -.fa-github:before { - content: "\f09b" -} - -.fa-unlock:before { - content: "\f09c" -} - -.fa-credit-card:before { - content: "\f09d" -} - -.fa-feed:before, -.fa-rss:before { - content: "\f09e" -} - -.fa-hdd-o:before { - content: "\f0a0" -} - -.fa-bullhorn:before { - content: "\f0a1" -} - -.fa-bell:before { - content: "\f0f3" -} - -.fa-certificate:before { - content: "\f0a3" -} - -.fa-hand-o-right:before { - content: "\f0a4" -} - -.fa-hand-o-left:before { - content: "\f0a5" -} - -.fa-hand-o-up:before { - content: "\f0a6" -} - -.fa-hand-o-down:before { - content: "\f0a7" -} - -.fa-arrow-circle-left:before { - content: "\f0a8" -} - -.fa-arrow-circle-right:before { - content: "\f0a9" -} - -.fa-arrow-circle-up:before { - content: "\f0aa" -} - -.fa-arrow-circle-down:before { - content: "\f0ab" -} - -.fa-globe:before { - content: "\f0ac" -} - -.fa-wrench:before { - content: "\f0ad" -} - -.fa-tasks:before { - content: "\f0ae" -} - -.fa-filter:before { - content: "\f0b0" -} - -.fa-briefcase:before { - content: "\f0b1" -} - -.fa-arrows-alt:before { - content: "\f0b2" -} - -.fa-group:before, -.fa-users:before { - content: "\f0c0" -} - -.fa-chain:before, -.fa-link:before { - content: "\f0c1" -} - -.fa-cloud:before { - content: "\f0c2" -} - -.fa-flask:before { - content: "\f0c3" -} - -.fa-cut:before, -.fa-scissors:before { - content: "\f0c4" -} - -.fa-copy:before, -.fa-files-o:before { - content: "\f0c5" -} - -.fa-paperclip:before { - content: "\f0c6" -} - -.fa-save:before, -.fa-floppy-o:before { - content: "\f0c7" -} - -.fa-square:before { - content: "\f0c8" -} - -.fa-navicon:before, -.fa-reorder:before, -.fa-bars:before { - content: "\f0c9" -} - -.fa-list-ul:before { - content: "\f0ca" -} - -.fa-list-ol:before { - content: "\f0cb" -} - -.fa-strikethrough:before { - content: "\f0cc" -} - -.fa-underline:before { - content: "\f0cd" -} - -.fa-table:before { - content: "\f0ce" -} - -.fa-magic:before { - content: "\f0d0" -} - -.fa-truck:before { - content: "\f0d1" -} - -.fa-pinterest:before { - content: "\f0d2" -} - -.fa-pinterest-square:before { - content: "\f0d3" -} - -.fa-google-plus-square:before { - content: "\f0d4" -} - -.fa-google-plus:before { - content: "\f0d5" -} - -.fa-money:before { - content: "\f0d6" -} - -.fa-caret-down:before { - content: "\f0d7" -} - -.fa-caret-up:before { - content: "\f0d8" -} - -.fa-caret-left:before { - content: "\f0d9" -} - -.fa-caret-right:before { - content: "\f0da" -} - -.fa-columns:before { - content: "\f0db" -} - -.fa-unsorted:before, -.fa-sort:before { - content: "\f0dc" -} - -.fa-sort-down:before, -.fa-sort-desc:before { - content: "\f0dd" -} - -.fa-sort-up:before, -.fa-sort-asc:before { - content: "\f0de" -} - -.fa-envelope:before { - content: "\f0e0" -} - -.fa-linkedin:before { - content: "\f0e1" -} - -.fa-rotate-left:before, -.fa-undo:before { - content: "\f0e2" -} - -.fa-legal:before, -.fa-gavel:before { - content: "\f0e3" -} - -.fa-dashboard:before, -.fa-tachometer:before { - content: "\f0e4" -} - -.fa-comment-o:before { - content: "\f0e5" -} - -.fa-comments-o:before { - content: "\f0e6" -} - -.fa-flash:before, -.fa-bolt:before { - content: "\f0e7" -} - -.fa-sitemap:before { - content: "\f0e8" -} - -.fa-umbrella:before { - content: "\f0e9" -} - -.fa-paste:before, -.fa-clipboard:before { - content: "\f0ea" -} - -.fa-lightbulb-o:before { - content: "\f0eb" -} - -.fa-exchange:before { - content: "\f0ec" -} - -.fa-cloud-download:before { - content: "\f0ed" -} - -.fa-cloud-upload:before { - content: "\f0ee" -} - -.fa-user-md:before { - content: "\f0f0" -} - -.fa-stethoscope:before { - content: "\f0f1" -} - -.fa-suitcase:before { - content: "\f0f2" -} - -.fa-bell-o:before { - content: "\f0a2" -} - -.fa-coffee:before { - content: "\f0f4" -} - -.fa-cutlery:before { - content: "\f0f5" -} - -.fa-file-text-o:before { - content: "\f0f6" -} - -.fa-building-o:before { - content: "\f0f7" -} - -.fa-hospital-o:before { - content: "\f0f8" -} - -.fa-ambulance:before { - content: "\f0f9" -} - -.fa-medkit:before { - content: "\f0fa" -} - -.fa-fighter-jet:before { - content: "\f0fb" -} - -.fa-beer:before { - content: "\f0fc" -} - -.fa-h-square:before { - content: "\f0fd" -} - -.fa-plus-square:before { - content: "\f0fe" -} - -.fa-angle-double-left:before { - content: "\f100" -} - -.fa-angle-double-right:before { - content: "\f101" -} - -.fa-angle-double-up:before { - content: "\f102" -} - -.fa-angle-double-down:before { - content: "\f103" -} - -.fa-angle-left:before { - content: "\f104" -} - -.fa-angle-right:before { - content: "\f105" -} - -.fa-angle-up:before { - content: "\f106" -} - -.fa-angle-down:before { - content: "\f107" -} - -.fa-desktop:before { - content: "\f108" -} - -.fa-laptop:before { - content: "\f109" -} - -.fa-tablet:before { - content: "\f10a" -} - -.fa-mobile-phone:before, -.fa-mobile:before { - content: "\f10b" -} - -.fa-circle-o:before { - content: "\f10c" -} - -.fa-quote-left:before { - content: "\f10d" -} - -.fa-quote-right:before { - content: "\f10e" -} - -.fa-spinner:before { - content: "\f110" -} - -.fa-circle:before { - content: "\f111" -} - -.fa-mail-reply:before, -.fa-reply:before { - content: "\f112" -} - -.fa-github-alt:before { - content: "\f113" -} - -.fa-folder-o:before { - content: "\f114" -} - -.fa-folder-open-o:before { - content: "\f115" -} - -.fa-smile-o:before { - content: "\f118" -} - -.fa-frown-o:before { - content: "\f119" -} - -.fa-meh-o:before { - content: "\f11a" -} - -.fa-gamepad:before { - content: "\f11b" -} - -.fa-keyboard-o:before { - content: "\f11c" -} - -.fa-flag-o:before { - content: "\f11d" -} - -.fa-flag-checkered:before { - content: "\f11e" -} - -.fa-terminal:before { - content: "\f120" -} - -.fa-code:before { - content: "\f121" -} - -.fa-mail-reply-all:before, -.fa-reply-all:before { - content: "\f122" -} - -.fa-star-half-empty:before, -.fa-star-half-full:before, -.fa-star-half-o:before { - content: "\f123" -} - -.fa-location-arrow:before { - content: "\f124" -} - -.fa-crop:before { - content: "\f125" -} - -.fa-code-fork:before { - content: "\f126" -} - -.fa-unlink:before, -.fa-chain-broken:before { - content: "\f127" -} - -.fa-question:before { - content: "\f128" -} - -.fa-info:before { - content: "\f129" -} - -.fa-exclamation:before { - content: "\f12a" -} - -.fa-superscript:before { - content: "\f12b" -} - -.fa-subscript:before { - content: "\f12c" -} - -.fa-eraser:before { - content: "\f12d" -} - -.fa-puzzle-piece:before { - content: "\f12e" -} - -.fa-microphone:before { - content: "\f130" -} - -.fa-microphone-slash:before { - content: "\f131" -} - -.fa-shield:before { - content: "\f132" -} - -.fa-calendar-o:before { - content: "\f133" -} - -.fa-fire-extinguisher:before { - content: "\f134" -} - -.fa-rocket:before { - content: "\f135" -} - -.fa-maxcdn:before { - content: "\f136" -} - -.fa-chevron-circle-left:before { - content: "\f137" -} - -.fa-chevron-circle-right:before { - content: "\f138" -} - -.fa-chevron-circle-up:before { - content: "\f139" -} - -.fa-chevron-circle-down:before { - content: "\f13a" -} - -.fa-html5:before { - content: "\f13b" -} - -.fa-css3:before { - content: "\f13c" -} - -.fa-anchor:before { - content: "\f13d" -} - -.fa-unlock-alt:before { - content: "\f13e" -} - -.fa-bullseye:before { - content: "\f140" -} - -.fa-ellipsis-h:before { - content: "\f141" -} - -.fa-ellipsis-v:before { - content: "\f142" -} - -.fa-rss-square:before { - content: "\f143" -} - -.fa-play-circle:before { - content: "\f144" -} - -.fa-ticket:before { - content: "\f145" -} - -.fa-minus-square:before { - content: "\f146" -} - -.fa-minus-square-o:before { - content: "\f147" -} - -.fa-level-up:before { - content: "\f148" -} - -.fa-level-down:before { - content: "\f149" -} - -.fa-check-square:before { - content: "\f14a" -} - -.fa-pencil-square:before { - content: "\f14b" -} - -.fa-external-link-square:before { - content: "\f14c" -} - -.fa-share-square:before { - content: "\f14d" -} - -.fa-compass:before { - content: "\f14e" -} - -.fa-toggle-down:before, -.fa-caret-square-o-down:before { - content: "\f150" -} - -.fa-toggle-up:before, -.fa-caret-square-o-up:before { - content: "\f151" -} - -.fa-toggle-right:before, -.fa-caret-square-o-right:before { - content: "\f152" -} - -.fa-euro:before, -.fa-eur:before { - content: "\f153" -} - -.fa-gbp:before { - content: "\f154" -} - -.fa-dollar:before, -.fa-usd:before { - content: "\f155" -} - -.fa-rupee:before, -.fa-inr:before { - content: "\f156" -} - -.fa-cny:before, -.fa-rmb:before, -.fa-yen:before, -.fa-jpy:before { - content: "\f157" -} - -.fa-ruble:before, -.fa-rouble:before, -.fa-rub:before { - content: "\f158" -} - -.fa-won:before, -.fa-krw:before { - content: "\f159" -} - -.fa-bitcoin:before, -.fa-btc:before { - content: "\f15a" -} - -.fa-file:before { - content: "\f15b" -} - -.fa-file-text:before { - content: "\f15c" -} - -.fa-sort-alpha-asc:before { - content: "\f15d" -} - -.fa-sort-alpha-desc:before { - content: "\f15e" -} - -.fa-sort-amount-asc:before { - content: "\f160" -} - -.fa-sort-amount-desc:before { - content: "\f161" -} - -.fa-sort-numeric-asc:before { - content: "\f162" -} - -.fa-sort-numeric-desc:before { - content: "\f163" -} - -.fa-thumbs-up:before { - content: "\f164" -} - -.fa-thumbs-down:before { - content: "\f165" -} - -.fa-youtube-square:before { - content: "\f166" -} - -.fa-youtube:before { - content: "\f167" -} - -.fa-xing:before { - content: "\f168" -} - -.fa-xing-square:before { - content: "\f169" -} - -.fa-youtube-play:before { - content: "\f16a" -} - -.fa-dropbox:before { - content: "\f16b" -} - -.fa-stack-overflow:before { - content: "\f16c" -} - -.fa-instagram:before { - content: "\f16d" -} - -.fa-flickr:before { - content: "\f16e" -} - -.fa-adn:before { - content: "\f170" -} - -.fa-bitbucket:before { - content: "\f171" -} - -.fa-bitbucket-square:before { - content: "\f172" -} - -.fa-tumblr:before { - content: "\f173" -} - -.fa-tumblr-square:before { - content: "\f174" -} - -.fa-long-arrow-down:before { - content: "\f175" -} - -.fa-long-arrow-up:before { - content: "\f176" -} - -.fa-long-arrow-left:before { - content: "\f177" -} - -.fa-long-arrow-right:before { - content: "\f178" -} - -.fa-apple:before { - content: "\f179" -} - -.fa-windows:before { - content: "\f17a" -} - -.fa-android:before { - content: "\f17b" -} - -.fa-linux:before { - content: "\f17c" -} - -.fa-dribbble:before { - content: "\f17d" -} - -.fa-skype:before { - content: "\f17e" -} - -.fa-foursquare:before { - content: "\f180" -} - -.fa-trello:before { - content: "\f181" -} - -.fa-female:before { - content: "\f182" -} - -.fa-male:before { - content: "\f183" -} - -.fa-gittip:before, -.fa-gratipay:before { - content: "\f184" -} - -.fa-sun-o:before { - content: "\f185" -} - -.fa-moon-o:before { - content: "\f186" -} - -.fa-archive:before { - content: "\f187" -} - -.fa-bug:before { - content: "\f188" -} - -.fa-vk:before { - content: "\f189" -} - -.fa-weibo:before { - content: "\f18a" -} - -.fa-renren:before { - content: "\f18b" -} - -.fa-pagelines:before { - content: "\f18c" -} - -.fa-stack-exchange:before { - content: "\f18d" -} - -.fa-arrow-circle-o-right:before { - content: "\f18e" -} - -.fa-arrow-circle-o-left:before { - content: "\f190" -} - -.fa-toggle-left:before, -.fa-caret-square-o-left:before { - content: "\f191" -} - -.fa-dot-circle-o:before { - content: "\f192" -} - -.fa-wheelchair:before { - content: "\f193" -} - -.fa-vimeo-square:before { - content: "\f194" -} - -.fa-turkish-lira:before, -.fa-try:before { - content: "\f195" -} - -.fa-plus-square-o:before { - content: "\f196" -} - -.fa-space-shuttle:before { - content: "\f197" -} - -.fa-slack:before { - content: "\f198" -} - -.fa-envelope-square:before { - content: "\f199" -} - -.fa-wordpress:before { - content: "\f19a" -} - -.fa-openid:before { - content: "\f19b" -} - -.fa-institution:before, -.fa-bank:before, -.fa-university:before { - content: "\f19c" -} - -.fa-mortar-board:before, -.fa-graduation-cap:before { - content: "\f19d" -} - -.fa-yahoo:before { - content: "\f19e" -} - -.fa-google:before { - content: "\f1a0" -} - -.fa-reddit:before { - content: "\f1a1" -} - -.fa-reddit-square:before { - content: "\f1a2" -} - -.fa-stumbleupon-circle:before { - content: "\f1a3" -} - -.fa-stumbleupon:before { - content: "\f1a4" -} - -.fa-delicious:before { - content: "\f1a5" -} - -.fa-digg:before { - content: "\f1a6" -} - -.fa-pied-piper:before { - content: "\f1a7" -} - -.fa-pied-piper-alt:before { - content: "\f1a8" -} - -.fa-drupal:before { - content: "\f1a9" -} - -.fa-joomla:before { - content: "\f1aa" -} - -.fa-language:before { - content: "\f1ab" -} - -.fa-fax:before { - content: "\f1ac" -} - -.fa-building:before { - content: "\f1ad" -} - -.fa-child:before { - content: "\f1ae" -} - -.fa-paw:before { - content: "\f1b0" -} - -.fa-spoon:before { - content: "\f1b1" -} - -.fa-cube:before { - content: "\f1b2" -} - -.fa-cubes:before { - content: "\f1b3" -} - -.fa-behance:before { - content: "\f1b4" -} - -.fa-behance-square:before { - content: "\f1b5" -} - -.fa-steam:before { - content: "\f1b6" -} - -.fa-steam-square:before { - content: "\f1b7" -} - -.fa-recycle:before { - content: "\f1b8" -} - -.fa-automobile:before, -.fa-car:before { - content: "\f1b9" -} - -.fa-cab:before, -.fa-taxi:before { - content: "\f1ba" -} - -.fa-tree:before { - content: "\f1bb" -} - -.fa-spotify:before { - content: "\f1bc" -} - -.fa-deviantart:before { - content: "\f1bd" -} - -.fa-soundcloud:before { - content: "\f1be" -} - -.fa-database:before { - content: "\f1c0" -} - -.fa-file-pdf-o:before { - content: "\f1c1" -} - -.fa-file-word-o:before { - content: "\f1c2" -} - -.fa-file-excel-o:before { - content: "\f1c3" -} - -.fa-file-powerpoint-o:before { - content: "\f1c4" -} - -.fa-file-photo-o:before, -.fa-file-picture-o:before, -.fa-file-image-o:before { - content: "\f1c5" -} - -.fa-file-zip-o:before, -.fa-file-archive-o:before { - content: "\f1c6" -} - -.fa-file-sound-o:before, -.fa-file-audio-o:before { - content: "\f1c7" -} - -.fa-file-movie-o:before, -.fa-file-video-o:before { - content: "\f1c8" -} - -.fa-file-code-o:before { - content: "\f1c9" -} - -.fa-vine:before { - content: "\f1ca" -} - -.fa-codepen:before { - content: "\f1cb" -} - -.fa-jsfiddle:before { - content: "\f1cc" -} - -.fa-life-bouy:before, -.fa-life-buoy:before, -.fa-life-saver:before, -.fa-support:before, -.fa-life-ring:before { - content: "\f1cd" -} - -.fa-circle-o-notch:before { - content: "\f1ce" -} - -.fa-ra:before, -.fa-rebel:before { - content: "\f1d0" -} - -.fa-ge:before, -.fa-empire:before { - content: "\f1d1" -} - -.fa-git-square:before { - content: "\f1d2" -} - -.fa-git:before { - content: "\f1d3" -} - -.fa-y-combinator-square:before, -.fa-yc-square:before, -.fa-hacker-news:before { - content: "\f1d4" -} - -.fa-tencent-weibo:before { - content: "\f1d5" -} - -.fa-qq:before { - content: "\f1d6" -} - -.fa-wechat:before, -.fa-weixin:before { - content: "\f1d7" -} - -.fa-send:before, -.fa-paper-plane:before { - content: "\f1d8" -} - -.fa-send-o:before, -.fa-paper-plane-o:before { - content: "\f1d9" -} - -.fa-history:before { - content: "\f1da" -} - -.fa-circle-thin:before { - content: "\f1db" -} - -.fa-header:before { - content: "\f1dc" -} - -.fa-paragraph:before { - content: "\f1dd" -} - -.fa-sliders:before { - content: "\f1de" -} - -.fa-share-alt:before { - content: "\f1e0" -} - -.fa-share-alt-square:before { - content: "\f1e1" -} - -.fa-bomb:before { - content: "\f1e2" -} - -.fa-soccer-ball-o:before, -.fa-futbol-o:before { - content: "\f1e3" -} - -.fa-tty:before { - content: "\f1e4" -} - -.fa-binoculars:before { - content: "\f1e5" -} - -.fa-plug:before { - content: "\f1e6" -} - -.fa-slideshare:before { - content: "\f1e7" -} - -.fa-twitch:before { - content: "\f1e8" -} - -.fa-yelp:before { - content: "\f1e9" -} - -.fa-newspaper-o:before { - content: "\f1ea" -} - -.fa-wifi:before { - content: "\f1eb" -} - -.fa-calculator:before { - content: "\f1ec" -} - -.fa-paypal:before { - content: "\f1ed" -} - -.fa-google-wallet:before { - content: "\f1ee" -} - -.fa-cc-visa:before { - content: "\f1f0" -} - -.fa-cc-mastercard:before { - content: "\f1f1" -} - -.fa-cc-discover:before { - content: "\f1f2" -} - -.fa-cc-amex:before { - content: "\f1f3" -} - -.fa-cc-paypal:before { - content: "\f1f4" -} - -.fa-cc-stripe:before { - content: "\f1f5" -} - -.fa-bell-slash:before { - content: "\f1f6" -} - -.fa-bell-slash-o:before { - content: "\f1f7" -} - -.fa-trash:before { - content: "\f1f8" -} - -.fa-copyright:before { - content: "\f1f9" -} - -.fa-at:before { - content: "\f1fa" -} - -.fa-eyedropper:before { - content: "\f1fb" -} - -.fa-paint-brush:before { - content: "\f1fc" -} - -.fa-birthday-cake:before { - content: "\f1fd" -} - -.fa-area-chart:before { - content: "\f1fe" -} - -.fa-pie-chart:before { - content: "\f200" -} - -.fa-line-chart:before { - content: "\f201" -} - -.fa-lastfm:before { - content: "\f202" -} - -.fa-lastfm-square:before { - content: "\f203" -} - -.fa-toggle-off:before { - content: "\f204" -} - -.fa-toggle-on:before { - content: "\f205" -} - -.fa-bicycle:before { - content: "\f206" -} - -.fa-bus:before { - content: "\f207" -} - -.fa-ioxhost:before { - content: "\f208" -} - -.fa-angellist:before { - content: "\f209" -} - -.fa-cc:before { - content: "\f20a" -} - -.fa-shekel:before, -.fa-sheqel:before, -.fa-ils:before { - content: "\f20b" -} - -.fa-meanpath:before { - content: "\f20c" -} - -.fa-buysellads:before { - content: "\f20d" -} - -.fa-connectdevelop:before { - content: "\f20e" -} - -.fa-dashcube:before { - content: "\f210" -} - -.fa-forumbee:before { - content: "\f211" -} - -.fa-leanpub:before { - content: "\f212" -} - -.fa-sellsy:before { - content: "\f213" -} - -.fa-shirtsinbulk:before { - content: "\f214" -} - -.fa-simplybuilt:before { - content: "\f215" -} - -.fa-skyatlas:before { - content: "\f216" -} - -.fa-cart-plus:before { - content: "\f217" -} - -.fa-cart-arrow-down:before { - content: "\f218" -} - -.fa-diamond:before { - content: "\f219" -} - -.fa-ship:before { - content: "\f21a" -} - -.fa-user-secret:before { - content: "\f21b" -} - -.fa-motorcycle:before { - content: "\f21c" -} - -.fa-street-view:before { - content: "\f21d" -} - -.fa-heartbeat:before { - content: "\f21e" -} - -.fa-venus:before { - content: "\f221" -} - -.fa-mars:before { - content: "\f222" -} - -.fa-mercury:before { - content: "\f223" -} - -.fa-intersex:before, -.fa-transgender:before { - content: "\f224" -} - -.fa-transgender-alt:before { - content: "\f225" -} - -.fa-venus-double:before { - content: "\f226" -} - -.fa-mars-double:before { - content: "\f227" -} - -.fa-venus-mars:before { - content: "\f228" -} - -.fa-mars-stroke:before { - content: "\f229" -} - -.fa-mars-stroke-v:before { - content: "\f22a" -} - -.fa-mars-stroke-h:before { - content: "\f22b" -} - -.fa-neuter:before { - content: "\f22c" -} - -.fa-genderless:before { - content: "\f22d" -} - -.fa-facebook-official:before { - content: "\f230" -} - -.fa-pinterest-p:before { - content: "\f231" -} - -.fa-whatsapp:before { - content: "\f232" -} - -.fa-server:before { - content: "\f233" -} - -.fa-user-plus:before { - content: "\f234" -} - -.fa-user-times:before { - content: "\f235" -} - -.fa-hotel:before, -.fa-bed:before { - content: "\f236" -} - -.fa-viacoin:before { - content: "\f237" -} - -.fa-train:before { - content: "\f238" -} - -.fa-subway:before { - content: "\f239" -} - -.fa-medium:before { - content: "\f23a" -} - -.fa-yc:before, -.fa-y-combinator:before { - content: "\f23b" -} - -.fa-optin-monster:before { - content: "\f23c" -} - -.fa-opencart:before { - content: "\f23d" -} - -.fa-expeditedssl:before { - content: "\f23e" -} - -.fa-battery-4:before, -.fa-battery-full:before { - content: "\f240" -} - -.fa-battery-3:before, -.fa-battery-three-quarters:before { - content: "\f241" -} - -.fa-battery-2:before, -.fa-battery-half:before { - content: "\f242" -} - -.fa-battery-1:before, -.fa-battery-quarter:before { - content: "\f243" -} - -.fa-battery-0:before, -.fa-battery-empty:before { - content: "\f244" -} - -.fa-mouse-pointer:before { - content: "\f245" -} - -.fa-i-cursor:before { - content: "\f246" -} - -.fa-object-group:before { - content: "\f247" -} - -.fa-object-ungroup:before { - content: "\f248" -} - -.fa-sticky-note:before { - content: "\f249" -} - -.fa-sticky-note-o:before { - content: "\f24a" -} - -.fa-cc-jcb:before { - content: "\f24b" -} - -.fa-cc-diners-club:before { - content: "\f24c" -} - -.fa-clone:before { - content: "\f24d" -} - -.fa-balance-scale:before { - content: "\f24e" -} - -.fa-hourglass-o:before { - content: "\f250" -} - -.fa-hourglass-1:before, -.fa-hourglass-start:before { - content: "\f251" -} - -.fa-hourglass-2:before, -.fa-hourglass-half:before { - content: "\f252" -} - -.fa-hourglass-3:before, -.fa-hourglass-end:before { - content: "\f253" -} - -.fa-hourglass:before { - content: "\f254" -} - -.fa-hand-grab-o:before, -.fa-hand-rock-o:before { - content: "\f255" -} - -.fa-hand-stop-o:before, -.fa-hand-paper-o:before { - content: "\f256" -} - -.fa-hand-scissors-o:before { - content: "\f257" -} - -.fa-hand-lizard-o:before { - content: "\f258" -} - -.fa-hand-spock-o:before { - content: "\f259" -} - -.fa-hand-pointer-o:before { - content: "\f25a" -} - -.fa-hand-peace-o:before { - content: "\f25b" -} - -.fa-trademark:before { - content: "\f25c" -} - -.fa-registered:before { - content: "\f25d" -} - -.fa-creative-commons:before { - content: "\f25e" -} - -.fa-gg:before { - content: "\f260" -} - -.fa-gg-circle:before { - content: "\f261" -} - -.fa-tripadvisor:before { - content: "\f262" -} - -.fa-odnoklassniki:before { - content: "\f263" -} - -.fa-odnoklassniki-square:before { - content: "\f264" -} - -.fa-get-pocket:before { - content: "\f265" -} - -.fa-wikipedia-w:before { - content: "\f266" -} - -.fa-safari:before { - content: "\f267" -} - -.fa-chrome:before { - content: "\f268" -} - -.fa-firefox:before { - content: "\f269" -} - -.fa-opera:before { - content: "\f26a" -} - -.fa-internet-explorer:before { - content: "\f26b" -} - -.fa-tv:before, -.fa-television:before { - content: "\f26c" -} - -.fa-contao:before { - content: "\f26d" -} - -.fa-500px:before { - content: "\f26e" -} - -.fa-amazon:before { - content: "\f270" -} - -.fa-calendar-plus-o:before { - content: "\f271" -} - -.fa-calendar-minus-o:before { - content: "\f272" -} - -.fa-calendar-times-o:before { - content: "\f273" -} - -.fa-calendar-check-o:before { - content: "\f274" -} - -.fa-industry:before { - content: "\f275" -} - -.fa-map-pin:before { - content: "\f276" -} - -.fa-map-signs:before { - content: "\f277" -} - -.fa-map-o:before { - content: "\f278" -} - -.fa-map:before { - content: "\f279" -} - -.fa-commenting:before { - content: "\f27a" -} - -.fa-commenting-o:before { - content: "\f27b" -} - -.fa-houzz:before { - content: "\f27c" -} - -.fa-vimeo:before { - content: "\f27d" -} - -.fa-black-tie:before { - content: "\f27e" -} - -.fa-fonticons:before { - content: "\f280" -} \ No newline at end of file diff --git a/inc/css/glyph.bak/glyph.eot b/inc/css/glyph.bak/glyph.eot deleted file mode 100644 index 733439e..0000000 Binary files a/inc/css/glyph.bak/glyph.eot and /dev/null differ diff --git a/inc/css/glyph.bak/glyph.svg b/inc/css/glyph.bak/glyph.svg deleted file mode 100644 index 14c68a8..0000000 --- a/inc/css/glyph.bak/glyph.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - -Generated by IcoMoon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/inc/css/glyph.bak/glyph.ttf b/inc/css/glyph.bak/glyph.ttf deleted file mode 100644 index 6bca8bc..0000000 Binary files a/inc/css/glyph.bak/glyph.ttf and /dev/null differ diff --git a/inc/css/glyph.bak/glyph.woff b/inc/css/glyph.bak/glyph.woff deleted file mode 100644 index 13a0007..0000000 Binary files a/inc/css/glyph.bak/glyph.woff and /dev/null differ diff --git a/inc/css/glyph.css b/inc/css/glyph.css deleted file mode 100644 index 32329cb..0000000 --- a/inc/css/glyph.css +++ /dev/null @@ -1,136 +0,0 @@ -@font-face { - font-family: 'glyph'; - src:url('../fonts/glyph.eot'); - src:url('../fonts/glyph.eot#iefix') format('embedded-opentype'), - url('../fonts/glyph.ttf') format('truetype'), - url('../fonts/glyph.woff') format('woff'), - url('../fonts/glyph.svg#glyph') format('svg'); - font-weight: normal; - font-style: normal; -} - -[class^="glyph-"], [class*=" glyph-"] { - font-family: 'glyph'; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.glyph-favorite:before { - content: "\e900"; -} -.glyph-link:before { - content: "\6c"; -} -.glyph-share-diaspora:before { - content: "\2a"; -} -.glyph-share-facebook:before { - content: "\46"; -} -.glyph-share-gplus:before { - content: "\47"; -} -.glyph-share-reddit:before { - content: "\52"; -} -.glyph-share-twitter:before { - content: "\54"; -} -.glyph-share-ycombinator:before { - content: "\59"; -} -.glyph-view-catalog:before { - content: "\e908"; -} -.glyph-view-categories:before { - content: "\e909"; -} -.glyph-view-fullscreen:before { - content: "\e90a"; -} -.glyph-view-list-details:before { - content: "\e90b"; -} -.glyph-view-list-icons:before { - content: "\e90c"; -} -.glyph-view-list-text:before { - content: "\e90d"; -} -.glyph-view-list-tree:before { - content: "\e90e"; -} -.glyph-view-media-playlist:before { - content: "\e90f"; -} -.glyph-window-new:before { - content: "\57"; -} -.glyph-video:before { - content: "\56"; -} -.glyph-cancel:before { - content: "\5c"; -} -.glyph-check:before { - content: "\63"; -} -.glyph-close:before { - content: "\58"; -} -.glyph-logo-kde:before { - content: "\4b"; -} -.glyph-logo-plasma:before { - content: "\50"; -} -.glyph-logo-plasmamobile:before { - content: "\4d"; -} -.glyph-clear:before { - content: "\78"; -} -.glyph-go-down:before { - content: "\76"; -} -.glyph-go-home:before { - content: "\48"; -} -.glyph-go-next:before { - content: "\3e"; -} -.glyph-go-previous:before { - content: "\3c"; -} -.glyph-go-up:before { - content: "\5e"; -} -.glyph-hamburger:before { - content: "\3d"; -} -.glyph-info:before { - content: "\49"; -} -.glyph-new-window:before { - content: "\77"; -} -.glyph-search:before { - content: "\51"; -} -.glyph-settings:before { - content: "\53"; -} -.glyph-share:before { - content: "\73"; -} -.glyph-share-telegram:before { - content: "\2197"; -} diff --git a/inc/css/header.css b/inc/css/header.css deleted file mode 100644 index 0d58c63..0000000 --- a/inc/css/header.css +++ /dev/null @@ -1,391 +0,0 @@ - - -.hidden { - display: none !important; -} - -#primary-header { - font-family: 'Noto Sans', sans-serif; - font-size: 14px; - color: #31363b; - background-color: #FAFAFA; - background-clip: padding-box; - height: auto; - box-sizing: content-box; - border-bottom: solid 2px #1287de; - min-height: 50px; -} - -#primary-header > .container { - position: relative; -} - -#primary-header * { - float: none !important; -} - - -#primary-header .container > * { - height: 50px; - line-height: 50px; - vertical-align: top; - margin: 0px; -} - -#primary-header #header-nav, #primary-header #header-logo { - float: none !important; - display: inline-block; -} - -#primary-header h1 a::before { - font-family: 'glyph'; - font-size: 32px; - content: "K"; - text-indent: 0px; - position: absolute; - top: 0px; - left: 0px; - width: 100%; - text-align: center; - line-height: 50px; -} - -#primary-header h1 a { - text-indent: -9999px; - position: relative; - display: inline-block; - width: 60px; - height: 50px; - margin: 0px; - line-height: 50px; - outline: 0; -} - -#primary-header h1 a:hover { - background-color: #e7e5e5; -} - - -#primary-header h1 a:focus, #primary-header h1 a.active { - background-color: #1287de; - color: #FFF; -} - -#primary-header .dropdown-menu { - min-width: 320px; - box-shadow: 0px 1px 8px rgba(0,0,0,.1); - padding: 0px; - border: solid 1px rgba(0,0,0,.2) !important; - border-radius: 4px; - line-height: 100%; - background-color: #FAFAFA; - margin-top: 5px; -} - -#primary-header .dropdown-toggle { - padding-right: 40px; - position: relative; -} - -#primary-header a:after { - font-family: "glyph"; - font-weight: 400; - font-size: 16px; - margin-left: 10px; - position: relative; - display: inline-block; - top: .1ex; - transition: all .2s; - color: #7a747c; - text-decoration: none !important; - vertical-align: middle; -} - - -#primary-header .menu-item-type-custom > a:after { - content: "W"; -} - - -#primary-header .dropdown-toggle:after { - content: "v" !important; -} - - -#primary-header .menu { - margin: 0px; - padding: 0px; -} - - -#primary-header .menu li { - vertical-align: top; -} - - -#primary-header .menu > li a { - height: 50px; - display: inline-block; - padding: 0px 15px; - color: #343031; -} - -#primary-header .menu > li a:hover { - background-color: #e7e5e5; -} - - -#primary-header li.open > a, #primary-header li.active > a { - background-color: #1287de !important; - color: #FFF; -} - -#primary-header li.open > a:after, .current_page_item a:after, #primary-header li.active > a:after { - color: #FFF; -} - -#primary-header li.open > a:after { - transform: rotate(-180deg); - -moz-transform: rotate(-180deg); -} - - -#primary-header .dropdown li a { - margin: 0px; - width: 100%; - height: auto; - box-sizing: border-box; - padding: 10px 20px; - background-color: transparent; - border: none !important; -} - -#primary-header .dropdown li:last-child, #primary-header .dropdown li:last-child a { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} -#primary-header .dropdown li:first-child, #primary-header .dropdown li:first-child a { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} - -#primary-header .menu-feature-image { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - background-size: cover; - min-height: 160px; - vertical-align: top; - margin: -10px -20px 10px -20px; - background-position: center; -} - -#primary-header .menu-feature-link { - border-bottom: solid 1px #dddbdb; -} - -#primary-header .menu > li { - display: inline-block; -} - -#primary-header .navbar-right { - position: absolute; - text-align: right; - right: 15px; - top: 0px; -} - -#primary-header #header-search-input { - height: 30px; - width: 100%; - line-height: 30px; - padding: 0px 50px 0px 5px; - box-sizing: border-box; - border: solid 1px #cac6c9; - border-radius: 3px; - background-color: #FFF; - z-index: 1; - transition: width .2s, color .2s; -} - - -#primary-header #header-search-submit { - position: absolute; - top: 11px; - right: 1px; - z-index: 2; - width: 48px; - height: 28px; - text-indent: -9999px; - padding: 0px; - border: none; - border-radius: 2px; - background-color: #FFF; - outline: 0; -} - -#primary-header #header-search-submit:after { - font-family: 'glyph'; - content: 'Q'; - font-size: 18px; - position: absolute; - top: 0px; - left: 0px; - width: 100%; - height: 28px; - line-height: 28px; - text-indent: 0px; - color: #7a747c; -} - -#primary-header #header-search-submit:focus { - box-shadow: none; -} - -#primary-header #header-search-form { - position: relative; - display: none; - width: 250px; - vertical-align: top; -} - - -#primary-header #header-search-form.js { - display: inline-block; -} - -#primary-header #header-search-form.js.active #header-search-submit:focus:after { - color: #1287de; -} - -#primary-header #header-search-form.js:not(.active) #header-search-input { - width: 50px; - padding: 0px; - color: transparent !important; -} - -#primary-header #header-search-form.js.active #header-search-input::placeholder { color: #dddbdb; transition: color .2s; } -#primary-header #header-search-form.js.active #header-search-input::-webkit-input-placeholder { color: #dddbdb; transition: color .2s; } -#primary-header #header-search-form.js.active #header-search-input:-ms-input-placeholder { color: #dddbdb; transition: color .2s; } -#primary-header #header-search-form.js.active #header-search-input::-moz-placeholder { color: #dddbdb; transition: color .2s; } -#primary-header #header-search-form.js.active #header-search-input:-moz-placeholder { color: #dddbdb; transition: color .2s; } - -#primary-header #header-search-form.js:not(.active) #header-search-input::placeholder { color: transparent } -#primary-header #header-search-form.js:not(.active) #header-search-input::-webkit-input-placeholder { color: transparent } -#primary-header #header-search-form.js:not(.active) #header-search-input:-ms-input-placeholder { color: transparent } -#primary-header #header-search-form.js:not(.active) #header-search-input::-moz-placeholder { color: transparent } -#primary-header #header-search-form.js:not(.active) #header-search-input:-moz-placeholder { color: transparent } - - -#primary-header #header-search-form.js:not(.active) #header-search-submit { - border-color: transparent; - cursor: text; -} - -#primary-header #header-search-form.js.active #header-search-submit:after { - content: ">"; -} - -#primary-header #header-menu-button { - display: none; - font-family: 'glyph'; - background-color: transparent; - font-size: 22px; - color: #7a747c; - vertical-align: top; - line-height: 50px; - padding: 0px; - margin: 0px; - border: none; - width: 60px; -} - -#primary-header.toggle-nav .container { - width: 100%; - max-width: 100%; -} - -#primary-header.toggle-nav #header-menu-button { - display: inline-block; -} - - -#primary-header.toggle-nav #header-nav { - display: none; - height: auto; - margin: 0px -15px 0px -15px; - border-top: solid 1px #e7e5e5; -} - -@media(max-width: 450px) { - #primary-header.toggle-nav #header-search-form { - width: 200px; - } -} - -@media(max-width: 400px) { - #primary-header.toggle-nav #header-search-form { - display: none; - } -} - -#primary-header.toggle-nav #header-nav.active { - display: block; -} - -#primary-header.toggle-nav #header-nav .menu-item { - display: block; -} - -#primary-header.toggle-nav #header-nav .menu-item a { - display: block; -} - -#primary-header.toggle-nav .dropdown-menu { - position: relative; - padding: 0px; - margin: 0px; - border: none !important; - border-radius: 0px !important; - box-shadow: none !important; - width: 100%; - border-bottom: solid 2px #dddbdb !important; -} - -#primary-header.toggle-nav .menu-feature-image { - border: none !important; - border-radius: 0px !important; - box-shadow: none !important; -} - -#primary-header.toggle-nav .dropdown-toggle:after { - position: absolute; - right: 15px; -} - -#primary-header.toggle-nav #header-right-content { - left: 90px; - width: auto; - white-space: nowrap; -} - -#primary-header #header_user_menu { - height: 50px; - vertical-align: top; - display: inline-block; -} - -#primary-header #header_user_menu #header_user_avatar { - text-align: left; - display: block; - vertical-align: top; - margin: 10px 0px 10px 20px; - width: 30px; - height: 30px; - text-indent: -9999px !important; - border-radius: 100%; - border: solid 1px rgba(0,0,0,.1); - background-clip: border-box; - box-sizing: border-box; - background-size: cover; -} - diff --git a/inc/customizer.php b/inc/customizer.php index 26f9285..9dc487d 100644 --- a/inc/customizer.php +++ b/inc/customizer.php @@ -1,300 +1,292 @@ get_setting( 'header_textcolor' )->transport = 'postMessage'; } -add_action( 'customize_register', 'aether_customize_register' ); +add_action( 'customize_register', 'ae_customize_register' ); /** * Options for WordPress Theme Customizer. */ -function aether_customizer( $wp_customize ) { +function ae_customizer( $wp_customize ) { // logo $wp_customize->add_setting( 'header_logo', array( 'default' => '', 'transport' => 'refresh', - 'sanitize_callback' => 'aether_sanitize_number' + 'sanitize_callback' => 'ae_sanitize_number' ) ); $wp_customize->add_control(new WP_Customize_Media_Control( $wp_customize, 'header_logo', array( 'label' => __( 'Logo', 'aether' ), 'section' => 'title_tagline', 'mime_type' => 'image', 'priority' => 10, ) ) ); global $header_show; $wp_customize->add_setting('header_show', array( 'default' => 'logo-text', - 'sanitize_callback' => 'aether_sanitize_radio_header' + 'sanitize_callback' => 'ae_sanitize_radio_header' )); $wp_customize->add_control('header_show', array( 'type' => 'radio', 'label' => __('Show', 'aether'), 'section' => 'title_tagline', 'choices' => $header_show )); /* Main option Settings Panel */ - $wp_customize->add_panel('aether_main_options', array( + $wp_customize->add_panel('ae_main_options', array( 'capability' => 'edit_theme_options', 'theme_supports' => '', - 'title' => __('aether Options', 'aether'), + 'title' => __('Æther Options', 'aether'), 'description' => __('Panel to update aether theme options', 'aether'), // Include html tags such as

    . 'priority' => 10 // Mixed with top-level-section hierarchy. )); // add "Content Options" section - $wp_customize->add_section( 'aether_content_section' , array( + $wp_customize->add_section( 'ae_content_section' , array( 'title' => esc_html__( 'Content Options', 'aether' ), 'priority' => 50, - 'panel' => 'aether_main_options' + 'panel' => 'ae_main_options' ) ); // add setting for excerpts/full posts toggle - $wp_customize->add_setting( 'aether_excerpts', array( + $wp_customize->add_setting( 'ae_excerpts', array( 'default' => 1, - 'sanitize_callback' => 'aether_sanitize_checkbox', + 'sanitize_callback' => 'ae_sanitize_checkbox', ) ); // add checkbox control for excerpts/full posts toggle - $wp_customize->add_control( 'aether_excerpts', array( + $wp_customize->add_control( 'ae_excerpts', array( 'label' => esc_html__( 'Show post excerpts?', 'aether' ), - 'section' => 'aether_content_section', + 'section' => 'ae_content_section', 'priority' => 10, 'type' => 'checkbox' ) ); - $wp_customize->add_setting( 'aether_page_comments', array( + $wp_customize->add_setting( 'ae_page_comments', array( 'default' => 1, - 'sanitize_callback' => 'aether_sanitize_checkbox', + 'sanitize_callback' => 'ae_sanitize_checkbox', ) ); - $wp_customize->add_control( 'aether_page_comments', array( + $wp_customize->add_control( 'ae_page_comments', array( 'label' => esc_html__( 'Display Comments on Static Pages?', 'aether' ), - 'section' => 'aether_content_section', + 'section' => 'ae_content_section', 'priority' => 20, 'type' => 'checkbox', ) ); // add "Featured Posts" section - $wp_customize->add_section( 'aether_featured_section' , array( + $wp_customize->add_section( 'ae_featured_section' , array( 'title' => esc_html__( 'Slider Option', 'aether' ), 'priority' => 60, - 'panel' => 'aether_main_options' + 'panel' => 'ae_main_options' ) ); - $wp_customize->add_setting( 'aether_featured_cat', array( + $wp_customize->add_setting( 'ae_featured_cat', array( 'default' => 0, 'transport' => 'refresh', - 'sanitize_callback' => 'aether_sanitize_slidecat' + 'sanitize_callback' => 'ae_sanitize_slidecat' ) ); - $wp_customize->add_control( 'aether_featured_cat', array( + /* + $wp_customize->add_control( 'ae_featured_cat', array( 'type' => 'select', 'label' => 'Choose a category', - 'choices' => aether_cats(), - 'section' => 'aether_featured_section', + 'choices' => ae_cats(), + 'section' => 'ae_featured_section', ) ); + */ - $wp_customize->add_setting( 'aether_featured_hide', array( + $wp_customize->add_setting( 'ae_featured_hide', array( 'default' => 0, 'transport' => 'refresh', - 'sanitize_callback' => 'aether_sanitize_checkbox' + 'sanitize_callback' => 'ae_sanitize_checkbox' ) ); - $wp_customize->add_control( 'aether_featured_hide', array( + $wp_customize->add_control( 'ae_featured_hide', array( 'type' => 'checkbox', 'label' => 'Show Slider', - 'section' => 'aether_featured_section', + 'section' => 'ae_featured_section', ) ); // add "Sidebar" section - $wp_customize->add_section('aether_layout_section', array( + $wp_customize->add_section('ae_layout_section', array( 'title' => __('Layout options', 'aether'), 'priority' => 31, - 'panel' => 'aether_main_options' + 'panel' => 'ae_main_options' )); // Layout options - global $site_layout; - $wp_customize->add_setting('aether_sidebar_position', array( + $wp_customize->add_setting('ae_sidebar_position', array( 'default' => 'side-right', - 'sanitize_callback' => 'aether_sanitize_layout' )); - $wp_customize->add_control('aether_sidebar_position', array( + $wp_customize->add_control('ae_sidebar_position', array( 'label' => __('Website Layout Options', 'aether'), - 'section' => 'aether_layout_section', + 'section' => 'ae_layout_section', 'type' => 'select', 'description' => __('Choose between different layout options to be used as default', 'aether'), - 'choices' => $site_layout + 'choices' => Aether\contentLayout()->layouts() )); $wp_customize->add_setting('accent_color', array( 'default' => '', - 'sanitize_callback' => 'aether_sanitize_hexcolor' + 'sanitize_callback' => 'ae_sanitize_hexcolor' )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'accent_color', array( 'label' => __('Accent Color', 'aether'), 'description' => __('Default used if no color is selected','aether'), - 'section' => 'aether_layout_section', + 'section' => 'ae_layout_section', ))); $wp_customize->add_setting('social_color', array( 'default' => '', - 'sanitize_callback' => 'aether_sanitize_hexcolor' + 'sanitize_callback' => 'ae_sanitize_hexcolor' )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'social_color', array( 'label' => __('Social icon color', 'aether'), 'description' => sprintf(__('Default used if no color is selected', 'aether')), - 'section' => 'aether_layout_section', + 'section' => 'ae_layout_section', ))); $wp_customize->add_setting('social_hover_color', array( 'default' => '', - 'sanitize_callback' => 'aether_sanitize_hexcolor' + 'sanitize_callback' => 'ae_sanitize_hexcolor' )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'social_hover_color', array( 'label' => __('Social Icon:hover Color', 'aether'), 'description' => sprintf(__('Default used if no color is selected', 'aether')), - 'section' => 'aether_layout_section', + 'section' => 'ae_layout_section', ))); // add "Footer" section - $wp_customize->add_section( 'aether_footer_section' , array( + $wp_customize->add_section( 'ae_footer_section' , array( 'title' => esc_html__( 'Footer', 'aether' ), 'priority' => 90, ) ); - $wp_customize->add_setting( 'aether_footer_copyright', array( + $wp_customize->add_setting( 'ae_footer_copyright', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'wp_kses_stripslashes' ) ); - $wp_customize->add_control( 'aether_footer_copyright', array( + $wp_customize->add_control( 'ae_footer_copyright', array( 'type' => 'textarea', 'label' => 'Copyright Text', - 'section' => 'aether_footer_section', + 'section' => 'ae_footer_section', ) ); /* aether Other Options */ - $wp_customize->add_section('aether_other_options', array( + $wp_customize->add_section('ae_other_options', array( 'title' => __('Other', 'aether'), 'priority' => 70, - 'panel' => 'aether_main_options' + 'panel' => 'ae_main_options' )); $wp_customize->add_setting('custom_css', array( 'default' => '', 'sanitize_callback' => 'wp_kses_stripslashes' )); $wp_customize->add_control('custom_css', array( 'label' => __('Custom CSS', 'aether'), 'description' => sprintf(__('Additional CSS', 'aether')), - 'section' => 'aether_other_options', + 'section' => 'ae_other_options', 'type' => 'textarea' )); } -add_action( 'customize_register', 'aether_customizer' ); +add_action( 'customize_register', 'ae_customizer' ); /** * Sanitzie checkbox for WordPress customizer */ -function aether_sanitize_checkbox( $input ) { +function ae_sanitize_checkbox( $input ) { if ( $input == 1 ) { return 1; } else { return ''; } } -/** - * Adds sanitization callback function: Sidebar Layout - * @package aether - */ -function aether_sanitize_layout( $input ) { - global $site_layout; - if ( array_key_exists( $input, $site_layout ) ) { - return $input; - } else { - return ''; - } -} /** * Adds sanitization callback function: colors * @package aether */ -function aether_sanitize_hexcolor($color) { +function ae_sanitize_hexcolor($color) { if ($unhashed = sanitize_hex_color_no_hash($color)) return '#' . $unhashed; return $color; } /** * Adds sanitization callback function: Slider Category * @package aether */ -function aether_sanitize_slidecat( $input ) { +function ae_sanitize_slidecat( $input ) { - if ( array_key_exists( $input, aether_cats()) ) { +/* + if ( array_key_exists( $input, ae_cats()) ) { return $input; } else { return ''; } + */ + + return $input; } /** * Adds sanitization callback function: Radio Header * @package aether */ -function aether_sanitize_radio_header( $input ) { +function ae_sanitize_radio_header( $input ) { global $header_show; if ( array_key_exists( $input, $header_show ) ) { return $input; } else { return ''; } } /** * Adds sanitization callback function: Number * @package aether */ -function aether_sanitize_number($input) { +function ae_sanitize_number($input) { if ( isset( $input ) && is_numeric( $input ) ) { return $input; } } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ -function aether_customize_preview_js() { - wp_enqueue_script( 'aether_customizer', get_template_directory_uri() . '/inc/js/customizer.js', array( 'customize-preview' ), '20160217', true ); +function ae_customize_preview_js() { + wp_enqueue_script( 'ae_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20160217', true ); } -add_action( 'customize_preview_init', 'aether_customize_preview_js' ); +add_action( 'customize_preview_init', 'ae_customize_preview_js' ); /** * Add CSS for custom controls */ -function aether_customizer_custom_control_css() { +function ae_customizer_custom_control_css() { ?> ID ) ? rand() : $post->ID ); $o = '

    ' . esc_html__( "

    This post is password protected. To view it please enter your password below:

    " ,'aether') . '
    '; return $o; } // Add Bootstrap classes for table -add_filter( 'the_content', 'aether_add_custom_table_class' ); -function aether_add_custom_table_class( $content ) { +add_filter( 'the_content', 'ae_add_custom_table_class' ); +function ae_add_custom_table_class( $content ) { return str_replace( '', '
    ', $content ); } -if ( ! function_exists( 'aether_header_menu' ) ) : +if ( ! function_exists( 'ae_header_menu' ) ) : /** * Header menu (should you choose to use one) */ -function aether_header_menu() { +function ae_header_menu() { // display the WordPress Custom Menu if available wp_nav_menu(array( 'menu' => 'primary', 'theme_location' => 'primary', 'depth' => 3, 'container' => 'div', 'container_class' => 'collapse navbar-collapse navbar-ex1-collapse', 'menu_class' => 'nav navbar-nav', - 'fallback_cb' => 'aether_wp_bootstrap_navwalker::fallback', - 'walker' => new aether_wp_bootstrap_navwalker() + 'fallback_cb' => 'Aether\\PrimaryNavwalker::fallback', + 'walker' => new Aether\PrimaryNavwalker() )); } /* end header menu */ endif; -if ( ! function_exists( 'aether_featured_slider' ) ) : +if ( ! function_exists( 'ae_featured_slider' ) ) : /** * Featured image slider, displayed on front page for static page and blog */ -function aether_featured_slider() { - if ( ( is_home() || is_front_page() ) && get_theme_mod( 'aether_featured_hide' ) == 1 ) { +function ae_featured_slider() { + if ( ( is_home() || is_front_page() ) && get_theme_mod( 'ae_featured_hide' ) == 1 ) { wp_enqueue_style( 'flexslider-css' ); wp_enqueue_script( 'flexslider-js' ); echo '
    '; echo '
      '; $count = 4; - $slidecat = get_theme_mod( 'aether_featured_cat' ); + $slidecat = get_theme_mod( 'ae_featured_cat' ); $query = new WP_Query( array( 'cat' => $slidecat,'posts_per_page' => $count ) ); if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post(); if ( (function_exists( 'has_post_thumbnail' )) && ( has_post_thumbnail() ) ) : echo '
    • '; echo get_the_post_thumbnail( get_the_ID(), 'aether-slider' ); echo '
      '; echo get_the_category_list(); if ( get_the_title() != '' ) echo '

      '. get_the_title().'

      '; echo ''; echo '
      '; echo '
    • '; endif; endwhile; wp_reset_query(); endif; echo '
    '; echo '
    '; } } endif; /** * function to show the footer info, copyright information */ -function aether_footer_info() { -global $aether_footer_info; +function ae_footer_info() { +global $ae_footer_info; printf( esc_html__( 'Theme by %1$s Powered by %2$s', 'aether' ) , 'Colorlib', 'WordPress'); } /** * Add Bootstrap thumbnail styling to images with captions * Use
    and
    * * @link http://justintadlock.com/archives/2011/07/01/captions-in-wordpress */ -function aether_caption($output, $attr, $content) { +function ae_caption($output, $attr, $content) { if (is_feed()) { return $output; } $defaults = array( 'id' => '', 'align' => 'alignnone', 'width' => '', 'caption' => '' ); $attr = shortcode_atts($defaults, $attr); // If the width is less than 1 or there is no caption, return the content wrapped between the [caption] tags if ($attr['width'] < 1 || empty($attr['caption'])) { return $content; } // Set up the attributes for the caption
    $attributes = (!empty($attr['id']) ? ' id="' . esc_attr($attr['id']) . '"' : '' ); $attributes .= ' class="thumbnail wp-caption ' . esc_attr($attr['align']) . '"'; $attributes .= ' style="width: ' . (esc_attr($attr['width']) + 10) . 'px"'; $output = ''; $output .= do_shortcode($content); $output .= '
    ' . $attr['caption'] . '
    '; $output .= '
    '; return $output; } -add_filter('img_caption_shortcode', 'aether_caption', 10, 3); +add_filter('img_caption_shortcode', 'ae_caption', 10, 3); /** * Skype URI support for social media icons */ -function aether_allow_skype_protocol( $protocols ){ +function ae_allow_skype_protocol( $protocols ){ $protocols[] = 'skype'; return $protocols; } -add_filter( 'kses_allowed_protocols' , 'aether_allow_skype_protocol' ); +add_filter( 'kses_allowed_protocols' , 'ae_allow_skype_protocol' ); /* * This display blog description from wp customizer setting. */ -function aether_cats() { +function ae_cats() { $cats = array(); $cats[0] = "All"; foreach ( get_categories() as $categories => $category ) { $cats[$category->term_id] = $category->name; } return $cats; } /** * Custom comment template */ -function aether_cb_comment($comment, $args, $depth) { +function ae_cb_comment($comment, $args, $depth) { $GLOBALS['comment'] = $comment; extract($args, EXTR_SKIP); if ( 'div' == $args['style'] ) { $tag = 'div'; $add_below = 'comment'; } else { $tag = 'li'; $add_below = 'div-comment'; } ?> < id="comment-">
    %s says:', 'aether' ), get_comment_author_link() ); ?> $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    comment_approved == '0' ) : ?>
    '; if ( get_theme_mod('accent_color')) { echo 'a:hover, a:focus,article.post .post-categories a:hover, .entry-title a:hover, .entry-meta a:hover, .entry-footer a:hover, .read-more a:hover, .social-icons a:hover, .flex-caption .post-categories a:hover, .flex-caption .read-more a:hover, .flex-caption h2:hover, .comment-meta.commentmetadata a:hover, .post-inner-content .cat-item a:hover,.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, blockquote:before, .navbar-default .navbar-nav > .open > a:focus, .cat-title a, .single .entry-content a, .site-info a:hover {color:' . esc_html(get_theme_mod('accent_color')) . '}'; echo 'article.post .post-categories:after, .post-inner-content .cat-item:after, #secondary .widget-title:after {background:' . esc_html(get_theme_mod('accent_color')) . '}'; echo '.btn-default:hover, .label-default[href]:hover, .label-default[href]:focus, .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, #image-navigation .nav-previous a:hover, #image-navigation .nav-next a:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .input-group-btn:last-child>.btn:hover, .scroll-to-top:hover, button, html input[type=button]:hover, input[type=reset]:hover, .comment-list li .comment-body:after, .page-links a:hover span, .page-links span, input[type=submit]:hover, .comment-form #submit:hover, .tagcloud a:hover, .single .entry-content a:hover, .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus{background-color:' . esc_html( get_theme_mod('accent_color') ) . '; }'; } if ( get_theme_mod('social_color')) { echo '#social a, .header-search-icon { color:' . esc_html( get_theme_mod('social_color') ) .'}'; } if ( get_theme_mod('social_hover_color')) { echo '#social a:hover, .header-search-icon:hover { color:' . esc_html( get_theme_mod('social_hover_color') ) .'}'; } if ( get_theme_mod('custom_css')) { echo html_entity_decode( esc_html( get_theme_mod( 'custom_css', 'no entry' ) ) ); } echo ''; } } -add_action('wp_head','get_aether_theme_setting',10); +add_action('wp_head','get_ae_theme_setting',10); if ( ! function_exists( 'sparkling_header_menu' ) ) : function sparkling_header_menu() { // display the WordPress Custom Menu if available wp_nav_menu(array( 'menu' => 'primary', 'theme_location' => 'primary', 'depth' => 3, // <--- This is the value you change from 2 -> 3 'container' => 'div', 'container_class' => 'collapse navbar-collapse navbar-ex1-collapse', 'menu_class' => 'nav navbar-nav', 'fallback_cb' => 'wp_bootstrap_navwalker::fallback', 'walker' => new wp_bootstrap_navwalker() )); } /* end header menu */ endif; diff --git a/inc/fonts/FontAwesome.otf b/inc/fonts/FontAwesome.otf deleted file mode 100644 index 3ed7f8b..0000000 Binary files a/inc/fonts/FontAwesome.otf and /dev/null differ diff --git a/inc/fonts/Noto-Sans-700.eot b/inc/fonts/Noto-Sans-700.eot deleted file mode 100644 index 03bf93f..0000000 Binary files a/inc/fonts/Noto-Sans-700.eot and /dev/null differ diff --git a/inc/fonts/Noto-Sans-regular.eot b/inc/fonts/Noto-Sans-regular.eot deleted file mode 100644 index 15fc8bf..0000000 Binary files a/inc/fonts/Noto-Sans-regular.eot and /dev/null differ diff --git a/inc/fonts/fontawesome-webfont.eot b/inc/fonts/fontawesome-webfont.eot deleted file mode 100644 index 9b6afae..0000000 Binary files a/inc/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/inc/fonts/fontawesome-webfont.svg b/inc/fonts/fontawesome-webfont.svg deleted file mode 100644 index d05688e..0000000 --- a/inc/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,655 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/inc/fonts/fontawesome-webfont.ttf b/inc/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 26dea79..0000000 Binary files a/inc/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/inc/fonts/fontawesome-webfont.woff b/inc/fonts/fontawesome-webfont.woff deleted file mode 100644 index dc35ce3..0000000 Binary files a/inc/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/inc/fonts/fontawesome-webfont.woff2 b/inc/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 500e517..0000000 Binary files a/inc/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/inc/fonts/glyph.eot b/inc/fonts/glyph.eot deleted file mode 100644 index 733439e..0000000 Binary files a/inc/fonts/glyph.eot and /dev/null differ diff --git a/inc/fonts/glyph.svg b/inc/fonts/glyph.svg deleted file mode 100644 index 14c68a8..0000000 --- a/inc/fonts/glyph.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - -Generated by IcoMoon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/inc/fonts/glyph.ttf b/inc/fonts/glyph.ttf deleted file mode 100644 index 6bca8bc..0000000 Binary files a/inc/fonts/glyph.ttf and /dev/null differ diff --git a/inc/fonts/glyph.woff b/inc/fonts/glyph.woff deleted file mode 100644 index 13a0007..0000000 Binary files a/inc/fonts/glyph.woff and /dev/null differ diff --git a/inc/fonts/glyphicons-halflings-regular.eot b/inc/fonts/glyphicons-halflings-regular.eot deleted file mode 100644 index b93a495..0000000 Binary files a/inc/fonts/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/inc/fonts/glyphicons-halflings-regular.svg b/inc/fonts/glyphicons-halflings-regular.svg deleted file mode 100644 index 94fb549..0000000 --- a/inc/fonts/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/inc/fonts/glyphicons-halflings-regular.ttf b/inc/fonts/glyphicons-halflings-regular.ttf deleted file mode 100644 index 1413fc6..0000000 Binary files a/inc/fonts/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/inc/fonts/glyphicons-halflings-regular.woff b/inc/fonts/glyphicons-halflings-regular.woff deleted file mode 100644 index 9e61285..0000000 Binary files a/inc/fonts/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/inc/fonts/glyphicons-halflings-regular.woff2 b/inc/fonts/glyphicons-halflings-regular.woff2 deleted file mode 100644 index 64539b5..0000000 Binary files a/inc/fonts/glyphicons-halflings-regular.woff2 and /dev/null differ diff --git a/inc/jetpack.php b/inc/jetpack.php index 5a87f2a..07ada7d 100644 --- a/inc/jetpack.php +++ b/inc/jetpack.php @@ -1,20 +1,20 @@ 'click', 'container' => 'main', 'footer' => 'page', ) ); } -add_action( 'after_setup_theme', 'aether_jetpack_setup' ); +add_action( 'after_setup_theme', 'ae_jetpack_setup' ); diff --git a/inc/js/customizer.js b/inc/js/customizer.js deleted file mode 100644 index 9ff43df..0000000 --- a/inc/js/customizer.js +++ /dev/null @@ -1,38 +0,0 @@ -/** - * Theme Customizer enhancements for a better user experience. - * - * Contains handlers to make Theme Customizer preview reload changes asynchronously. - */ - -( function( $ ) { - // Site title and description. - wp.customize( 'blogname', function( value ) { - value.bind( function( to ) { - $( '.site-name a' ).text( to ); - } ); - } ); - wp.customize( 'blogdescription', function( value ) { - value.bind( function( to ) { - $( '.tagline' ).text( to ); - } ); - } ); - - // Header text color. - wp.customize( 'header_textcolor', function( value ) { - value.bind( function( to ) { - if ( 'blank' === to ) { - $( '.site-name a, .tagline' ).css( { - 'clip': 'rect(1px, 1px, 1px, 1px)', - 'position': 'absolute' - } ); - } else { - $( '.site-name a, .tagline' ).css( { - 'clip': 'auto', - 'color': to, - 'position': 'relative' - } ); - } - } ); - } ); - -} )( jQuery ); diff --git a/inc/js/dev/bootstrap.js b/inc/js/dev/bootstrap.js deleted file mode 100644 index 01fbbcb..0000000 --- a/inc/js/dev/bootstrap.js +++ /dev/null @@ -1,2363 +0,0 @@ -/*! - * Bootstrap v3.3.6 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under the MIT license - */ - -if (typeof jQuery === 'undefined') { - throw new Error('Bootstrap\'s JavaScript requires jQuery') -} - -+function ($) { - 'use strict'; - var version = $.fn.jquery.split(' ')[0].split('.') - if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 2)) { - throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3') - } -}(jQuery); - -/* ======================================================================== - * Bootstrap: transition.js v3.3.6 - * http://getbootstrap.com/javascript/#transitions - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) - // ============================================================ - - function transitionEnd() { - var el = document.createElement('bootstrap') - - var transEndEventNames = { - WebkitTransition : 'webkitTransitionEnd', - MozTransition : 'transitionend', - OTransition : 'oTransitionEnd otransitionend', - transition : 'transitionend' - } - - for (var name in transEndEventNames) { - if (el.style[name] !== undefined) { - return { end: transEndEventNames[name] } - } - } - - return false // explicit for ie8 ( ._.) - } - - // http://blog.alexmaccaw.com/css-transitions - $.fn.emulateTransitionEnd = function (duration) { - var called = false - var $el = this - $(this).one('bsTransitionEnd', function () { called = true }) - var callback = function () { if (!called) $($el).trigger($.support.transition.end) } - setTimeout(callback, duration) - return this - } - - $(function () { - $.support.transition = transitionEnd() - - if (!$.support.transition) return - - $.event.special.bsTransitionEnd = { - bindType: $.support.transition.end, - delegateType: $.support.transition.end, - handle: function (e) { - if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments) - } - } - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: alert.js v3.3.6 - * http://getbootstrap.com/javascript/#alerts - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // ALERT CLASS DEFINITION - // ====================== - - var dismiss = '[data-dismiss="alert"]' - var Alert = function (el) { - $(el).on('click', dismiss, this.close) - } - - Alert.VERSION = '3.3.6' - - Alert.TRANSITION_DURATION = 150 - - Alert.prototype.close = function (e) { - var $this = $(this) - var selector = $this.attr('data-target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - var $parent = $(selector) - - if (e) e.preventDefault() - - if (!$parent.length) { - $parent = $this.closest('.alert') - } - - $parent.trigger(e = $.Event('close.bs.alert')) - - if (e.isDefaultPrevented()) return - - $parent.removeClass('in') - - function removeElement() { - // detach from parent, fire event then clean up data - $parent.detach().trigger('closed.bs.alert').remove() - } - - $.support.transition && $parent.hasClass('fade') ? - $parent - .one('bsTransitionEnd', removeElement) - .emulateTransitionEnd(Alert.TRANSITION_DURATION) : - removeElement() - } - - - // ALERT PLUGIN DEFINITION - // ======================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.alert') - - if (!data) $this.data('bs.alert', (data = new Alert(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - var old = $.fn.alert - - $.fn.alert = Plugin - $.fn.alert.Constructor = Alert - - - // ALERT NO CONFLICT - // ================= - - $.fn.alert.noConflict = function () { - $.fn.alert = old - return this - } - - - // ALERT DATA-API - // ============== - - $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: button.js v3.3.6 - * http://getbootstrap.com/javascript/#buttons - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // BUTTON PUBLIC CLASS DEFINITION - // ============================== - - var Button = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, Button.DEFAULTS, options) - this.isLoading = false - } - - Button.VERSION = '3.3.6' - - Button.DEFAULTS = { - loadingText: 'loading...' - } - - Button.prototype.setState = function (state) { - var d = 'disabled' - var $el = this.$element - var val = $el.is('input') ? 'val' : 'html' - var data = $el.data() - - state += 'Text' - - if (data.resetText == null) $el.data('resetText', $el[val]()) - - // push to event loop to allow forms to submit - setTimeout($.proxy(function () { - $el[val](data[state] == null ? this.options[state] : data[state]) - - if (state == 'loadingText') { - this.isLoading = true - $el.addClass(d).attr(d, d) - } else if (this.isLoading) { - this.isLoading = false - $el.removeClass(d).removeAttr(d) - } - }, this), 0) - } - - Button.prototype.toggle = function () { - var changed = true - var $parent = this.$element.closest('[data-toggle="buttons"]') - - if ($parent.length) { - var $input = this.$element.find('input') - if ($input.prop('type') == 'radio') { - if ($input.prop('checked')) changed = false - $parent.find('.active').removeClass('active') - this.$element.addClass('active') - } else if ($input.prop('type') == 'checkbox') { - if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false - this.$element.toggleClass('active') - } - $input.prop('checked', this.$element.hasClass('active')) - if (changed) $input.trigger('change') - } else { - this.$element.attr('aria-pressed', !this.$element.hasClass('active')) - this.$element.toggleClass('active') - } - } - - - // BUTTON PLUGIN DEFINITION - // ======================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.button') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.button', (data = new Button(this, options))) - - if (option == 'toggle') data.toggle() - else if (option) data.setState(option) - }) - } - - var old = $.fn.button - - $.fn.button = Plugin - $.fn.button.Constructor = Button - - - // BUTTON NO CONFLICT - // ================== - - $.fn.button.noConflict = function () { - $.fn.button = old - return this - } - - - // BUTTON DATA-API - // =============== - - $(document) - .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) { - var $btn = $(e.target) - if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') - Plugin.call($btn, 'toggle') - if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault() - }) - .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) { - $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type)) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: carousel.js v3.3.6 - * http://getbootstrap.com/javascript/#carousel - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // CAROUSEL CLASS DEFINITION - // ========================= - - var Carousel = function (element, options) { - this.$element = $(element) - this.$indicators = this.$element.find('.carousel-indicators') - this.options = options - this.paused = null - this.sliding = null - this.interval = null - this.$active = null - this.$items = null - - this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)) - - this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element - .on('mouseenter.bs.carousel', $.proxy(this.pause, this)) - .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) - } - - Carousel.VERSION = '3.3.6' - - Carousel.TRANSITION_DURATION = 600 - - Carousel.DEFAULTS = { - interval: 5000, - pause: 'hover', - wrap: true, - keyboard: true - } - - Carousel.prototype.keydown = function (e) { - if (/input|textarea/i.test(e.target.tagName)) return - switch (e.which) { - case 37: this.prev(); break - case 39: this.next(); break - default: return - } - - e.preventDefault() - } - - Carousel.prototype.cycle = function (e) { - e || (this.paused = false) - - this.interval && clearInterval(this.interval) - - this.options.interval - && !this.paused - && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) - - return this - } - - Carousel.prototype.getItemIndex = function (item) { - this.$items = item.parent().children('.item') - return this.$items.index(item || this.$active) - } - - Carousel.prototype.getItemForDirection = function (direction, active) { - var activeIndex = this.getItemIndex(active) - var willWrap = (direction == 'prev' && activeIndex === 0) - || (direction == 'next' && activeIndex == (this.$items.length - 1)) - if (willWrap && !this.options.wrap) return active - var delta = direction == 'prev' ? -1 : 1 - var itemIndex = (activeIndex + delta) % this.$items.length - return this.$items.eq(itemIndex) - } - - Carousel.prototype.to = function (pos) { - var that = this - var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active')) - - if (pos > (this.$items.length - 1) || pos < 0) return - - if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid" - if (activeIndex == pos) return this.pause().cycle() - - return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos)) - } - - Carousel.prototype.pause = function (e) { - e || (this.paused = true) - - if (this.$element.find('.next, .prev').length && $.support.transition) { - this.$element.trigger($.support.transition.end) - this.cycle(true) - } - - this.interval = clearInterval(this.interval) - - return this - } - - Carousel.prototype.next = function () { - if (this.sliding) return - return this.slide('next') - } - - Carousel.prototype.prev = function () { - if (this.sliding) return - return this.slide('prev') - } - - Carousel.prototype.slide = function (type, next) { - var $active = this.$element.find('.item.active') - var $next = next || this.getItemForDirection(type, $active) - var isCycling = this.interval - var direction = type == 'next' ? 'left' : 'right' - var that = this - - if ($next.hasClass('active')) return (this.sliding = false) - - var relatedTarget = $next[0] - var slideEvent = $.Event('slide.bs.carousel', { - relatedTarget: relatedTarget, - direction: direction - }) - this.$element.trigger(slideEvent) - if (slideEvent.isDefaultPrevented()) return - - this.sliding = true - - isCycling && this.pause() - - if (this.$indicators.length) { - this.$indicators.find('.active').removeClass('active') - var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)]) - $nextIndicator && $nextIndicator.addClass('active') - } - - var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid" - if ($.support.transition && this.$element.hasClass('slide')) { - $next.addClass(type) - $next[0].offsetWidth // force reflow - $active.addClass(direction) - $next.addClass(direction) - $active - .one('bsTransitionEnd', function () { - $next.removeClass([type, direction].join(' ')).addClass('active') - $active.removeClass(['active', direction].join(' ')) - that.sliding = false - setTimeout(function () { - that.$element.trigger(slidEvent) - }, 0) - }) - .emulateTransitionEnd(Carousel.TRANSITION_DURATION) - } else { - $active.removeClass('active') - $next.addClass('active') - this.sliding = false - this.$element.trigger(slidEvent) - } - - isCycling && this.cycle() - - return this - } - - - // CAROUSEL PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.carousel') - var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) - var action = typeof option == 'string' ? option : options.slide - - if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) - if (typeof option == 'number') data.to(option) - else if (action) data[action]() - else if (options.interval) data.pause().cycle() - }) - } - - var old = $.fn.carousel - - $.fn.carousel = Plugin - $.fn.carousel.Constructor = Carousel - - - // CAROUSEL NO CONFLICT - // ==================== - - $.fn.carousel.noConflict = function () { - $.fn.carousel = old - return this - } - - - // CAROUSEL DATA-API - // ================= - - var clickHandler = function (e) { - var href - var $this = $(this) - var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 - if (!$target.hasClass('carousel')) return - var options = $.extend({}, $target.data(), $this.data()) - var slideIndex = $this.attr('data-slide-to') - if (slideIndex) options.interval = false - - Plugin.call($target, options) - - if (slideIndex) { - $target.data('bs.carousel').to(slideIndex) - } - - e.preventDefault() - } - - $(document) - .on('click.bs.carousel.data-api', '[data-slide]', clickHandler) - .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler) - - $(window).on('load', function () { - $('[data-ride="carousel"]').each(function () { - var $carousel = $(this) - Plugin.call($carousel, $carousel.data()) - }) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: collapse.js v3.3.6 - * http://getbootstrap.com/javascript/#collapse - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // COLLAPSE PUBLIC CLASS DEFINITION - // ================================ - - var Collapse = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, Collapse.DEFAULTS, options) - this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' + - '[data-toggle="collapse"][data-target="#' + element.id + '"]') - this.transitioning = null - - if (this.options.parent) { - this.$parent = this.getParent() - } else { - this.addAriaAndCollapsedClass(this.$element, this.$trigger) - } - - if (this.options.toggle) this.toggle() - } - - Collapse.VERSION = '3.3.6' - - Collapse.TRANSITION_DURATION = 350 - - Collapse.DEFAULTS = { - toggle: true - } - - Collapse.prototype.dimension = function () { - var hasWidth = this.$element.hasClass('width') - return hasWidth ? 'width' : 'height' - } - - Collapse.prototype.show = function () { - if (this.transitioning || this.$element.hasClass('in')) return - - var activesData - var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing') - - if (actives && actives.length) { - activesData = actives.data('bs.collapse') - if (activesData && activesData.transitioning) return - } - - var startEvent = $.Event('show.bs.collapse') - this.$element.trigger(startEvent) - if (startEvent.isDefaultPrevented()) return - - if (actives && actives.length) { - Plugin.call(actives, 'hide') - activesData || actives.data('bs.collapse', null) - } - - var dimension = this.dimension() - - this.$element - .removeClass('collapse') - .addClass('collapsing')[dimension](0) - .attr('aria-expanded', true) - - this.$trigger - .removeClass('collapsed') - .attr('aria-expanded', true) - - this.transitioning = 1 - - var complete = function () { - this.$element - .removeClass('collapsing') - .addClass('collapse in')[dimension]('') - this.transitioning = 0 - this.$element - .trigger('shown.bs.collapse') - } - - if (!$.support.transition) return complete.call(this) - - var scrollSize = $.camelCase(['scroll', dimension].join('-')) - - this.$element - .one('bsTransitionEnd', $.proxy(complete, this)) - .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize]) - } - - Collapse.prototype.hide = function () { - if (this.transitioning || !this.$element.hasClass('in')) return - - var startEvent = $.Event('hide.bs.collapse') - this.$element.trigger(startEvent) - if (startEvent.isDefaultPrevented()) return - - var dimension = this.dimension() - - this.$element[dimension](this.$element[dimension]())[0].offsetHeight - - this.$element - .addClass('collapsing') - .removeClass('collapse in') - .attr('aria-expanded', false) - - this.$trigger - .addClass('collapsed') - .attr('aria-expanded', false) - - this.transitioning = 1 - - var complete = function () { - this.transitioning = 0 - this.$element - .removeClass('collapsing') - .addClass('collapse') - .trigger('hidden.bs.collapse') - } - - if (!$.support.transition) return complete.call(this) - - this.$element - [dimension](0) - .one('bsTransitionEnd', $.proxy(complete, this)) - .emulateTransitionEnd(Collapse.TRANSITION_DURATION) - } - - Collapse.prototype.toggle = function () { - this[this.$element.hasClass('in') ? 'hide' : 'show']() - } - - Collapse.prototype.getParent = function () { - return $(this.options.parent) - .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]') - .each($.proxy(function (i, element) { - var $element = $(element) - this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element) - }, this)) - .end() - } - - Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) { - var isOpen = $element.hasClass('in') - - $element.attr('aria-expanded', isOpen) - $trigger - .toggleClass('collapsed', !isOpen) - .attr('aria-expanded', isOpen) - } - - function getTargetFromTrigger($trigger) { - var href - var target = $trigger.attr('data-target') - || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7 - - return $(target) - } - - - // COLLAPSE PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.collapse') - var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) - - if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false - if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.collapse - - $.fn.collapse = Plugin - $.fn.collapse.Constructor = Collapse - - - // COLLAPSE NO CONFLICT - // ==================== - - $.fn.collapse.noConflict = function () { - $.fn.collapse = old - return this - } - - - // COLLAPSE DATA-API - // ================= - - $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) { - var $this = $(this) - - if (!$this.attr('data-target')) e.preventDefault() - - var $target = getTargetFromTrigger($this) - var data = $target.data('bs.collapse') - var option = data ? 'toggle' : $this.data() - - Plugin.call($target, option) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: dropdown.js v3.3.6 - * http://getbootstrap.com/javascript/#dropdowns - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // DROPDOWN CLASS DEFINITION - // ========================= - - var backdrop = '.dropdown-backdrop' - var toggle = '[data-toggle="dropdown"]' - var Dropdown = function (element) { - $(element).on('click.bs.dropdown', this.toggle) - } - - Dropdown.VERSION = '3.3.6' - - function getParent($this) { - var selector = $this.attr('data-target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - var $parent = selector && $(selector) - - return $parent && $parent.length ? $parent : $this.parent() - } - - function clearMenus(e) { - if (e && e.which === 3) return - $(backdrop).remove() - $(toggle).each(function () { - var $this = $(this) - var $parent = getParent($this) - var relatedTarget = { relatedTarget: this } - - if (!$parent.hasClass('open')) return - - if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return - - $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget)) - - if (e.isDefaultPrevented()) return - - $this.attr('aria-expanded', 'false') - $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget)) - }) - } - - Dropdown.prototype.toggle = function (e) { - var $this = $(this) - - if ($this.is('.disabled, :disabled')) return - - var $parent = getParent($this) - var isActive = $parent.hasClass('open') - - clearMenus() - - if (!isActive) { - if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { - // if mobile we use a backdrop because click events don't delegate - $(document.createElement('div')) - .addClass('dropdown-backdrop') - .insertAfter($(this)) - .on('click', clearMenus) - } - - var relatedTarget = { relatedTarget: this } - $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget)) - - if (e.isDefaultPrevented()) return - - $this - .trigger('focus') - .attr('aria-expanded', 'true') - - $parent - .toggleClass('open') - .trigger($.Event('shown.bs.dropdown', relatedTarget)) - } - - return false - } - - Dropdown.prototype.keydown = function (e) { - if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return - - var $this = $(this) - - e.preventDefault() - e.stopPropagation() - - if ($this.is('.disabled, :disabled')) return - - var $parent = getParent($this) - var isActive = $parent.hasClass('open') - - if (!isActive && e.which != 27 || isActive && e.which == 27) { - if (e.which == 27) $parent.find(toggle).trigger('focus') - return $this.trigger('click') - } - - var desc = ' li:not(.disabled):visible a' - var $items = $parent.find('.dropdown-menu' + desc) - - if (!$items.length) return - - var index = $items.index(e.target) - - if (e.which == 38 && index > 0) index-- // up - if (e.which == 40 && index < $items.length - 1) index++ // down - if (!~index) index = 0 - - $items.eq(index).trigger('focus') - } - - - // DROPDOWN PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.dropdown') - - if (!data) $this.data('bs.dropdown', (data = new Dropdown(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - var old = $.fn.dropdown - - $.fn.dropdown = Plugin - $.fn.dropdown.Constructor = Dropdown - - - // DROPDOWN NO CONFLICT - // ==================== - - $.fn.dropdown.noConflict = function () { - $.fn.dropdown = old - return this - } - - - // APPLY TO STANDARD DROPDOWN ELEMENTS - // =================================== - - $(document) - .on('click.bs.dropdown.data-api', clearMenus) - .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) - .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle) - .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown) - .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: modal.js v3.3.6 - * http://getbootstrap.com/javascript/#modals - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // MODAL CLASS DEFINITION - // ====================== - - var Modal = function (element, options) { - this.options = options - this.$body = $(document.body) - this.$element = $(element) - this.$dialog = this.$element.find('.modal-dialog') - this.$backdrop = null - this.isShown = null - this.originalBodyPad = null - this.scrollbarWidth = 0 - this.ignoreBackdropClick = false - - if (this.options.remote) { - this.$element - .find('.modal-content') - .load(this.options.remote, $.proxy(function () { - this.$element.trigger('loaded.bs.modal') - }, this)) - } - } - - Modal.VERSION = '3.3.6' - - Modal.TRANSITION_DURATION = 300 - Modal.BACKDROP_TRANSITION_DURATION = 150 - - Modal.DEFAULTS = { - backdrop: true, - keyboard: true, - show: true - } - - Modal.prototype.toggle = function (_relatedTarget) { - return this.isShown ? this.hide() : this.show(_relatedTarget) - } - - Modal.prototype.show = function (_relatedTarget) { - var that = this - var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) - - this.$element.trigger(e) - - if (this.isShown || e.isDefaultPrevented()) return - - this.isShown = true - - this.checkScrollbar() - this.setScrollbar() - this.$body.addClass('modal-open') - - this.escape() - this.resize() - - this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) - - this.$dialog.on('mousedown.dismiss.bs.modal', function () { - that.$element.one('mouseup.dismiss.bs.modal', function (e) { - if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true - }) - }) - - this.backdrop(function () { - var transition = $.support.transition && that.$element.hasClass('fade') - - if (!that.$element.parent().length) { - that.$element.appendTo(that.$body) // don't move modals dom position - } - - that.$element - .show() - .scrollTop(0) - - that.adjustDialog() - - if (transition) { - that.$element[0].offsetWidth // force reflow - } - - that.$element.addClass('in') - - that.enforceFocus() - - var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) - - transition ? - that.$dialog // wait for modal to slide in - .one('bsTransitionEnd', function () { - that.$element.trigger('focus').trigger(e) - }) - .emulateTransitionEnd(Modal.TRANSITION_DURATION) : - that.$element.trigger('focus').trigger(e) - }) - } - - Modal.prototype.hide = function (e) { - if (e) e.preventDefault() - - e = $.Event('hide.bs.modal') - - this.$element.trigger(e) - - if (!this.isShown || e.isDefaultPrevented()) return - - this.isShown = false - - this.escape() - this.resize() - - $(document).off('focusin.bs.modal') - - this.$element - .removeClass('in') - .off('click.dismiss.bs.modal') - .off('mouseup.dismiss.bs.modal') - - this.$dialog.off('mousedown.dismiss.bs.modal') - - $.support.transition && this.$element.hasClass('fade') ? - this.$element - .one('bsTransitionEnd', $.proxy(this.hideModal, this)) - .emulateTransitionEnd(Modal.TRANSITION_DURATION) : - this.hideModal() - } - - Modal.prototype.enforceFocus = function () { - $(document) - .off('focusin.bs.modal') // guard against infinite focus loop - .on('focusin.bs.modal', $.proxy(function (e) { - if (this.$element[0] !== e.target && !this.$element.has(e.target).length) { - this.$element.trigger('focus') - } - }, this)) - } - - Modal.prototype.escape = function () { - if (this.isShown && this.options.keyboard) { - this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) { - e.which == 27 && this.hide() - }, this)) - } else if (!this.isShown) { - this.$element.off('keydown.dismiss.bs.modal') - } - } - - Modal.prototype.resize = function () { - if (this.isShown) { - $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this)) - } else { - $(window).off('resize.bs.modal') - } - } - - Modal.prototype.hideModal = function () { - var that = this - this.$element.hide() - this.backdrop(function () { - that.$body.removeClass('modal-open') - that.resetAdjustments() - that.resetScrollbar() - that.$element.trigger('hidden.bs.modal') - }) - } - - Modal.prototype.removeBackdrop = function () { - this.$backdrop && this.$backdrop.remove() - this.$backdrop = null - } - - Modal.prototype.backdrop = function (callback) { - var that = this - var animate = this.$element.hasClass('fade') ? 'fade' : '' - - if (this.isShown && this.options.backdrop) { - var doAnimate = $.support.transition && animate - - this.$backdrop = $(document.createElement('div')) - .addClass('modal-backdrop ' + animate) - .appendTo(this.$body) - - this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) { - if (this.ignoreBackdropClick) { - this.ignoreBackdropClick = false - return - } - if (e.target !== e.currentTarget) return - this.options.backdrop == 'static' - ? this.$element[0].focus() - : this.hide() - }, this)) - - if (doAnimate) this.$backdrop[0].offsetWidth // force reflow - - this.$backdrop.addClass('in') - - if (!callback) return - - doAnimate ? - this.$backdrop - .one('bsTransitionEnd', callback) - .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) : - callback() - - } else if (!this.isShown && this.$backdrop) { - this.$backdrop.removeClass('in') - - var callbackRemove = function () { - that.removeBackdrop() - callback && callback() - } - $.support.transition && this.$element.hasClass('fade') ? - this.$backdrop - .one('bsTransitionEnd', callbackRemove) - .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) : - callbackRemove() - - } else if (callback) { - callback() - } - } - - // these following methods are used to handle overflowing modals - - Modal.prototype.handleUpdate = function () { - this.adjustDialog() - } - - Modal.prototype.adjustDialog = function () { - var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight - - this.$element.css({ - paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '', - paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : '' - }) - } - - Modal.prototype.resetAdjustments = function () { - this.$element.css({ - paddingLeft: '', - paddingRight: '' - }) - } - - Modal.prototype.checkScrollbar = function () { - var fullWindowWidth = window.innerWidth - if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8 - var documentElementRect = document.documentElement.getBoundingClientRect() - fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left) - } - this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth - this.scrollbarWidth = this.measureScrollbar() - } - - Modal.prototype.setScrollbar = function () { - var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10) - this.originalBodyPad = document.body.style.paddingRight || '' - if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth) - } - - Modal.prototype.resetScrollbar = function () { - this.$body.css('padding-right', this.originalBodyPad) - } - - Modal.prototype.measureScrollbar = function () { // thx walsh - var scrollDiv = document.createElement('div') - scrollDiv.className = 'modal-scrollbar-measure' - this.$body.append(scrollDiv) - var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth - this.$body[0].removeChild(scrollDiv) - return scrollbarWidth - } - - - // MODAL PLUGIN DEFINITION - // ======================= - - function Plugin(option, _relatedTarget) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.modal') - var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option) - - if (!data) $this.data('bs.modal', (data = new Modal(this, options))) - if (typeof option == 'string') data[option](_relatedTarget) - else if (options.show) data.show(_relatedTarget) - }) - } - - var old = $.fn.modal - - $.fn.modal = Plugin - $.fn.modal.Constructor = Modal - - - // MODAL NO CONFLICT - // ================= - - $.fn.modal.noConflict = function () { - $.fn.modal = old - return this - } - - - // MODAL DATA-API - // ============== - - $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { - var $this = $(this) - var href = $this.attr('href') - var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7 - var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) - - if ($this.is('a')) e.preventDefault() - - $target.one('show.bs.modal', function (showEvent) { - if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown - $target.one('hidden.bs.modal', function () { - $this.is(':visible') && $this.trigger('focus') - }) - }) - Plugin.call($target, option, this) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: tooltip.js v3.3.6 - * http://getbootstrap.com/javascript/#tooltip - * Inspired by the original jQuery.tipsy by Jason Frame - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // TOOLTIP PUBLIC CLASS DEFINITION - // =============================== - - var Tooltip = function (element, options) { - this.type = null - this.options = null - this.enabled = null - this.timeout = null - this.hoverState = null - this.$element = null - this.inState = null - - this.init('tooltip', element, options) - } - - Tooltip.VERSION = '3.3.6' - - Tooltip.TRANSITION_DURATION = 150 - - Tooltip.DEFAULTS = { - animation: true, - placement: 'top', - selector: false, - template: '', - trigger: 'hover focus', - title: '', - delay: 0, - html: false, - container: false, - viewport: { - selector: 'body', - padding: 0 - } - } - - Tooltip.prototype.init = function (type, element, options) { - this.enabled = true - this.type = type - this.$element = $(element) - this.options = this.getOptions(options) - this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)) - this.inState = { click: false, hover: false, focus: false } - - if (this.$element[0] instanceof document.constructor && !this.options.selector) { - throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!') - } - - var triggers = this.options.trigger.split(' ') - - for (var i = triggers.length; i--;) { - var trigger = triggers[i] - - if (trigger == 'click') { - this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) - } else if (trigger != 'manual') { - var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' - var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' - - this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) - this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) - } - } - - this.options.selector ? - (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : - this.fixTitle() - } - - Tooltip.prototype.getDefaults = function () { - return Tooltip.DEFAULTS - } - - Tooltip.prototype.getOptions = function (options) { - options = $.extend({}, this.getDefaults(), this.$element.data(), options) - - if (options.delay && typeof options.delay == 'number') { - options.delay = { - show: options.delay, - hide: options.delay - } - } - - return options - } - - Tooltip.prototype.getDelegateOptions = function () { - var options = {} - var defaults = this.getDefaults() - - this._options && $.each(this._options, function (key, value) { - if (defaults[key] != value) options[key] = value - }) - - return options - } - - Tooltip.prototype.enter = function (obj) { - var self = obj instanceof this.constructor ? - obj : $(obj.currentTarget).data('bs.' + this.type) - - if (!self) { - self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) - $(obj.currentTarget).data('bs.' + this.type, self) - } - - if (obj instanceof $.Event) { - self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true - } - - if (self.tip().hasClass('in') || self.hoverState == 'in') { - self.hoverState = 'in' - return - } - - clearTimeout(self.timeout) - - self.hoverState = 'in' - - if (!self.options.delay || !self.options.delay.show) return self.show() - - self.timeout = setTimeout(function () { - if (self.hoverState == 'in') self.show() - }, self.options.delay.show) - } - - Tooltip.prototype.isInStateTrue = function () { - for (var key in this.inState) { - if (this.inState[key]) return true - } - - return false - } - - Tooltip.prototype.leave = function (obj) { - var self = obj instanceof this.constructor ? - obj : $(obj.currentTarget).data('bs.' + this.type) - - if (!self) { - self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) - $(obj.currentTarget).data('bs.' + this.type, self) - } - - if (obj instanceof $.Event) { - self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false - } - - if (self.isInStateTrue()) return - - clearTimeout(self.timeout) - - self.hoverState = 'out' - - if (!self.options.delay || !self.options.delay.hide) return self.hide() - - self.timeout = setTimeout(function () { - if (self.hoverState == 'out') self.hide() - }, self.options.delay.hide) - } - - Tooltip.prototype.show = function () { - var e = $.Event('show.bs.' + this.type) - - if (this.hasContent() && this.enabled) { - this.$element.trigger(e) - - var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0]) - if (e.isDefaultPrevented() || !inDom) return - var that = this - - var $tip = this.tip() - - var tipId = this.getUID(this.type) - - this.setContent() - $tip.attr('id', tipId) - this.$element.attr('aria-describedby', tipId) - - if (this.options.animation) $tip.addClass('fade') - - var placement = typeof this.options.placement == 'function' ? - this.options.placement.call(this, $tip[0], this.$element[0]) : - this.options.placement - - var autoToken = /\s?auto?\s?/i - var autoPlace = autoToken.test(placement) - if (autoPlace) placement = placement.replace(autoToken, '') || 'top' - - $tip - .detach() - .css({ top: 0, left: 0, display: 'block' }) - .addClass(placement) - .data('bs.' + this.type, this) - - this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) - this.$element.trigger('inserted.bs.' + this.type) - - var pos = this.getPosition() - var actualWidth = $tip[0].offsetWidth - var actualHeight = $tip[0].offsetHeight - - if (autoPlace) { - var orgPlacement = placement - var viewportDim = this.getPosition(this.$viewport) - - placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' : - placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' : - placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' : - placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' : - placement - - $tip - .removeClass(orgPlacement) - .addClass(placement) - } - - var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) - - this.applyPlacement(calculatedOffset, placement) - - var complete = function () { - var prevHoverState = that.hoverState - that.$element.trigger('shown.bs.' + that.type) - that.hoverState = null - - if (prevHoverState == 'out') that.leave(that) - } - - $.support.transition && this.$tip.hasClass('fade') ? - $tip - .one('bsTransitionEnd', complete) - .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : - complete() - } - } - - Tooltip.prototype.applyPlacement = function (offset, placement) { - var $tip = this.tip() - var width = $tip[0].offsetWidth - var height = $tip[0].offsetHeight - - // manually read margins because getBoundingClientRect includes difference - var marginTop = parseInt($tip.css('margin-top'), 10) - var marginLeft = parseInt($tip.css('margin-left'), 10) - - // we must check for NaN for ie 8/9 - if (isNaN(marginTop)) marginTop = 0 - if (isNaN(marginLeft)) marginLeft = 0 - - offset.top += marginTop - offset.left += marginLeft - - // $.fn.offset doesn't round pixel values - // so we use setOffset directly with our own function B-0 - $.offset.setOffset($tip[0], $.extend({ - using: function (props) { - $tip.css({ - top: Math.round(props.top), - left: Math.round(props.left) - }) - } - }, offset), 0) - - $tip.addClass('in') - - // check to see if placing tip in new offset caused the tip to resize itself - var actualWidth = $tip[0].offsetWidth - var actualHeight = $tip[0].offsetHeight - - if (placement == 'top' && actualHeight != height) { - offset.top = offset.top + height - actualHeight - } - - var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight) - - if (delta.left) offset.left += delta.left - else offset.top += delta.top - - var isVertical = /top|bottom/.test(placement) - var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight - var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight' - - $tip.offset(offset) - this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical) - } - - Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) { - this.arrow() - .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') - .css(isVertical ? 'top' : 'left', '') - } - - Tooltip.prototype.setContent = function () { - var $tip = this.tip() - var title = this.getTitle() - - $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) - $tip.removeClass('fade in top bottom left right') - } - - Tooltip.prototype.hide = function (callback) { - var that = this - var $tip = $(this.$tip) - var e = $.Event('hide.bs.' + this.type) - - function complete() { - if (that.hoverState != 'in') $tip.detach() - that.$element - .removeAttr('aria-describedby') - .trigger('hidden.bs.' + that.type) - callback && callback() - } - - this.$element.trigger(e) - - if (e.isDefaultPrevented()) return - - $tip.removeClass('in') - - $.support.transition && $tip.hasClass('fade') ? - $tip - .one('bsTransitionEnd', complete) - .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : - complete() - - this.hoverState = null - - return this - } - - Tooltip.prototype.fixTitle = function () { - var $e = this.$element - if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') { - $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') - } - } - - Tooltip.prototype.hasContent = function () { - return this.getTitle() - } - - Tooltip.prototype.getPosition = function ($element) { - $element = $element || this.$element - - var el = $element[0] - var isBody = el.tagName == 'BODY' - - var elRect = el.getBoundingClientRect() - if (elRect.width == null) { - // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093 - elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top }) - } - var elOffset = isBody ? { top: 0, left: 0 } : $element.offset() - var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() } - var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null - - return $.extend({}, elRect, scroll, outerDims, elOffset) - } - - Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { - return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : - placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : - placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : - /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } - - } - - Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) { - var delta = { top: 0, left: 0 } - if (!this.$viewport) return delta - - var viewportPadding = this.options.viewport && this.options.viewport.padding || 0 - var viewportDimensions = this.getPosition(this.$viewport) - - if (/right|left/.test(placement)) { - var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll - var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight - if (topEdgeOffset < viewportDimensions.top) { // top overflow - delta.top = viewportDimensions.top - topEdgeOffset - } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow - delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset - } - } else { - var leftEdgeOffset = pos.left - viewportPadding - var rightEdgeOffset = pos.left + viewportPadding + actualWidth - if (leftEdgeOffset < viewportDimensions.left) { // left overflow - delta.left = viewportDimensions.left - leftEdgeOffset - } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow - delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset - } - } - - return delta - } - - Tooltip.prototype.getTitle = function () { - var title - var $e = this.$element - var o = this.options - - title = $e.attr('data-original-title') - || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) - - return title - } - - Tooltip.prototype.getUID = function (prefix) { - do prefix += ~~(Math.random() * 1000000) - while (document.getElementById(prefix)) - return prefix - } - - Tooltip.prototype.tip = function () { - if (!this.$tip) { - this.$tip = $(this.options.template) - if (this.$tip.length != 1) { - throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!') - } - } - return this.$tip - } - - Tooltip.prototype.arrow = function () { - return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')) - } - - Tooltip.prototype.enable = function () { - this.enabled = true - } - - Tooltip.prototype.disable = function () { - this.enabled = false - } - - Tooltip.prototype.toggleEnabled = function () { - this.enabled = !this.enabled - } - - Tooltip.prototype.toggle = function (e) { - var self = this - if (e) { - self = $(e.currentTarget).data('bs.' + this.type) - if (!self) { - self = new this.constructor(e.currentTarget, this.getDelegateOptions()) - $(e.currentTarget).data('bs.' + this.type, self) - } - } - - if (e) { - self.inState.click = !self.inState.click - if (self.isInStateTrue()) self.enter(self) - else self.leave(self) - } else { - self.tip().hasClass('in') ? self.leave(self) : self.enter(self) - } - } - - Tooltip.prototype.destroy = function () { - var that = this - clearTimeout(this.timeout) - this.hide(function () { - that.$element.off('.' + that.type).removeData('bs.' + that.type) - if (that.$tip) { - that.$tip.detach() - } - that.$tip = null - that.$arrow = null - that.$viewport = null - }) - } - - - // TOOLTIP PLUGIN DEFINITION - // ========================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.tooltip') - var options = typeof option == 'object' && option - - if (!data && /destroy|hide/.test(option)) return - if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.tooltip - - $.fn.tooltip = Plugin - $.fn.tooltip.Constructor = Tooltip - - - // TOOLTIP NO CONFLICT - // =================== - - $.fn.tooltip.noConflict = function () { - $.fn.tooltip = old - return this - } - -}(jQuery); - -/* ======================================================================== - * Bootstrap: popover.js v3.3.6 - * http://getbootstrap.com/javascript/#popovers - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // POPOVER PUBLIC CLASS DEFINITION - // =============================== - - var Popover = function (element, options) { - this.init('popover', element, options) - } - - if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') - - Popover.VERSION = '3.3.6' - - Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { - placement: 'right', - trigger: 'click', - content: '', - template: '' - }) - - - // NOTE: POPOVER EXTENDS tooltip.js - // ================================ - - Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) - - Popover.prototype.constructor = Popover - - Popover.prototype.getDefaults = function () { - return Popover.DEFAULTS - } - - Popover.prototype.setContent = function () { - var $tip = this.tip() - var title = this.getTitle() - var content = this.getContent() - - $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) - $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events - this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text' - ](content) - - $tip.removeClass('fade top bottom left right in') - - // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do - // this manually by checking the contents. - if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() - } - - Popover.prototype.hasContent = function () { - return this.getTitle() || this.getContent() - } - - Popover.prototype.getContent = function () { - var $e = this.$element - var o = this.options - - return $e.attr('data-content') - || (typeof o.content == 'function' ? - o.content.call($e[0]) : - o.content) - } - - Popover.prototype.arrow = function () { - return (this.$arrow = this.$arrow || this.tip().find('.arrow')) - } - - - // POPOVER PLUGIN DEFINITION - // ========================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.popover') - var options = typeof option == 'object' && option - - if (!data && /destroy|hide/.test(option)) return - if (!data) $this.data('bs.popover', (data = new Popover(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.popover - - $.fn.popover = Plugin - $.fn.popover.Constructor = Popover - - - // POPOVER NO CONFLICT - // =================== - - $.fn.popover.noConflict = function () { - $.fn.popover = old - return this - } - -}(jQuery); - -/* ======================================================================== - * Bootstrap: scrollspy.js v3.3.6 - * http://getbootstrap.com/javascript/#scrollspy - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // SCROLLSPY CLASS DEFINITION - // ========================== - - function ScrollSpy(element, options) { - this.$body = $(document.body) - this.$scrollElement = $(element).is(document.body) ? $(window) : $(element) - this.options = $.extend({}, ScrollSpy.DEFAULTS, options) - this.selector = (this.options.target || '') + ' .nav li > a' - this.offsets = [] - this.targets = [] - this.activeTarget = null - this.scrollHeight = 0 - - this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this)) - this.refresh() - this.process() - } - - ScrollSpy.VERSION = '3.3.6' - - ScrollSpy.DEFAULTS = { - offset: 10 - } - - ScrollSpy.prototype.getScrollHeight = function () { - return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight) - } - - ScrollSpy.prototype.refresh = function () { - var that = this - var offsetMethod = 'offset' - var offsetBase = 0 - - this.offsets = [] - this.targets = [] - this.scrollHeight = this.getScrollHeight() - - if (!$.isWindow(this.$scrollElement[0])) { - offsetMethod = 'position' - offsetBase = this.$scrollElement.scrollTop() - } - - this.$body - .find(this.selector) - .map(function () { - var $el = $(this) - var href = $el.data('target') || $el.attr('href') - var $href = /^#./.test(href) && $(href) - - return ($href - && $href.length - && $href.is(':visible') - && [[$href[offsetMethod]().top + offsetBase, href]]) || null - }) - .sort(function (a, b) { return a[0] - b[0] }) - .each(function () { - that.offsets.push(this[0]) - that.targets.push(this[1]) - }) - } - - ScrollSpy.prototype.process = function () { - var scrollTop = this.$scrollElement.scrollTop() + this.options.offset - var scrollHeight = this.getScrollHeight() - var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height() - var offsets = this.offsets - var targets = this.targets - var activeTarget = this.activeTarget - var i - - if (this.scrollHeight != scrollHeight) { - this.refresh() - } - - if (scrollTop >= maxScroll) { - return activeTarget != (i = targets[targets.length - 1]) && this.activate(i) - } - - if (activeTarget && scrollTop < offsets[0]) { - this.activeTarget = null - return this.clear() - } - - for (i = offsets.length; i--;) { - activeTarget != targets[i] - && scrollTop >= offsets[i] - && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1]) - && this.activate(targets[i]) - } - } - - ScrollSpy.prototype.activate = function (target) { - this.activeTarget = target - - this.clear() - - var selector = this.selector + - '[data-target="' + target + '"],' + - this.selector + '[href="' + target + '"]' - - var active = $(selector) - .parents('li') - .addClass('active') - - if (active.parent('.dropdown-menu').length) { - active = active - .closest('li.dropdown') - .addClass('active') - } - - active.trigger('activate.bs.scrollspy') - } - - ScrollSpy.prototype.clear = function () { - $(this.selector) - .parentsUntil(this.options.target, '.active') - .removeClass('active') - } - - - // SCROLLSPY PLUGIN DEFINITION - // =========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.scrollspy') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.scrollspy - - $.fn.scrollspy = Plugin - $.fn.scrollspy.Constructor = ScrollSpy - - - // SCROLLSPY NO CONFLICT - // ===================== - - $.fn.scrollspy.noConflict = function () { - $.fn.scrollspy = old - return this - } - - - // SCROLLSPY DATA-API - // ================== - - $(window).on('load.bs.scrollspy.data-api', function () { - $('[data-spy="scroll"]').each(function () { - var $spy = $(this) - Plugin.call($spy, $spy.data()) - }) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: tab.js v3.3.6 - * http://getbootstrap.com/javascript/#tabs - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // TAB CLASS DEFINITION - // ==================== - - var Tab = function (element) { - // jscs:disable requireDollarBeforejQueryAssignment - this.element = $(element) - // jscs:enable requireDollarBeforejQueryAssignment - } - - Tab.VERSION = '3.3.6' - - Tab.TRANSITION_DURATION = 150 - - Tab.prototype.show = function () { - var $this = this.element - var $ul = $this.closest('ul:not(.dropdown-menu)') - var selector = $this.data('target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - if ($this.parent('li').hasClass('active')) return - - var $previous = $ul.find('.active:last a') - var hideEvent = $.Event('hide.bs.tab', { - relatedTarget: $this[0] - }) - var showEvent = $.Event('show.bs.tab', { - relatedTarget: $previous[0] - }) - - $previous.trigger(hideEvent) - $this.trigger(showEvent) - - if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return - - var $target = $(selector) - - this.activate($this.closest('li'), $ul) - this.activate($target, $target.parent(), function () { - $previous.trigger({ - type: 'hidden.bs.tab', - relatedTarget: $this[0] - }) - $this.trigger({ - type: 'shown.bs.tab', - relatedTarget: $previous[0] - }) - }) - } - - Tab.prototype.activate = function (element, container, callback) { - var $active = container.find('> .active') - var transition = callback - && $.support.transition - && ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length) - - function next() { - $active - .removeClass('active') - .find('> .dropdown-menu > .active') - .removeClass('active') - .end() - .find('[data-toggle="tab"]') - .attr('aria-expanded', false) - - element - .addClass('active') - .find('[data-toggle="tab"]') - .attr('aria-expanded', true) - - if (transition) { - element[0].offsetWidth // reflow for transition - element.addClass('in') - } else { - element.removeClass('fade') - } - - if (element.parent('.dropdown-menu').length) { - element - .closest('li.dropdown') - .addClass('active') - .end() - .find('[data-toggle="tab"]') - .attr('aria-expanded', true) - } - - callback && callback() - } - - $active.length && transition ? - $active - .one('bsTransitionEnd', next) - .emulateTransitionEnd(Tab.TRANSITION_DURATION) : - next() - - $active.removeClass('in') - } - - - // TAB PLUGIN DEFINITION - // ===================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.tab') - - if (!data) $this.data('bs.tab', (data = new Tab(this))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.tab - - $.fn.tab = Plugin - $.fn.tab.Constructor = Tab - - - // TAB NO CONFLICT - // =============== - - $.fn.tab.noConflict = function () { - $.fn.tab = old - return this - } - - - // TAB DATA-API - // ============ - - var clickHandler = function (e) { - e.preventDefault() - Plugin.call($(this), 'show') - } - - $(document) - .on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler) - .on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: affix.js v3.3.6 - * http://getbootstrap.com/javascript/#affix - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // AFFIX CLASS DEFINITION - // ====================== - - var Affix = function (element, options) { - this.options = $.extend({}, Affix.DEFAULTS, options) - - this.$target = $(this.options.target) - .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) - .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) - - this.$element = $(element) - this.affixed = null - this.unpin = null - this.pinnedOffset = null - - this.checkPosition() - } - - Affix.VERSION = '3.3.6' - - Affix.RESET = 'affix affix-top affix-bottom' - - Affix.DEFAULTS = { - offset: 0, - target: window - } - - Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) { - var scrollTop = this.$target.scrollTop() - var position = this.$element.offset() - var targetHeight = this.$target.height() - - if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false - - if (this.affixed == 'bottom') { - if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom' - return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom' - } - - var initializing = this.affixed == null - var colliderTop = initializing ? scrollTop : position.top - var colliderHeight = initializing ? targetHeight : height - - if (offsetTop != null && scrollTop <= offsetTop) return 'top' - if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom' - - return false - } - - Affix.prototype.getPinnedOffset = function () { - if (this.pinnedOffset) return this.pinnedOffset - this.$element.removeClass(Affix.RESET).addClass('affix') - var scrollTop = this.$target.scrollTop() - var position = this.$element.offset() - return (this.pinnedOffset = position.top - scrollTop) - } - - Affix.prototype.checkPositionWithEventLoop = function () { - setTimeout($.proxy(this.checkPosition, this), 1) - } - - Affix.prototype.checkPosition = function () { - if (!this.$element.is(':visible')) return - - var height = this.$element.height() - var offset = this.options.offset - var offsetTop = offset.top - var offsetBottom = offset.bottom - var scrollHeight = Math.max($(document).height(), $(document.body).height()) - - if (typeof offset != 'object') offsetBottom = offsetTop = offset - if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) - if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element) - - var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom) - - if (this.affixed != affix) { - if (this.unpin != null) this.$element.css('top', '') - - var affixType = 'affix' + (affix ? '-' + affix : '') - var e = $.Event(affixType + '.bs.affix') - - this.$element.trigger(e) - - if (e.isDefaultPrevented()) return - - this.affixed = affix - this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null - - this.$element - .removeClass(Affix.RESET) - .addClass(affixType) - .trigger(affixType.replace('affix', 'affixed') + '.bs.affix') - } - - if (affix == 'bottom') { - this.$element.offset({ - top: scrollHeight - height - offsetBottom - }) - } - } - - - // AFFIX PLUGIN DEFINITION - // ======================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.affix') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.affix', (data = new Affix(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.affix - - $.fn.affix = Plugin - $.fn.affix.Constructor = Affix - - - // AFFIX NO CONFLICT - // ================= - - $.fn.affix.noConflict = function () { - $.fn.affix = old - return this - } - - - // AFFIX DATA-API - // ============== - - $(window).on('load', function () { - $('[data-spy="affix"]').each(function () { - var $spy = $(this) - var data = $spy.data() - - data.offset = data.offset || {} - - if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom - if (data.offsetTop != null) data.offset.top = data.offsetTop - - Plugin.call($spy, data) - }) - }) - -}(jQuery); diff --git a/inc/js/dev/jquery.flexslider.js b/inc/js/dev/jquery.flexslider.js deleted file mode 100644 index f44d18b..0000000 --- a/inc/js/dev/jquery.flexslider.js +++ /dev/null @@ -1,1195 +0,0 @@ -/* - * jQuery FlexSlider v2.6.0 - * Copyright 2012 WooThemes - * Contributing Author: Tyler Smith - */ -; -(function ($) { - - var focused = true; - - //FlexSlider: Object Instance - $.flexslider = function(el, options) { - var slider = $(el); - - // making variables public - slider.vars = $.extend({}, $.flexslider.defaults, options); - - var namespace = slider.vars.namespace, - msGesture = window.navigator && window.navigator.msPointerEnabled && window.MSGesture, - touch = (( "ontouchstart" in window ) || msGesture || window.DocumentTouch && document instanceof DocumentTouch) && slider.vars.touch, - // depricating this idea, as devices are being released with both of these events - eventType = "click touchend MSPointerUp keyup", - watchedEvent = "", - watchedEventClearTimer, - vertical = slider.vars.direction === "vertical", - reverse = slider.vars.reverse, - carousel = (slider.vars.itemWidth > 0), - fade = slider.vars.animation === "fade", - asNav = slider.vars.asNavFor !== "", - methods = {}; - - // Store a reference to the slider object - $.data(el, "flexslider", slider); - - // Private slider methods - methods = { - init: function() { - slider.animating = false; - // Get current slide and make sure it is a number - slider.currentSlide = parseInt( ( slider.vars.startAt ? slider.vars.startAt : 0), 10 ); - if ( isNaN( slider.currentSlide ) ) { slider.currentSlide = 0; } - slider.animatingTo = slider.currentSlide; - slider.atEnd = (slider.currentSlide === 0 || slider.currentSlide === slider.last); - slider.containerSelector = slider.vars.selector.substr(0,slider.vars.selector.search(' ')); - slider.slides = $(slider.vars.selector, slider); - slider.container = $(slider.containerSelector, slider); - slider.count = slider.slides.length; - // SYNC: - slider.syncExists = $(slider.vars.sync).length > 0; - // SLIDE: - if (slider.vars.animation === "slide") { slider.vars.animation = "swing"; } - slider.prop = (vertical) ? "top" : "marginLeft"; - slider.args = {}; - // SLIDESHOW: - slider.manualPause = false; - slider.stopped = false; - //PAUSE WHEN INVISIBLE - slider.started = false; - slider.startTimeout = null; - // TOUCH/USECSS: - slider.transitions = !slider.vars.video && !fade && slider.vars.useCSS && (function() { - var obj = document.createElement('div'), - props = ['perspectiveProperty', 'WebkitPerspective', 'MozPerspective', 'OPerspective', 'msPerspective']; - for (var i in props) { - if ( obj.style[ props[i] ] !== undefined ) { - slider.pfx = props[i].replace('Perspective','').toLowerCase(); - slider.prop = "-" + slider.pfx + "-transform"; - return true; - } - } - return false; - }()); - slider.ensureAnimationEnd = ''; - // CONTROLSCONTAINER: - if (slider.vars.controlsContainer !== "") slider.controlsContainer = $(slider.vars.controlsContainer).length > 0 && $(slider.vars.controlsContainer); - // MANUAL: - if (slider.vars.manualControls !== "") slider.manualControls = $(slider.vars.manualControls).length > 0 && $(slider.vars.manualControls); - - // CUSTOM DIRECTION NAV: - if (slider.vars.customDirectionNav !== "") slider.customDirectionNav = $(slider.vars.customDirectionNav).length === 2 && $(slider.vars.customDirectionNav); - - // RANDOMIZE: - if (slider.vars.randomize) { - slider.slides.sort(function() { return (Math.round(Math.random())-0.5); }); - slider.container.empty().append(slider.slides); - } - - slider.doMath(); - - // INIT - slider.setup("init"); - - // CONTROLNAV: - if (slider.vars.controlNav) { methods.controlNav.setup(); } - - // DIRECTIONNAV: - if (slider.vars.directionNav) { methods.directionNav.setup(); } - - // KEYBOARD: - if (slider.vars.keyboard && ($(slider.containerSelector).length === 1 || slider.vars.multipleKeyboard)) { - $(document).bind('keyup', function(event) { - var keycode = event.keyCode; - if (!slider.animating && (keycode === 39 || keycode === 37)) { - var target = (keycode === 39) ? slider.getTarget('next') : - (keycode === 37) ? slider.getTarget('prev') : false; - slider.flexAnimate(target, slider.vars.pauseOnAction); - } - }); - } - // MOUSEWHEEL: - if (slider.vars.mousewheel) { - slider.bind('mousewheel', function(event, delta, deltaX, deltaY) { - event.preventDefault(); - var target = (delta < 0) ? slider.getTarget('next') : slider.getTarget('prev'); - slider.flexAnimate(target, slider.vars.pauseOnAction); - }); - } - - // PAUSEPLAY - if (slider.vars.pausePlay) { methods.pausePlay.setup(); } - - //PAUSE WHEN INVISIBLE - if (slider.vars.slideshow && slider.vars.pauseInvisible) { methods.pauseInvisible.init(); } - - // SLIDSESHOW - if (slider.vars.slideshow) { - if (slider.vars.pauseOnHover) { - slider.hover(function() { - if (!slider.manualPlay && !slider.manualPause) { slider.pause(); } - }, function() { - if (!slider.manualPause && !slider.manualPlay && !slider.stopped) { slider.play(); } - }); - } - // initialize animation - //If we're visible, or we don't use PageVisibility API - if(!slider.vars.pauseInvisible || !methods.pauseInvisible.isHidden()) { - (slider.vars.initDelay > 0) ? slider.startTimeout = setTimeout(slider.play, slider.vars.initDelay) : slider.play(); - } - } - - // ASNAV: - if (asNav) { methods.asNav.setup(); } - - // TOUCH - if (touch && slider.vars.touch) { methods.touch(); } - - // FADE&&SMOOTHHEIGHT || SLIDE: - if (!fade || (fade && slider.vars.smoothHeight)) { $(window).bind("resize orientationchange focus", methods.resize); } - - slider.find("img").attr("draggable", "false"); - - // API: start() Callback - setTimeout(function(){ - slider.vars.start(slider); - }, 200); - }, - asNav: { - setup: function() { - slider.asNav = true; - slider.animatingTo = Math.floor(slider.currentSlide/slider.move); - slider.currentItem = slider.currentSlide; - slider.slides.removeClass(namespace + "active-slide").eq(slider.currentItem).addClass(namespace + "active-slide"); - if(!msGesture){ - slider.slides.on(eventType, function(e){ - e.preventDefault(); - var $slide = $(this), - target = $slide.index(); - var posFromLeft = $slide.offset().left - $(slider).scrollLeft(); // Find position of slide relative to left of slider container - if( posFromLeft <= 0 && $slide.hasClass( namespace + 'active-slide' ) ) { - slider.flexAnimate(slider.getTarget("prev"), true); - } else if (!$(slider.vars.asNavFor).data('flexslider').animating && !$slide.hasClass(namespace + "active-slide")) { - slider.direction = (slider.currentItem < target) ? "next" : "prev"; - slider.flexAnimate(target, slider.vars.pauseOnAction, false, true, true); - } - }); - }else{ - el._slider = slider; - slider.slides.each(function (){ - var that = this; - that._gesture = new MSGesture(); - that._gesture.target = that; - that.addEventListener("MSPointerDown", function (e){ - e.preventDefault(); - if(e.currentTarget._gesture) { - e.currentTarget._gesture.addPointer(e.pointerId); - } - }, false); - that.addEventListener("MSGestureTap", function (e){ - e.preventDefault(); - var $slide = $(this), - target = $slide.index(); - if (!$(slider.vars.asNavFor).data('flexslider').animating && !$slide.hasClass('active')) { - slider.direction = (slider.currentItem < target) ? "next" : "prev"; - slider.flexAnimate(target, slider.vars.pauseOnAction, false, true, true); - } - }); - }); - } - } - }, - controlNav: { - setup: function() { - if (!slider.manualControls) { - methods.controlNav.setupPaging(); - } else { // MANUALCONTROLS: - methods.controlNav.setupManual(); - } - }, - setupPaging: function() { - var type = (slider.vars.controlNav === "thumbnails") ? 'control-thumbs' : 'control-paging', - j = 1, - item, - slide; - - slider.controlNavScaffold = $('
      '); - - if (slider.pagingCount > 1) { - for (var i = 0; i < slider.pagingCount; i++) { - slide = slider.slides.eq(i); - if ( undefined === slide.attr( 'data-thumb-alt' ) ) { slide.attr( 'data-thumb-alt', '' ); } - altText = ( '' !== slide.attr( 'data-thumb-alt' ) ) ? altText = ' alt="' + slide.attr( 'data-thumb-alt' ) + '"' : ''; - item = (slider.vars.controlNav === "thumbnails") ? '' : '' + j + ''; - if ( 'thumbnails' === slider.vars.controlNav && true === slider.vars.thumbCaptions ) { - var captn = slide.attr( 'data-thumbcaption' ); - if ( '' !== captn && undefined !== captn ) { item += '' + captn + ''; } - } - slider.controlNavScaffold.append('
    1. ' + item + '
    2. '); - j++; - } - } - - // CONTROLSCONTAINER: - (slider.controlsContainer) ? $(slider.controlsContainer).append(slider.controlNavScaffold) : slider.append(slider.controlNavScaffold); - methods.controlNav.set(); - - methods.controlNav.active(); - - slider.controlNavScaffold.delegate('a, img', eventType, function(event) { - event.preventDefault(); - - if (watchedEvent === "" || watchedEvent === event.type) { - var $this = $(this), - target = slider.controlNav.index($this); - - if (!$this.hasClass(namespace + 'active')) { - slider.direction = (target > slider.currentSlide) ? "next" : "prev"; - slider.flexAnimate(target, slider.vars.pauseOnAction); - } - } - - // setup flags to prevent event duplication - if (watchedEvent === "") { - watchedEvent = event.type; - } - methods.setToClearWatchedEvent(); - - }); - }, - setupManual: function() { - slider.controlNav = slider.manualControls; - methods.controlNav.active(); - - slider.controlNav.bind(eventType, function(event) { - event.preventDefault(); - - if (watchedEvent === "" || watchedEvent === event.type) { - var $this = $(this), - target = slider.controlNav.index($this); - - if (!$this.hasClass(namespace + 'active')) { - (target > slider.currentSlide) ? slider.direction = "next" : slider.direction = "prev"; - slider.flexAnimate(target, slider.vars.pauseOnAction); - } - } - - // setup flags to prevent event duplication - if (watchedEvent === "") { - watchedEvent = event.type; - } - methods.setToClearWatchedEvent(); - }); - }, - set: function() { - var selector = (slider.vars.controlNav === "thumbnails") ? 'img' : 'a'; - slider.controlNav = $('.' + namespace + 'control-nav li ' + selector, (slider.controlsContainer) ? slider.controlsContainer : slider); - }, - active: function() { - slider.controlNav.removeClass(namespace + "active").eq(slider.animatingTo).addClass(namespace + "active"); - }, - update: function(action, pos) { - if (slider.pagingCount > 1 && action === "add") { - slider.controlNavScaffold.append($('
    3. ' + slider.count + '
    4. ')); - } else if (slider.pagingCount === 1) { - slider.controlNavScaffold.find('li').remove(); - } else { - slider.controlNav.eq(pos).closest('li').remove(); - } - methods.controlNav.set(); - (slider.pagingCount > 1 && slider.pagingCount !== slider.controlNav.length) ? slider.update(pos, action) : methods.controlNav.active(); - } - }, - directionNav: { - setup: function() { - var directionNavScaffold = $(''); - - // CUSTOM DIRECTION NAV: - if (slider.customDirectionNav) { - slider.directionNav = slider.customDirectionNav; - // CONTROLSCONTAINER: - } else if (slider.controlsContainer) { - $(slider.controlsContainer).append(directionNavScaffold); - slider.directionNav = $('.' + namespace + 'direction-nav li a', slider.controlsContainer); - } else { - slider.append(directionNavScaffold); - slider.directionNav = $('.' + namespace + 'direction-nav li a', slider); - } - - methods.directionNav.update(); - - slider.directionNav.bind(eventType, function(event) { - event.preventDefault(); - var target; - - if (watchedEvent === "" || watchedEvent === event.type) { - target = ($(this).hasClass(namespace + 'next')) ? slider.getTarget('next') : slider.getTarget('prev'); - slider.flexAnimate(target, slider.vars.pauseOnAction); - } - - // setup flags to prevent event duplication - if (watchedEvent === "") { - watchedEvent = event.type; - } - methods.setToClearWatchedEvent(); - }); - }, - update: function() { - var disabledClass = namespace + 'disabled'; - if (slider.pagingCount === 1) { - slider.directionNav.addClass(disabledClass).attr('tabindex', '-1'); - } else if (!slider.vars.animationLoop) { - if (slider.animatingTo === 0) { - slider.directionNav.removeClass(disabledClass).filter('.' + namespace + "prev").addClass(disabledClass).attr('tabindex', '-1'); - } else if (slider.animatingTo === slider.last) { - slider.directionNav.removeClass(disabledClass).filter('.' + namespace + "next").addClass(disabledClass).attr('tabindex', '-1'); - } else { - slider.directionNav.removeClass(disabledClass).removeAttr('tabindex'); - } - } else { - slider.directionNav.removeClass(disabledClass).removeAttr('tabindex'); - } - } - }, - pausePlay: { - setup: function() { - var pausePlayScaffold = $('
      '); - - // CONTROLSCONTAINER: - if (slider.controlsContainer) { - slider.controlsContainer.append(pausePlayScaffold); - slider.pausePlay = $('.' + namespace + 'pauseplay a', slider.controlsContainer); - } else { - slider.append(pausePlayScaffold); - slider.pausePlay = $('.' + namespace + 'pauseplay a', slider); - } - - methods.pausePlay.update((slider.vars.slideshow) ? namespace + 'pause' : namespace + 'play'); - - slider.pausePlay.bind(eventType, function(event) { - event.preventDefault(); - - if (watchedEvent === "" || watchedEvent === event.type) { - if ($(this).hasClass(namespace + 'pause')) { - slider.manualPause = true; - slider.manualPlay = false; - slider.pause(); - } else { - slider.manualPause = false; - slider.manualPlay = true; - slider.play(); - } - } - - // setup flags to prevent event duplication - if (watchedEvent === "") { - watchedEvent = event.type; - } - methods.setToClearWatchedEvent(); - }); - }, - update: function(state) { - (state === "play") ? slider.pausePlay.removeClass(namespace + 'pause').addClass(namespace + 'play').html(slider.vars.playText) : slider.pausePlay.removeClass(namespace + 'play').addClass(namespace + 'pause').html(slider.vars.pauseText); - } - }, - touch: function() { - var startX, - startY, - offset, - cwidth, - dx, - startT, - onTouchStart, - onTouchMove, - onTouchEnd, - scrolling = false, - localX = 0, - localY = 0, - accDx = 0; - - if(!msGesture){ - onTouchStart = function(e) { - if (slider.animating) { - e.preventDefault(); - } else if ( ( window.navigator.msPointerEnabled ) || e.touches.length === 1 ) { - slider.pause(); - // CAROUSEL: - cwidth = (vertical) ? slider.h : slider. w; - startT = Number(new Date()); - // CAROUSEL: - - // Local vars for X and Y points. - localX = e.touches[0].pageX; - localY = e.touches[0].pageY; - - offset = (carousel && reverse && slider.animatingTo === slider.last) ? 0 : - (carousel && reverse) ? slider.limit - (((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo) : - (carousel && slider.currentSlide === slider.last) ? slider.limit : - (carousel) ? ((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.currentSlide : - (reverse) ? (slider.last - slider.currentSlide + slider.cloneOffset) * cwidth : (slider.currentSlide + slider.cloneOffset) * cwidth; - startX = (vertical) ? localY : localX; - startY = (vertical) ? localX : localY; - - el.addEventListener('touchmove', onTouchMove, false); - el.addEventListener('touchend', onTouchEnd, false); - } - }; - - onTouchMove = function(e) { - // Local vars for X and Y points. - - localX = e.touches[0].pageX; - localY = e.touches[0].pageY; - - dx = (vertical) ? startX - localY : startX - localX; - scrolling = (vertical) ? (Math.abs(dx) < Math.abs(localX - startY)) : (Math.abs(dx) < Math.abs(localY - startY)); - - var fxms = 500; - - if ( ! scrolling || Number( new Date() ) - startT > fxms ) { - e.preventDefault(); - if (!fade && slider.transitions) { - if (!slider.vars.animationLoop) { - dx = dx/((slider.currentSlide === 0 && dx < 0 || slider.currentSlide === slider.last && dx > 0) ? (Math.abs(dx)/cwidth+2) : 1); - } - slider.setProps(offset + dx, "setTouch"); - } - } - }; - - onTouchEnd = function(e) { - // finish the touch by undoing the touch session - el.removeEventListener('touchmove', onTouchMove, false); - - if (slider.animatingTo === slider.currentSlide && !scrolling && !(dx === null)) { - var updateDx = (reverse) ? -dx : dx, - target = (updateDx > 0) ? slider.getTarget('next') : slider.getTarget('prev'); - - if (slider.canAdvance(target) && (Number(new Date()) - startT < 550 && Math.abs(updateDx) > 50 || Math.abs(updateDx) > cwidth/2)) { - slider.flexAnimate(target, slider.vars.pauseOnAction); - } else { - if (!fade) { slider.flexAnimate(slider.currentSlide, slider.vars.pauseOnAction, true); } - } - } - el.removeEventListener('touchend', onTouchEnd, false); - - startX = null; - startY = null; - dx = null; - offset = null; - }; - - el.addEventListener('touchstart', onTouchStart, false); - }else{ - el.style.msTouchAction = "none"; - el._gesture = new MSGesture(); - el._gesture.target = el; - el.addEventListener("MSPointerDown", onMSPointerDown, false); - el._slider = slider; - el.addEventListener("MSGestureChange", onMSGestureChange, false); - el.addEventListener("MSGestureEnd", onMSGestureEnd, false); - - function onMSPointerDown(e){ - e.stopPropagation(); - if (slider.animating) { - e.preventDefault(); - }else{ - slider.pause(); - el._gesture.addPointer(e.pointerId); - accDx = 0; - cwidth = (vertical) ? slider.h : slider. w; - startT = Number(new Date()); - // CAROUSEL: - - offset = (carousel && reverse && slider.animatingTo === slider.last) ? 0 : - (carousel && reverse) ? slider.limit - (((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo) : - (carousel && slider.currentSlide === slider.last) ? slider.limit : - (carousel) ? ((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.currentSlide : - (reverse) ? (slider.last - slider.currentSlide + slider.cloneOffset) * cwidth : (slider.currentSlide + slider.cloneOffset) * cwidth; - } - } - - function onMSGestureChange(e) { - e.stopPropagation(); - var slider = e.target._slider; - if(!slider){ - return; - } - var transX = -e.translationX, - transY = -e.translationY; - - //Accumulate translations. - accDx = accDx + ((vertical) ? transY : transX); - dx = accDx; - scrolling = (vertical) ? (Math.abs(accDx) < Math.abs(-transX)) : (Math.abs(accDx) < Math.abs(-transY)); - - if(e.detail === e.MSGESTURE_FLAG_INERTIA){ - setImmediate(function (){ - el._gesture.stop(); - }); - - return; - } - - if (!scrolling || Number(new Date()) - startT > 500) { - e.preventDefault(); - if (!fade && slider.transitions) { - if (!slider.vars.animationLoop) { - dx = accDx / ((slider.currentSlide === 0 && accDx < 0 || slider.currentSlide === slider.last && accDx > 0) ? (Math.abs(accDx) / cwidth + 2) : 1); - } - slider.setProps(offset + dx, "setTouch"); - } - } - } - - function onMSGestureEnd(e) { - e.stopPropagation(); - var slider = e.target._slider; - if(!slider){ - return; - } - if (slider.animatingTo === slider.currentSlide && !scrolling && !(dx === null)) { - var updateDx = (reverse) ? -dx : dx, - target = (updateDx > 0) ? slider.getTarget('next') : slider.getTarget('prev'); - - if (slider.canAdvance(target) && (Number(new Date()) - startT < 550 && Math.abs(updateDx) > 50 || Math.abs(updateDx) > cwidth/2)) { - slider.flexAnimate(target, slider.vars.pauseOnAction); - } else { - if (!fade) { slider.flexAnimate(slider.currentSlide, slider.vars.pauseOnAction, true); } - } - } - - startX = null; - startY = null; - dx = null; - offset = null; - accDx = 0; - } - } - }, - resize: function() { - if (!slider.animating && slider.is(':visible')) { - if (!carousel) { slider.doMath(); } - - if (fade) { - // SMOOTH HEIGHT: - methods.smoothHeight(); - } else if (carousel) { //CAROUSEL: - slider.slides.width(slider.computedW); - slider.update(slider.pagingCount); - slider.setProps(); - } - else if (vertical) { //VERTICAL: - slider.viewport.height(slider.h); - slider.setProps(slider.h, "setTotal"); - } else { - // SMOOTH HEIGHT: - if (slider.vars.smoothHeight) { methods.smoothHeight(); } - slider.newSlides.width(slider.computedW); - slider.setProps(slider.computedW, "setTotal"); - } - } - }, - smoothHeight: function(dur) { - if (!vertical || fade) { - var $obj = (fade) ? slider : slider.viewport; - (dur) ? $obj.animate({"height": slider.slides.eq(slider.animatingTo).height()}, dur) : $obj.height(slider.slides.eq(slider.animatingTo).height()); - } - }, - sync: function(action) { - var $obj = $(slider.vars.sync).data("flexslider"), - target = slider.animatingTo; - - switch (action) { - case "animate": $obj.flexAnimate(target, slider.vars.pauseOnAction, false, true); break; - case "play": if (!$obj.playing && !$obj.asNav) { $obj.play(); } break; - case "pause": $obj.pause(); break; - } - }, - uniqueID: function($clone) { - // Append _clone to current level and children elements with id attributes - $clone.filter( '[id]' ).add($clone.find( '[id]' )).each(function() { - var $this = $(this); - $this.attr( 'id', $this.attr( 'id' ) + '_clone' ); - }); - return $clone; - }, - pauseInvisible: { - visProp: null, - init: function() { - var visProp = methods.pauseInvisible.getHiddenProp(); - if (visProp) { - var evtname = visProp.replace(/[H|h]idden/,'') + 'visibilitychange'; - document.addEventListener(evtname, function() { - if (methods.pauseInvisible.isHidden()) { - if(slider.startTimeout) { - clearTimeout(slider.startTimeout); //If clock is ticking, stop timer and prevent from starting while invisible - } else { - slider.pause(); //Or just pause - } - } - else { - if(slider.started) { - slider.play(); //Initiated before, just play - } else { - if (slider.vars.initDelay > 0) { - setTimeout(slider.play, slider.vars.initDelay); - } else { - slider.play(); //Didn't init before: simply init or wait for it - } - } - } - }); - } - }, - isHidden: function() { - var prop = methods.pauseInvisible.getHiddenProp(); - if (!prop) { - return false; - } - return document[prop]; - }, - getHiddenProp: function() { - var prefixes = ['webkit','moz','ms','o']; - // if 'hidden' is natively supported just return it - if ('hidden' in document) { - return 'hidden'; - } - // otherwise loop over all the known prefixes until we find one - for ( var i = 0; i < prefixes.length; i++ ) { - if ((prefixes[i] + 'Hidden') in document) { - return prefixes[i] + 'Hidden'; - } - } - // otherwise it's not supported - return null; - } - }, - setToClearWatchedEvent: function() { - clearTimeout(watchedEventClearTimer); - watchedEventClearTimer = setTimeout(function() { - watchedEvent = ""; - }, 3000); - } - }; - - // public methods - slider.flexAnimate = function(target, pause, override, withSync, fromNav) { - if (!slider.vars.animationLoop && target !== slider.currentSlide) { - slider.direction = (target > slider.currentSlide) ? "next" : "prev"; - } - - if (asNav && slider.pagingCount === 1) slider.direction = (slider.currentItem < target) ? "next" : "prev"; - - if (!slider.animating && (slider.canAdvance(target, fromNav) || override) && slider.is(":visible")) { - if (asNav && withSync) { - var master = $(slider.vars.asNavFor).data('flexslider'); - slider.atEnd = target === 0 || target === slider.count - 1; - master.flexAnimate(target, true, false, true, fromNav); - slider.direction = (slider.currentItem < target) ? "next" : "prev"; - master.direction = slider.direction; - - if (Math.ceil((target + 1)/slider.visible) - 1 !== slider.currentSlide && target !== 0) { - slider.currentItem = target; - slider.slides.removeClass(namespace + "active-slide").eq(target).addClass(namespace + "active-slide"); - target = Math.floor(target/slider.visible); - } else { - slider.currentItem = target; - slider.slides.removeClass(namespace + "active-slide").eq(target).addClass(namespace + "active-slide"); - return false; - } - } - - slider.animating = true; - slider.animatingTo = target; - - // SLIDESHOW: - if (pause) { slider.pause(); } - - // API: before() animation Callback - slider.vars.before(slider); - - // SYNC: - if (slider.syncExists && !fromNav) { methods.sync("animate"); } - - // CONTROLNAV - if (slider.vars.controlNav) { methods.controlNav.active(); } - - // !CAROUSEL: - // CANDIDATE: slide active class (for add/remove slide) - if (!carousel) { slider.slides.removeClass(namespace + 'active-slide').eq(target).addClass(namespace + 'active-slide'); } - - // INFINITE LOOP: - // CANDIDATE: atEnd - slider.atEnd = target === 0 || target === slider.last; - - // DIRECTIONNAV: - if (slider.vars.directionNav) { methods.directionNav.update(); } - - if (target === slider.last) { - // API: end() of cycle Callback - slider.vars.end(slider); - // SLIDESHOW && !INFINITE LOOP: - if (!slider.vars.animationLoop) { slider.pause(); } - } - - // SLIDE: - if (!fade) { - var dimension = (vertical) ? slider.slides.filter(':first').height() : slider.computedW, - margin, slideString, calcNext; - - // INFINITE LOOP / REVERSE: - if (carousel) { - margin = slider.vars.itemMargin; - calcNext = ((slider.itemW + margin) * slider.move) * slider.animatingTo; - slideString = (calcNext > slider.limit && slider.visible !== 1) ? slider.limit : calcNext; - } else if (slider.currentSlide === 0 && target === slider.count - 1 && slider.vars.animationLoop && slider.direction !== "next") { - slideString = (reverse) ? (slider.count + slider.cloneOffset) * dimension : 0; - } else if (slider.currentSlide === slider.last && target === 0 && slider.vars.animationLoop && slider.direction !== "prev") { - slideString = (reverse) ? 0 : (slider.count + 1) * dimension; - } else { - slideString = (reverse) ? ((slider.count - 1) - target + slider.cloneOffset) * dimension : (target + slider.cloneOffset) * dimension; - } - slider.setProps(slideString, "", slider.vars.animationSpeed); - if (slider.transitions) { - if (!slider.vars.animationLoop || !slider.atEnd) { - slider.animating = false; - slider.currentSlide = slider.animatingTo; - } - - // Unbind previous transitionEnd events and re-bind new transitionEnd event - slider.container.unbind("webkitTransitionEnd transitionend"); - slider.container.bind("webkitTransitionEnd transitionend", function() { - clearTimeout(slider.ensureAnimationEnd); - slider.wrapup(dimension); - }); - - // Insurance for the ever-so-fickle transitionEnd event - clearTimeout(slider.ensureAnimationEnd); - slider.ensureAnimationEnd = setTimeout(function() { - slider.wrapup(dimension); - }, slider.vars.animationSpeed + 100); - - } else { - slider.container.animate(slider.args, slider.vars.animationSpeed, slider.vars.easing, function(){ - slider.wrapup(dimension); - }); - } - } else { // FADE: - if (!touch) { - //slider.slides.eq(slider.currentSlide).fadeOut(slider.vars.animationSpeed, slider.vars.easing); - //slider.slides.eq(target).fadeIn(slider.vars.animationSpeed, slider.vars.easing, slider.wrapup); - - slider.slides.eq(slider.currentSlide).css({"zIndex": 1}).animate({"opacity": 0}, slider.vars.animationSpeed, slider.vars.easing); - slider.slides.eq(target).css({"zIndex": 2}).animate({"opacity": 1}, slider.vars.animationSpeed, slider.vars.easing, slider.wrapup); - - } else { - slider.slides.eq(slider.currentSlide).css({ "opacity": 0, "zIndex": 1 }); - slider.slides.eq(target).css({ "opacity": 1, "zIndex": 2 }); - slider.wrapup(dimension); - } - } - // SMOOTH HEIGHT: - if (slider.vars.smoothHeight) { methods.smoothHeight(slider.vars.animationSpeed); } - } - }; - slider.wrapup = function(dimension) { - // SLIDE: - if (!fade && !carousel) { - if (slider.currentSlide === 0 && slider.animatingTo === slider.last && slider.vars.animationLoop) { - slider.setProps(dimension, "jumpEnd"); - } else if (slider.currentSlide === slider.last && slider.animatingTo === 0 && slider.vars.animationLoop) { - slider.setProps(dimension, "jumpStart"); - } - } - slider.animating = false; - slider.currentSlide = slider.animatingTo; - // API: after() animation Callback - slider.vars.after(slider); - }; - - // SLIDESHOW: - slider.animateSlides = function() { - if (!slider.animating && focused ) { slider.flexAnimate(slider.getTarget("next")); } - }; - // SLIDESHOW: - slider.pause = function() { - clearInterval(slider.animatedSlides); - slider.animatedSlides = null; - slider.playing = false; - // PAUSEPLAY: - if (slider.vars.pausePlay) { methods.pausePlay.update("play"); } - // SYNC: - if (slider.syncExists) { methods.sync("pause"); } - }; - // SLIDESHOW: - slider.play = function() { - if (slider.playing) { clearInterval(slider.animatedSlides); } - slider.animatedSlides = slider.animatedSlides || setInterval(slider.animateSlides, slider.vars.slideshowSpeed); - slider.started = slider.playing = true; - // PAUSEPLAY: - if (slider.vars.pausePlay) { methods.pausePlay.update("pause"); } - // SYNC: - if (slider.syncExists) { methods.sync("play"); } - }; - // STOP: - slider.stop = function () { - slider.pause(); - slider.stopped = true; - }; - slider.canAdvance = function(target, fromNav) { - // ASNAV: - var last = (asNav) ? slider.pagingCount - 1 : slider.last; - return (fromNav) ? true : - (asNav && slider.currentItem === slider.count - 1 && target === 0 && slider.direction === "prev") ? true : - (asNav && slider.currentItem === 0 && target === slider.pagingCount - 1 && slider.direction !== "next") ? false : - (target === slider.currentSlide && !asNav) ? false : - (slider.vars.animationLoop) ? true : - (slider.atEnd && slider.currentSlide === 0 && target === last && slider.direction !== "next") ? false : - (slider.atEnd && slider.currentSlide === last && target === 0 && slider.direction === "next") ? false : - true; - }; - slider.getTarget = function(dir) { - slider.direction = dir; - if (dir === "next") { - return (slider.currentSlide === slider.last) ? 0 : slider.currentSlide + 1; - } else { - return (slider.currentSlide === 0) ? slider.last : slider.currentSlide - 1; - } - }; - - // SLIDE: - slider.setProps = function(pos, special, dur) { - var target = (function() { - var posCheck = (pos) ? pos : ((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo, - posCalc = (function() { - if (carousel) { - return (special === "setTouch") ? pos : - (reverse && slider.animatingTo === slider.last) ? 0 : - (reverse) ? slider.limit - (((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo) : - (slider.animatingTo === slider.last) ? slider.limit : posCheck; - } else { - switch (special) { - case "setTotal": return (reverse) ? ((slider.count - 1) - slider.currentSlide + slider.cloneOffset) * pos : (slider.currentSlide + slider.cloneOffset) * pos; - case "setTouch": return (reverse) ? pos : pos; - case "jumpEnd": return (reverse) ? pos : slider.count * pos; - case "jumpStart": return (reverse) ? slider.count * pos : pos; - default: return pos; - } - } - }()); - - return (posCalc * -1) + "px"; - }()); - - if (slider.transitions) { - target = (vertical) ? "translate3d(0," + target + ",0)" : "translate3d(" + target + ",0,0)"; - dur = (dur !== undefined) ? (dur/1000) + "s" : "0s"; - slider.container.css("-" + slider.pfx + "-transition-duration", dur); - slider.container.css("transition-duration", dur); - } - - slider.args[slider.prop] = target; - if (slider.transitions || dur === undefined) { slider.container.css(slider.args); } - - slider.container.css('transform',target); - }; - - slider.setup = function(type) { - // SLIDE: - if (!fade) { - var sliderOffset, arr; - - if (type === "init") { - slider.viewport = $('
      ').css({"overflow": "hidden", "position": "relative"}).appendTo(slider).append(slider.container); - // INFINITE LOOP: - slider.cloneCount = 0; - slider.cloneOffset = 0; - // REVERSE: - if (reverse) { - arr = $.makeArray(slider.slides).reverse(); - slider.slides = $(arr); - slider.container.empty().append(slider.slides); - } - } - // INFINITE LOOP && !CAROUSEL: - if (slider.vars.animationLoop && !carousel) { - slider.cloneCount = 2; - slider.cloneOffset = 1; - // clear out old clones - if (type !== "init") { slider.container.find('.clone').remove(); } - slider.container.append(methods.uniqueID(slider.slides.first().clone().addClass('clone')).attr('aria-hidden', 'true')) - .prepend(methods.uniqueID(slider.slides.last().clone().addClass('clone')).attr('aria-hidden', 'true')); - } - slider.newSlides = $(slider.vars.selector, slider); - - sliderOffset = (reverse) ? slider.count - 1 - slider.currentSlide + slider.cloneOffset : slider.currentSlide + slider.cloneOffset; - // VERTICAL: - if (vertical && !carousel) { - slider.container.height((slider.count + slider.cloneCount) * 200 + "%").css("position", "absolute").width("100%"); - setTimeout(function(){ - slider.newSlides.css({"display": "block"}); - slider.doMath(); - slider.viewport.height(slider.h); - slider.setProps(sliderOffset * slider.h, "init"); - }, (type === "init") ? 100 : 0); - } else { - slider.container.width((slider.count + slider.cloneCount) * 200 + "%"); - slider.setProps(sliderOffset * slider.computedW, "init"); - setTimeout(function(){ - slider.doMath(); - slider.newSlides.css({"width": slider.computedW, "marginRight" : slider.computedM, "float": "left", "display": "block"}); - // SMOOTH HEIGHT: - if (slider.vars.smoothHeight) { methods.smoothHeight(); } - }, (type === "init") ? 100 : 0); - } - } else { // FADE: - slider.slides.css({"width": "100%", "float": "left", "marginRight": "-100%", "position": "relative"}); - if (type === "init") { - if (!touch) { - //slider.slides.eq(slider.currentSlide).fadeIn(slider.vars.animationSpeed, slider.vars.easing); - if (slider.vars.fadeFirstSlide == false) { - slider.slides.css({ "opacity": 0, "display": "block", "zIndex": 1 }).eq(slider.currentSlide).css({"zIndex": 2}).css({"opacity": 1}); - } else { - slider.slides.css({ "opacity": 0, "display": "block", "zIndex": 1 }).eq(slider.currentSlide).css({"zIndex": 2}).animate({"opacity": 1},slider.vars.animationSpeed,slider.vars.easing); - } - } else { - slider.slides.css({ "opacity": 0, "display": "block", "webkitTransition": "opacity " + slider.vars.animationSpeed / 1000 + "s ease", "zIndex": 1 }).eq(slider.currentSlide).css({ "opacity": 1, "zIndex": 2}); - } - } - // SMOOTH HEIGHT: - if (slider.vars.smoothHeight) { methods.smoothHeight(); } - } - // !CAROUSEL: - // CANDIDATE: active slide - if (!carousel) { slider.slides.removeClass(namespace + "active-slide").eq(slider.currentSlide).addClass(namespace + "active-slide"); } - - //FlexSlider: init() Callback - slider.vars.init(slider); - }; - - slider.doMath = function() { - var slide = slider.slides.first(), - slideMargin = slider.vars.itemMargin, - minItems = slider.vars.minItems, - maxItems = slider.vars.maxItems; - - slider.w = (slider.viewport===undefined) ? slider.width() : slider.viewport.width(); - slider.h = slide.height(); - slider.boxPadding = slide.outerWidth() - slide.width(); - - // CAROUSEL: - if (carousel) { - slider.itemT = slider.vars.itemWidth + slideMargin; - slider.itemM = slideMargin; - slider.minW = (minItems) ? minItems * slider.itemT : slider.w; - slider.maxW = (maxItems) ? (maxItems * slider.itemT) - slideMargin : slider.w; - slider.itemW = (slider.minW > slider.w) ? (slider.w - (slideMargin * (minItems - 1)))/minItems : - (slider.maxW < slider.w) ? (slider.w - (slideMargin * (maxItems - 1)))/maxItems : - (slider.vars.itemWidth > slider.w) ? slider.w : slider.vars.itemWidth; - - slider.visible = Math.floor(slider.w/(slider.itemW)); - slider.move = (slider.vars.move > 0 && slider.vars.move < slider.visible ) ? slider.vars.move : slider.visible; - slider.pagingCount = Math.ceil(((slider.count - slider.visible)/slider.move) + 1); - slider.last = slider.pagingCount - 1; - slider.limit = (slider.pagingCount === 1) ? 0 : - (slider.vars.itemWidth > slider.w) ? (slider.itemW * (slider.count - 1)) + (slideMargin * (slider.count - 1)) : ((slider.itemW + slideMargin) * slider.count) - slider.w - slideMargin; - } else { - slider.itemW = slider.w; - slider.itemM = slideMargin; - slider.pagingCount = slider.count; - slider.last = slider.count - 1; - } - slider.computedW = slider.itemW - slider.boxPadding; - slider.computedM = slider.itemM; - }; - - slider.update = function(pos, action) { - slider.doMath(); - - // update currentSlide and slider.animatingTo if necessary - if (!carousel) { - if (pos < slider.currentSlide) { - slider.currentSlide += 1; - } else if (pos <= slider.currentSlide && pos !== 0) { - slider.currentSlide -= 1; - } - slider.animatingTo = slider.currentSlide; - } - - // update controlNav - if (slider.vars.controlNav && !slider.manualControls) { - if ((action === "add" && !carousel) || slider.pagingCount > slider.controlNav.length) { - methods.controlNav.update("add"); - } else if ((action === "remove" && !carousel) || slider.pagingCount < slider.controlNav.length) { - if (carousel && slider.currentSlide > slider.last) { - slider.currentSlide -= 1; - slider.animatingTo -= 1; - } - methods.controlNav.update("remove", slider.last); - } - } - // update directionNav - if (slider.vars.directionNav) { methods.directionNav.update(); } - - }; - - slider.addSlide = function(obj, pos) { - var $obj = $(obj); - - slider.count += 1; - slider.last = slider.count - 1; - - // append new slide - if (vertical && reverse) { - (pos !== undefined) ? slider.slides.eq(slider.count - pos).after($obj) : slider.container.prepend($obj); - } else { - (pos !== undefined) ? slider.slides.eq(pos).before($obj) : slider.container.append($obj); - } - - // update currentSlide, animatingTo, controlNav, and directionNav - slider.update(pos, "add"); - - // update slider.slides - slider.slides = $(slider.vars.selector + ':not(.clone)', slider); - // re-setup the slider to accomdate new slide - slider.setup(); - - //FlexSlider: added() Callback - slider.vars.added(slider); - }; - slider.removeSlide = function(obj) { - var pos = (isNaN(obj)) ? slider.slides.index($(obj)) : obj; - - // update count - slider.count -= 1; - slider.last = slider.count - 1; - - // remove slide - if (isNaN(obj)) { - $(obj, slider.slides).remove(); - } else { - (vertical && reverse) ? slider.slides.eq(slider.last).remove() : slider.slides.eq(obj).remove(); - } - - // update currentSlide, animatingTo, controlNav, and directionNav - slider.doMath(); - slider.update(pos, "remove"); - - // update slider.slides - slider.slides = $(slider.vars.selector + ':not(.clone)', slider); - // re-setup the slider to accomdate new slide - slider.setup(); - - // FlexSlider: removed() Callback - slider.vars.removed(slider); - }; - - //FlexSlider: Initialize - methods.init(); - }; - - // Ensure the slider isn't focussed if the window loses focus. - $( window ).blur( function ( e ) { - focused = false; - }).focus( function ( e ) { - focused = true; - }); - - //FlexSlider: Default Settings - $.flexslider.defaults = { - namespace: "flex-", //{NEW} String: Prefix string attached to the class of every element generated by the plugin - selector: ".slides > li", //{NEW} Selector: Must match a simple pattern. '{container} > {slide}' -- Ignore pattern at your own peril - animation: "fade", //String: Select your animation type, "fade" or "slide" - easing: "swing", //{NEW} String: Determines the easing method used in jQuery transitions. jQuery easing plugin is supported! - direction: "horizontal", //String: Select the sliding direction, "horizontal" or "vertical" - reverse: false, //{NEW} Boolean: Reverse the animation direction - animationLoop: true, //Boolean: Should the animation loop? If false, directionNav will received "disable" classes at either end - smoothHeight: false, //{NEW} Boolean: Allow height of the slider to animate smoothly in horizontal mode - startAt: 0, //Integer: The slide that the slider should start on. Array notation (0 = first slide) - slideshow: true, //Boolean: Animate slider automatically - slideshowSpeed: 7000, //Integer: Set the speed of the slideshow cycling, in milliseconds - animationSpeed: 600, //Integer: Set the speed of animations, in milliseconds - initDelay: 0, //{NEW} Integer: Set an initialization delay, in milliseconds - randomize: false, //Boolean: Randomize slide order - fadeFirstSlide: true, //Boolean: Fade in the first slide when animation type is "fade" - thumbCaptions: false, //Boolean: Whether or not to put captions on thumbnails when using the "thumbnails" controlNav. - - // Usability features - pauseOnAction: true, //Boolean: Pause the slideshow when interacting with control elements, highly recommended. - pauseOnHover: false, //Boolean: Pause the slideshow when hovering over slider, then resume when no longer hovering - pauseInvisible: true, //{NEW} Boolean: Pause the slideshow when tab is invisible, resume when visible. Provides better UX, lower CPU usage. - useCSS: true, //{NEW} Boolean: Slider will use CSS3 transitions if available - touch: true, //{NEW} Boolean: Allow touch swipe navigation of the slider on touch-enabled devices - video: false, //{NEW} Boolean: If using video in the slider, will prevent CSS3 3D Transforms to avoid graphical glitches - - // Primary Controls - controlNav: true, //Boolean: Create navigation for paging control of each slide? Note: Leave true for manualControls usage - directionNav: true, //Boolean: Create navigation for previous/next navigation? (true/false) - prevText: "Previous", //String: Set the text for the "previous" directionNav item - nextText: "Next", //String: Set the text for the "next" directionNav item - - // Secondary Navigation - keyboard: true, //Boolean: Allow slider navigating via keyboard left/right keys - multipleKeyboard: false, //{NEW} Boolean: Allow keyboard navigation to affect multiple sliders. Default behavior cuts out keyboard navigation with more than one slider present. - mousewheel: false, //{UPDATED} Boolean: Requires jquery.mousewheel.js (https://github.com/brandonaaron/jquery-mousewheel) - Allows slider navigating via mousewheel - pausePlay: false, //Boolean: Create pause/play dynamic element - pauseText: "Pause", //String: Set the text for the "pause" pausePlay item - playText: "Play", //String: Set the text for the "play" pausePlay item - - // Special properties - controlsContainer: "", //{UPDATED} jQuery Object/Selector: Declare which container the navigation elements should be appended too. Default container is the FlexSlider element. Example use would be $(".flexslider-container"). Property is ignored if given element is not found. - manualControls: "", //{UPDATED} jQuery Object/Selector: Declare custom control navigation. Examples would be $(".flex-control-nav li") or "#tabs-nav li img", etc. The number of elements in your controlNav should match the number of slides/tabs. - customDirectionNav: "", //{NEW} jQuery Object/Selector: Custom prev / next button. Must be two jQuery elements. In order to make the events work they have to have the classes "prev" and "next" (plus namespace) - sync: "", //{NEW} Selector: Mirror the actions performed on this slider with another slider. Use with care. - asNavFor: "", //{NEW} Selector: Internal property exposed for turning the slider into a thumbnail navigation for another slider - - // Carousel Options - itemWidth: 0, //{NEW} Integer: Box-model width of individual carousel items, including horizontal borders and padding. - itemMargin: 0, //{NEW} Integer: Margin between carousel items. - minItems: 1, //{NEW} Integer: Minimum number of carousel items that should be visible. Items will resize fluidly when below this. - maxItems: 0, //{NEW} Integer: Maxmimum number of carousel items that should be visible. Items will resize fluidly when above this limit. - move: 0, //{NEW} Integer: Number of carousel items that should move on animation. If 0, slider will move all visible items. - allowOneSlide: true, //{NEW} Boolean: Whether or not to allow a slider comprised of a single slide - - // Callback API - start: function(){}, //Callback: function(slider) - Fires when the slider loads the first slide - before: function(){}, //Callback: function(slider) - Fires asynchronously with each slider animation - after: function(){}, //Callback: function(slider) - Fires after each slider animation completes - end: function(){}, //Callback: function(slider) - Fires when the slider reaches the last slide (asynchronous) - added: function(){}, //{NEW} Callback: function(slider) - Fires after a slide is added - removed: function(){}, //{NEW} Callback: function(slider) - Fires after a slide is removed - init: function() {} //{NEW} Callback: function(slider) - Fires after the slider is initially setup - }; - - //FlexSlider: Plugin Function - $.fn.flexslider = function(options) { - if (options === undefined) { options = {}; } - - if (typeof options === "object") { - return this.each(function() { - var $this = $(this), - selector = (options.selector) ? options.selector : ".slides > li", - $slides = $this.find(selector); - - if ( ( $slides.length === 1 && options.allowOneSlide === true ) || $slides.length === 0 ) { - $slides.fadeIn(400); - if (options.start) { options.start($this); } - } else if ($this.data('flexslider') === undefined) { - new $.flexslider(this, options); - } - }); - } else { - // Helper strings to quickly perform functions on the slider - var $slider = $(this).data('flexslider'); - switch (options) { - case "play": $slider.play(); break; - case "pause": $slider.pause(); break; - case "stop": $slider.stop(); break; - case "next": $slider.flexAnimate($slider.getTarget("next"), true); break; - case "prev": - case "previous": $slider.flexAnimate($slider.getTarget("prev"), true); break; - default: if (typeof options === "number") { $slider.flexAnimate(options, true); } - } - } - }; -})(jQuery); diff --git a/inc/js/dev/modernizr.js b/inc/js/dev/modernizr.js deleted file mode 100644 index 6194b5c..0000000 --- a/inc/js/dev/modernizr.js +++ /dev/null @@ -1,519 +0,0 @@ -/* Modernizr 2.8.3 (Custom Build) | MIT & BSD - * Build: http://modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-flexboxlegacy-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-webgl-shiv-mq-cssclasses-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load - */ -; -window.Modernizr = function(a, b, c) { - function D(a) { - j.cssText = a - } - - function E(a, b) { - return D(n.join(a + ";") + (b || "")) - } - - function F(a, b) { - return typeof a === b - } - - function G(a, b) { - return !!~("" + a).indexOf(b) - } - - function H(a, b) { - for (var d in a) { - var e = a[d]; - if (!G(e, "-") && j[e] !== c) return b == "pfx" ? e : !0 - } - return !1 - } - - function I(a, b, d) { - for (var e in a) { - var f = b[a[e]]; - if (f !== c) return d === !1 ? a[e] : F(f, "function") ? f.bind(d || b) : f - } - return !1 - } - - function J(a, b, c) { - var d = a.charAt(0).toUpperCase() + a.slice(1), - e = (a + " " + p.join(d + " ") + d).split(" "); - return F(b, "string") || F(b, "undefined") ? H(e, b) : (e = (a + " " + q.join(d + " ") + d).split(" "), I(e, b, c)) - } - - function K() { - e.input = function(c) { - for (var d = 0, e = c.length; d < e; d++) u[c[d]] = c[d] in k; - return u.list && (u.list = !!b.createElement("datalist") && !!a.HTMLDataListElement), u - }("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")), e.inputtypes = function(a) { - for (var d = 0, e, f, h, i = a.length; d < i; d++) k.setAttribute("type", f = a[d]), e = k.type !== "text", e && (k.value = l, k.style.cssText = "position:absolute;visibility:hidden;", /^range$/.test(f) && k.style.WebkitAppearance !== c ? (g.appendChild(k), h = b.defaultView, e = h.getComputedStyle && h.getComputedStyle(k, null).WebkitAppearance !== "textfield" && k.offsetHeight !== 0, g.removeChild(k)) : /^(search|tel)$/.test(f) || (/^(url|email)$/.test(f) ? e = k.checkValidity && k.checkValidity() === !1 : e = k.value != l)), t[a[d]] = !!e; - return t - }("search tel url email datetime date month week time datetime-local number range color".split(" ")) - } - var d = "2.8.3", - e = {}, - f = !0, - g = b.documentElement, - h = "modernizr", - i = b.createElement(h), - j = i.style, - k = b.createElement("input"), - l = ":)", - m = {}.toString, - n = " -webkit- -moz- -o- -ms- ".split(" "), - o = "Webkit Moz O ms", - p = o.split(" "), - q = o.toLowerCase().split(" "), - r = { - svg: "http://www.w3.org/2000/svg" - }, - s = {}, - t = {}, - u = {}, - v = [], - w = v.slice, - x, y = function(a, c, d, e) { - var f, i, j, k, l = b.createElement("div"), - m = b.body, - n = m || b.createElement("body"); - if (parseInt(d, 10)) - while (d--) j = b.createElement("div"), j.id = e ? e[d] : h + (d + 1), l.appendChild(j); - return f = ["­", '"].join(""), l.id = h, (m ? l : n).innerHTML += f, n.appendChild(l), m || (n.style.background = "", n.style.overflow = "hidden", k = g.style.overflow, g.style.overflow = "hidden", g.appendChild(n)), i = c(l, a), m ? l.parentNode.removeChild(l) : (n.parentNode.removeChild(n), g.style.overflow = k), !!i - }, - z = function(b) { - var c = a.matchMedia || a.msMatchMedia; - if (c) return c(b) && c(b).matches || !1; - var d; - return y("@media " + b + " { #" + h + " { position: absolute; } }", function(b) { - d = (a.getComputedStyle ? getComputedStyle(b, null) : b.currentStyle)["position"] == "absolute" - }), d - }, - A = function() { - function d(d, e) { - e = e || b.createElement(a[d] || "div"), d = "on" + d; - var f = d in e; - return f || (e.setAttribute || (e = b.createElement("div")), e.setAttribute && e.removeAttribute && (e.setAttribute(d, ""), f = F(e[d], "function"), F(e[d], "undefined") || (e[d] = c), e.removeAttribute(d))), e = null, f - } - var a = { - select: "input", - change: "input", - submit: "form", - reset: "form", - error: "img", - load: "img", - abort: "img" - }; - return d - }(), - B = {}.hasOwnProperty, - C; - !F(B, "undefined") && !F(B.call, "undefined") ? C = function(a, b) { - return B.call(a, b) - } : C = function(a, b) { - return b in a && F(a.constructor.prototype[b], "undefined") - }, Function.prototype.bind || (Function.prototype.bind = function(b) { - var c = this; - if (typeof c != "function") throw new TypeError; - var d = w.call(arguments, 1), - e = function() { - if (this instanceof e) { - var a = function() {}; - a.prototype = c.prototype; - var f = new a, - g = c.apply(f, d.concat(w.call(arguments))); - return Object(g) === g ? g : f - } - return c.apply(b, d.concat(w.call(arguments))) - }; - return e - }), s.flexbox = function() { - return J("flexWrap") - }, s.flexboxlegacy = function() { - return J("boxDirection") - }, s.canvas = function() { - var a = b.createElement("canvas"); - return !!a.getContext && !!a.getContext("2d") - }, s.canvastext = function() { - return !!e.canvas && !!F(b.createElement("canvas").getContext("2d").fillText, "function") - }, s.webgl = function() { - return !!a.WebGLRenderingContext - }, s.touch = function() { - var c; - return "ontouchstart" in a || a.DocumentTouch && b instanceof DocumentTouch ? c = !0 : y(["@media (", n.join("touch-enabled),("), h, ")", "{#modernizr{top:9px;position:absolute}}"].join(""), function(a) { - c = a.offsetTop === 9 - }), c - }, s.geolocation = function() { - return "geolocation" in navigator - }, s.postmessage = function() { - return !!a.postMessage - }, s.websqldatabase = function() { - return !!a.openDatabase - }, s.indexedDB = function() { - return !!J("indexedDB", a) - }, s.hashchange = function() { - return A("hashchange", a) && (b.documentMode === c || b.documentMode > 7) - }, s.history = function() { - return !!a.history && !!history.pushState - }, s.draganddrop = function() { - var a = b.createElement("div"); - return "draggable" in a || "ondragstart" in a && "ondrop" in a - }, s.websockets = function() { - return "WebSocket" in a || "MozWebSocket" in a - }, s.rgba = function() { - return D("background-color:rgba(150,255,150,.5)"), G(j.backgroundColor, "rgba") - }, s.hsla = function() { - return D("background-color:hsla(120,40%,100%,.5)"), G(j.backgroundColor, "rgba") || G(j.backgroundColor, "hsla") - }, s.multiplebgs = function() { - return D("background:url(https://),url(https://),red url(https://)"), /(url\s*\(.*?){3}/.test(j.background) - }, s.backgroundsize = function() { - return J("backgroundSize") - }, s.borderimage = function() { - return J("borderImage") - }, s.borderradius = function() { - return J("borderRadius") - }, s.boxshadow = function() { - return J("boxShadow") - }, s.textshadow = function() { - return b.createElement("div").style.textShadow === "" - }, s.opacity = function() { - return E("opacity:.55"), /^0.55$/.test(j.opacity) - }, s.cssanimations = function() { - return J("animationName") - }, s.csscolumns = function() { - return J("columnCount") - }, s.cssgradients = function() { - var a = "background-image:", - b = "gradient(linear,left top,right bottom,from(#9f9),to(white));", - c = "linear-gradient(left top,#9f9, white);"; - return D((a + "-webkit- ".split(" ").join(b + a) + n.join(c + a)).slice(0, -a.length)), G(j.backgroundImage, "gradient") - }, s.cssreflections = function() { - return J("boxReflect") - }, s.csstransforms = function() { - return !!J("transform") - }, s.csstransforms3d = function() { - var a = !!J("perspective"); - return a && "webkitPerspective" in g.style && y("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}", function(b, c) { - a = b.offsetLeft === 9 && b.offsetHeight === 3 - }), a - }, s.csstransitions = function() { - return J("transition") - }, s.fontface = function() { - var a; - return y('@font-face {font-family:"font";src:url("https://")}', function(c, d) { - var e = b.getElementById("smodernizr"), - f = e.sheet || e.styleSheet, - g = f ? f.cssRules && f.cssRules[0] ? f.cssRules[0].cssText : f.cssText || "" : ""; - a = /src/i.test(g) && g.indexOf(d.split(" ")[0]) === 0 - }), a - }, s.generatedcontent = function() { - var a; - return y(["#", h, "{font:0/0 a}#", h, ':after{content:"', l, '";visibility:hidden;font:3px/1 a}'].join(""), function(b) { - a = b.offsetHeight >= 3 - }), a - }, s.video = function() { - var a = b.createElement("video"), - c = !1; - try { - if (c = !!a.canPlayType) c = new Boolean(c), c.ogg = a.canPlayType('video/ogg; codecs="theora"').replace(/^no$/, ""), c.h264 = a.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/, ""), c.webm = a.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/, "") - } catch (d) {} - return c - }, s.audio = function() { - var a = b.createElement("audio"), - c = !1; - try { - if (c = !!a.canPlayType) c = new Boolean(c), c.ogg = a.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/, ""), c.mp3 = a.canPlayType("audio/mpeg;").replace(/^no$/, ""), c.wav = a.canPlayType('audio/wav; codecs="1"').replace(/^no$/, ""), c.m4a = (a.canPlayType("audio/x-m4a;") || a.canPlayType("audio/aac;")).replace(/^no$/, "") - } catch (d) {} - return c - }, s.localstorage = function() { - try { - return localStorage.setItem(h, h), localStorage.removeItem(h), !0 - } catch (a) { - return !1 - } - }, s.sessionstorage = function() { - try { - return sessionStorage.setItem(h, h), sessionStorage.removeItem(h), !0 - } catch (a) { - return !1 - } - }, s.webworkers = function() { - return !!a.Worker - }, s.applicationcache = function() { - return !!a.applicationCache - }, s.svg = function() { - return !!b.createElementNS && !!b.createElementNS(r.svg, "svg").createSVGRect - }, s.inlinesvg = function() { - var a = b.createElement("div"); - return a.innerHTML = "", (a.firstChild && a.firstChild.namespaceURI) == r.svg - }, s.smil = function() { - return !!b.createElementNS && /SVGAnimate/.test(m.call(b.createElementNS(r.svg, "animate"))) - }, s.svgclippaths = function() { - return !!b.createElementNS && /SVGClipPath/.test(m.call(b.createElementNS(r.svg, "clipPath"))) - }; - for (var L in s) C(s, L) && (x = L.toLowerCase(), e[x] = s[L](), v.push((e[x] ? "" : "no-") + x)); - return e.input || K(), e.addTest = function(a, b) { - if (typeof a == "object") - for (var d in a) C(a, d) && e.addTest(d, a[d]); - else { - a = a.toLowerCase(); - if (e[a] !== c) return e; - b = typeof b == "function" ? b() : b, typeof f != "undefined" && f && (g.className += " " + (b ? "" : "no-") + a), e[a] = b - } - return e - }, D(""), i = k = null, - function(a, b) { - function l(a, b) { - var c = a.createElement("p"), - d = a.getElementsByTagName("head")[0] || a.documentElement; - return c.innerHTML = "x", d.insertBefore(c.lastChild, d.firstChild) - } - - function m() { - var a = s.elements; - return typeof a == "string" ? a.split(" ") : a - } - - function n(a) { - var b = j[a[h]]; - return b || (b = {}, i++, a[h] = i, j[i] = b), b - } - - function o(a, c, d) { - c || (c = b); - if (k) return c.createElement(a); - d || (d = n(c)); - var g; - return d.cache[a] ? g = d.cache[a].cloneNode() : f.test(a) ? g = (d.cache[a] = d.createElem(a)).cloneNode() : g = d.createElem(a), g.canHaveChildren && !e.test(a) && !g.tagUrn ? d.frag.appendChild(g) : g - } - - function p(a, c) { - a || (a = b); - if (k) return a.createDocumentFragment(); - c = c || n(a); - var d = c.frag.cloneNode(), - e = 0, - f = m(), - g = f.length; - for (; e < g; e++) d.createElement(f[e]); - return d - } - - function q(a, b) { - b.cache || (b.cache = {}, b.createElem = a.createElement, b.createFrag = a.createDocumentFragment, b.frag = b.createFrag()), a.createElement = function(c) { - return s.shivMethods ? o(c, a, b) : b.createElem(c) - }, a.createDocumentFragment = Function("h,f", "return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&(" + m().join().replace(/[\w\-]+/g, function(a) { - return b.createElem(a), b.frag.createElement(a), 'c("' + a + '")' - }) + ");return n}")(s, b.frag) - } - - function r(a) { - a || (a = b); - var c = n(a); - return s.shivCSS && !g && !c.hasCSS && (c.hasCSS = !!l(a, "article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")), k || q(a, c), a - } - var c = "3.7.0", - d = a.html5 || {}, - e = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i, - f = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i, - g, h = "_html5shiv", - i = 0, - j = {}, - k; - (function() { - try { - var a = b.createElement("a"); - a.innerHTML = "", g = "hidden" in a, k = a.childNodes.length == 1 || function() { - b.createElement("a"); - var a = b.createDocumentFragment(); - return typeof a.cloneNode == "undefined" || typeof a.createDocumentFragment == "undefined" || typeof a.createElement == "undefined" - }() - } catch (c) { - g = !0, k = !0 - } - })(); - var s = { - elements: d.elements || "abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video", - version: c, - shivCSS: d.shivCSS !== !1, - supportsUnknownElements: k, - shivMethods: d.shivMethods !== !1, - type: "default", - shivDocument: r, - createElement: o, - createDocumentFragment: p - }; - a.html5 = s, r(b) - }(this, b), e._version = d, e._prefixes = n, e._domPrefixes = q, e._cssomPrefixes = p, e.mq = z, e.hasEvent = A, e.testProp = function(a) { - return H([a]) - }, e.testAllProps = J, e.testStyles = y, g.className = g.className.replace(/(^|\s)no-js(\s|$)/, "$1$2") + (f ? " js " + v.join(" ") : ""), e - }(this, this.document), - function(a, b, c) { - function d(a) { - return "[object Function]" == o.call(a) - } - - function e(a) { - return "string" == typeof a - } - - function f() {} - - function g(a) { - return !a || "loaded" == a || "complete" == a || "uninitialized" == a - } - - function h() { - var a = p.shift(); - q = 1, a ? a.t ? m(function() { - ("c" == a.t ? B.injectCss : B.injectJs)(a.s, 0, a.a, a.x, a.e, 1) - }, 0) : (a(), h()) : q = 0 - } - - function i(a, c, d, e, f, i, j) { - function k(b) { - if (!o && g(l.readyState) && (u.r = o = 1, !q && h(), l.onload = l.onreadystatechange = null, b)) { - "img" != a && m(function() { - t.removeChild(l) - }, 50); - for (var d in y[c]) y[c].hasOwnProperty(d) && y[c][d].onload() - } - } - var j = j || B.errorTimeout, - l = b.createElement(a), - o = 0, - r = 0, - u = { - t: d, - s: c, - e: f, - a: i, - x: j - }; - 1 === y[c] && (r = 1, y[c] = []), "object" == a ? l.data = c : (l.src = c, l.type = a), l.width = l.height = "0", l.onerror = l.onload = l.onreadystatechange = function() { - k.call(this, r) - }, p.splice(e, 0, u), "img" != a && (r || 2 === y[c] ? (t.insertBefore(l, s ? null : n), m(k, j)) : y[c].push(l)) - } - - function j(a, b, c, d, f) { - return q = 0, b = b || "j", e(a) ? i("c" == b ? v : u, a, b, this.i++, c, d, f) : (p.splice(this.i++, 0, a), 1 == p.length && h()), this - } - - function k() { - var a = B; - return a.loader = { - load: j, - i: 0 - }, a - } - var l = b.documentElement, - m = a.setTimeout, - n = b.getElementsByTagName("script")[0], - o = {}.toString, - p = [], - q = 0, - r = "MozAppearance" in l.style, - s = r && !!b.createRange().compareNode, - t = s ? l : n.parentNode, - l = a.opera && "[object Opera]" == o.call(a.opera), - l = !!b.attachEvent && !l, - u = r ? "object" : l ? "script" : "img", - v = l ? "script" : u, - w = Array.isArray || function(a) { - return "[object Array]" == o.call(a) - }, - x = [], - y = {}, - z = { - timeout: function(a, b) { - return b.length && (a.timeout = b[0]), a - } - }, - A, B; - B = function(a) { - function b(a) { - var a = a.split("!"), - b = x.length, - c = a.pop(), - d = a.length, - c = { - url: c, - origUrl: c, - prefixes: a - }, - e, f, g; - for (f = 0; f < d; f++) g = a[f].split("="), (e = z[g.shift()]) && (c = e(c, g)); - for (f = 0; f < b; f++) c = x[f](c); - return c - } - - function g(a, e, f, g, h) { - var i = b(a), - j = i.autoCallback; - i.url.split(".").pop().split("?").shift(), i.bypass || (e && (e = d(e) ? e : e[a] || e[g] || e[a.split("/").pop().split("?")[0]]), i.instead ? i.instead(a, e, f, g, h) : (y[i.url] ? i.noexec = !0 : y[i.url] = 1, f.load(i.url, i.forceCSS || !i.forceJS && "css" == i.url.split(".").pop().split("?").shift() ? "c" : c, i.noexec, i.attrs, i.timeout), (d(e) || d(j)) && f.load(function() { - k(), e && e(i.origUrl, h, g), j && j(i.origUrl, h, g), y[i.url] = 2 - }))) - } - - function h(a, b) { - function c(a, c) { - if (a) { - if (e(a)) c || (j = function() { - var a = [].slice.call(arguments); - k.apply(this, a), l() - }), g(a, j, b, 0, h); - else if (Object(a) === a) - for (n in m = function() { - var b = 0, - c; - for (c in a) a.hasOwnProperty(c) && b++; - return b - }(), a) a.hasOwnProperty(n) && (!c && !--m && (d(j) ? j = function() { - var a = [].slice.call(arguments); - k.apply(this, a), l() - } : j[n] = function(a) { - return function() { - var b = [].slice.call(arguments); - a && a.apply(this, b), l() - } - }(k[n])), g(a[n], j, b, n, h)) - } else !c && l() - } - var h = !!a.test, - i = a.load || a.both, - j = a.callback || f, - k = j, - l = a.complete || f, - m, n; - c(h ? a.yep : a.nope, !!i), i && c(i) - } - var i, j, l = this.yepnope.loader; - if (e(a)) g(a, 0, l, 0); - else if (w(a)) - for (i = 0; i < a.length; i++) j = a[i], e(j) ? g(j, 0, l, 0) : w(j) ? B(j) : Object(j) === j && h(j, l); - else Object(a) === a && h(a, l) - }, B.addPrefix = function(a, b) { - z[a] = b - }, B.addFilter = function(a) { - x.push(a) - }, B.errorTimeout = 1e4, null == b.readyState && b.addEventListener && (b.readyState = "loading", b.addEventListener("DOMContentLoaded", A = function() { - b.removeEventListener("DOMContentLoaded", A, 0), b.readyState = "complete" - }, 0)), a.yepnope = k(), a.yepnope.executeStack = h, a.yepnope.injectJs = function(a, c, d, e, i, j) { - var k = b.createElement("script"), - l, o, e = e || B.errorTimeout; - k.src = a; - for (o in d) k.setAttribute(o, d[o]); - c = j ? h : c || f, k.onreadystatechange = k.onload = function() { - !l && g(k.readyState) && (l = 1, c(), k.onload = k.onreadystatechange = null) - }, m(function() { - l || (l = 1, c(1)) - }, e), i ? k.onload() : n.parentNode.insertBefore(k, n) - }, a.yepnope.injectCss = function(a, c, d, e, g, i) { - var e = b.createElement("link"), - j, c = i ? h : c || f; - e.href = a, e.rel = "stylesheet", e.type = "text/css"; - for (j in d) e.setAttribute(j, d[j]); - g || (n.parentNode.insertBefore(e, n), m(c, 0)) - } - }(this, document), Modernizr.load = function() { - yepnope.apply(window, [].slice.call(arguments, 0)) - }; \ No newline at end of file diff --git a/inc/js/header.js b/inc/js/header.js deleted file mode 100644 index fc35e17..0000000 --- a/inc/js/header.js +++ /dev/null @@ -1,67 +0,0 @@ -(function ( $ ) { - var headerNavWidth = 0; - - function recalculateHeader () - { - var oldState = $('#primary-header').hasClass('toggle-nav'); - - $('#primary-header').removeClass('toggle-nav'); - - var headerInnerWidth = $('#primary-header > .container').innerWidth(); - var headerLogoWidth = $('#header-logo').width(); - var headerRightWidth = $('#header-right-content').width(); - var totalWidth = headerNavWidth + headerLogoWidth + headerRightWidth; - - var newState = headerInnerWidth < headerNavWidth + headerLogoWidth + headerRightWidth; - - if (newState != oldState) { - $('#header-nav').removeClass('active'); - } - - $('#primary-header').toggleClass('toggle-nav', newState); - } - - $(document).ready(function() - { - headerNavWidth = $('#header-nav').outerWidth(); - - $('#header-search-form').addClass('js'); - $('#header-search-submit').attr('type', 'button'); - - if ($('#header-search-input').val() != '') { - $('#header-search-form').addClass('active'); - } - - $('#header-search-submit').click(function( event ) - { - if ($('#header-search-form').hasClass('active') && $('#header-search-input').val().trim() != '') { - $('#header-search-submit').attr('type', 'submit'); - $('#header-search-form').submit(); - } - else { - $('#header-search-input').focus(); - $('#header-search-form').addClass('active'); - } - }); - - $('#header-menu-button').click(function() { - $('#header-nav').toggleClass('active'); - }); - - recalculateHeader(); - }); - - $(window).resize(function() - { - recalculateHeader(); - }); - - $(document).mouseup(function() - { - if ($('#header-search-form').has(document.activeElement).length == 0 && $('#header-search-input').val() == '') { - $('#header-search-form').removeClass('active'); - recalculateHeader(); - } - }); - -}( jQuery )); diff --git a/inc/js/skip-link-focus-fix.js b/inc/js/skip-link-focus-fix.js deleted file mode 100644 index a39cefb..0000000 --- a/inc/js/skip-link-focus-fix.js +++ /dev/null @@ -1,33 +0,0 @@ -/** - * File skip-link-focus-fix.js. - * - * Helps with accessibility for keyboard only users. - * - * Learn more: https://git.io/vWdr2 - */ -( function() { - var isWebkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1, - isOpera = navigator.userAgent.toLowerCase().indexOf( 'opera' ) > -1, - isIe = navigator.userAgent.toLowerCase().indexOf( 'msie' ) > -1; - - if ( ( isWebkit || isOpera || isIe ) && document.getElementById && window.addEventListener ) { - window.addEventListener( 'hashchange', function() { - var id = location.hash.substring( 1 ), - element; - - if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) { - return; - } - - element = document.getElementById( id ); - - if ( element ) { - if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) { - element.tabIndex = -1; - } - - element.focus(); - } - }, false ); - } -})(); diff --git a/inc/metaboxes.php b/inc/metaboxes.php index e7c8b0a..ca8146e 100644 --- a/inc/metaboxes.php +++ b/inc/metaboxes.php @@ -1,101 +1,95 @@
      "; - - if ($depth == 0 && $this->m_item != null) { - $thumbID = $this->m_item->ID; - - if (has_post_thumbnail($this->m_item->object_id)) { - $output .= ''; - } - else { - $output .= ''; - } - - - //''''. - //.'####'.print_r($this->m_item, true).'

    5. '; - } - } - public function end_lvl( &$output, $depth = 0, $args = array() ) { - $output .= ""; - } - - public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { - $indent = '';// ( $depth ) ? str_repeat( "\t", $depth ) : ''; - - $this->m_item = $item; - - if ( strcasecmp( $item->attr_title, 'divider' ) == 0 && $depth === 1 ) { - $output .= $indent . '"; - } - public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { - if ( ! $element ) - return; - - $id_field = $this->db_fields['id']; - - // Display this element. - if ( is_object( $args[0] ) ) - $args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] ); - - parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output ); - } - - - public static function fallback( $args ) { - if ( current_user_can( 'manage_options' ) ) { - - extract( $args ); - - $fb_output = null; - - if ( $container ) { - $fb_output = '<' . $container; - - if ( $container_id ) - $fb_output .= ' id="' . $container_id . '"'; - - if ( $container_class ) - $fb_output .= ' class="' . $container_class . '"'; - - $fb_output .= '>'; - } - - $fb_output .= ''.__( 'Add a menu', 'aether').''; - $fb_output .= ''; - - if ( $container ) - $fb_output .= ''; - - echo $fb_output; - } - } -} diff --git a/inc/socialnav.php b/inc/socialnav.php index 72ceb8e..39370e2 100644 --- a/inc/socialnav.php +++ b/inc/socialnav.php @@ -1,126 +1,126 @@ 'social-menu', 'container' => 'nav', 'container_id' => 'social', 'container_class' => 'social-icons', 'menu_id' => 'menu-social-items', 'menu_class' => 'social-menu', 'depth' => 1, 'fallback_cb' => '', 'link_before' => '', 'link_after' => '' ) ); } } endif; /* aether Social Nav CSS */ -function aether_social_css(){ ?> +function ae_social_css(){ ?> max_num_pages < 2 ) { - return; - } - ?> - - post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) { return; } ?> %2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string .= ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); printf( ''. __( 'Posted on', 'aether' ) .' %1$s', sprintf( '%2$s', esc_url( get_permalink() ), $time_string ), sprintf( '%2$s', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ) ); } endif; /** - * Returns true if a blog has more than 1 category. - */ -function aether_categorized_blog() { - if ( false === ( $all_the_cool_cats = get_transient( 'all_the_cool_cats' ) ) ) { - // Create an array of all the categories that are attached to posts. - $all_the_cool_cats = get_categories( array( - 'hide_empty' => 1, - ) ); - - // Count the number of categories that are attached to the posts. - $all_the_cool_cats = count( $all_the_cool_cats ); - - set_transient( 'all_the_cool_cats', $all_the_cool_cats ); - } - - if ( '1' != $all_the_cool_cats ) { - // This blog has more than 1 category so aether_categorized_blog should return true. - return true; - } else { - // This blog has only 1 category so aether_categorized_blog should return false. - return false; - } -} - -/** - * Flush out the transients used in aether_categorized_blog. + * Flush out the transients used in ae_categorized_blog. */ -function aether_category_transient_flusher() { +function ae_category_transient_flusher() { // Like, beat it. Dig? delete_transient( 'all_the_cool_cats' ); } -add_action( 'edit_category', 'aether_category_transient_flusher' ); -add_action( 'save_post', 'aether_category_transient_flusher' ); +add_action( 'edit_category', 'ae_category_transient_flusher' ); +add_action( 'save_post', 'ae_category_transient_flusher' ); diff --git a/inc/widgets/widget-categories.php b/inc/widgets/widget-categories.php index f35f7c9..72fa535 100644 --- a/inc/widgets/widget-categories.php +++ b/inc/widgets/widget-categories.php @@ -1,129 +1,129 @@ 'aether-cats','description' => esc_html__( "aether widget to display categories" ,'aether') ); parent::__construct('aether-cats', esc_html__('aether Categories','aether'), $widget_ops); } function widget($args , $instance) { extract($args); $title = isset($instance['title']) ? esc_html( $instance['title'] ) : esc_html__('Categories' , 'aether'); $enable_count = ''; if(isset($instance['enable_count'])) $enable_count = $instance['enable_count'] ? $instance['enable_count'] : 'checked'; $limit = isset($instance['limit']) ? esc_html( $instance['limit'] ) : 4; echo $before_widget; echo $before_title; echo $title; echo $after_title; /** * Widget Content */ ?>

      diff --git a/inc/widgets/widget-recent-posts.php b/inc/widgets/widget-recent-posts.php index 026a3f7..51590ff 100644 --- a/inc/widgets/widget-recent-posts.php +++ b/inc/widgets/widget-recent-posts.php @@ -1,133 +1,133 @@ 'aether-recent-posts','description' => esc_html__( "aether recent posts widget with thumbnails", 'aether') ); - parent::__construct('aether_recent_posts', esc_html__('aether Recent Posts Widget','aether'), $widget_ops); + parent::__construct('ae_recent_posts', esc_html__('aether Recent Posts Widget','aether'), $widget_ops); } function widget($args , $instance) { extract($args); $title = isset($instance['title']) ? esc_html( $instance['title'] ) : esc_html__('recent Posts', 'aether'); $limit = isset($instance['limit']) ? esc_html( $instance['limit'] ) : 5; echo $before_widget; echo $before_title; echo $title; echo $after_title; /** * Widget Content */ ?>
      $limit + 1 , 'ignore_sticky_posts' => 1 ); $featured_query = new WP_Query($featured_args); /** * Check if zilla likes plugin exists */ if($featured_query->have_posts()) : while($featured_query->have_posts()) : $featured_query->the_post(); ?>
      -

      diff --git a/inc/widgets/widget-social.php b/inc/widgets/widget-social.php index 0d9632b..fc515bf 100644 --- a/inc/widgets/widget-social.php +++ b/inc/widgets/widget-social.php @@ -1,62 +1,62 @@ 'aether-social','description' => esc_html__( "aether theme widget to display social media icons" ,'aether') ); parent::__construct('aether-social', esc_html__('aether Social Widget','aether'), $widget_ops); } function widget($args , $instance) { extract($args); $title = isset($instance['title']) ? $instance['title'] : esc_html__('Follow us' , 'aether'); echo $before_widget; echo $before_title; echo $title; echo $after_title; /** * Widget Content */ ?>

      diff --git a/includes/async.php b/includes/async.php new file mode 100644 index 0000000..46b286c --- /dev/null +++ b/includes/async.php @@ -0,0 +1,87 @@ +value pairs and compiles them into HTML formatted + * tag attributes. E.g. [id=>'important', 'width'=>'5', 'text'=>'"'] will output + * id="important" width="5" text="\"" + * + * If a value for an attrbute is NULL, it will omit that attribute. It will + * convert boolean values to 0 and 1. + * + * This function will not attempt to sanitize attribute names. + */ +function headerSearch () { + global $wpdb; + global $post; + + $params = struct($_GET, [ + 's' => '', + 'page' => 1 + ]); + + $results = []; + + $query = new \WP_Query([ + 's' => $params->s, + 'posts_per_page' => 10, + 'orderby' => [ + 'IF(wp_posts.post_type = \'app\', 0, 1)' => 'DESC', + 'IF(wp_posts.post_type = \'post\', 1, 0)' => 'DESC', + 'relevance' => 'DESC', + 'post_modified' => 'DESC', + 'post_title' => 'ASC', + ], + ]); + + while ($query->have_posts()) { + if ( $post->post_type != 'post' ) { + continue; + } + + $query->the_post(); + + $results[] = [ + 'title' => get_the_title(), + 'author' => get_the_author(), + 'excerpt' => get_the_excerpt(), + 'url' => get_permalink(), + ]; + } + + rewind_posts(); + + while ($query->have_posts()) { + if ( $post->post_type == 'post' ) { + continue; + } + + $query->the_post(); + + $results[] = [ + 'title' => get_the_title(), + 'author' => get_the_author(), + 'excerpt' => get_the_excerpt(), + 'url' => get_permalink(), + ]; + } + + \wp_send_json([ + 'message' => count($results) == 0 ? __('No results found.', 'aether') : '', + 'totalResults' => count($results), + 'results' => $results + ]); +} + +add_action("wp_ajax_search", "Aether\\headerSearch"); +add_action("wp_ajax_nopriv_search", "Aether\\headerSearch"); + +/** + * End of File + */ diff --git a/includes/sanitizers.php b/includes/sanitizers.php new file mode 100644 index 0000000..0f9c3f8 --- /dev/null +++ b/includes/sanitizers.php @@ -0,0 +1,31 @@ +value pairs and compiles them into HTML formatted + * tag attributes. E.g. [id=>'important', 'width'=>'5', 'text'=>'"'] will output + * id="important" width="5" text="\"" + * + * If a value for an attrbute is NULL, it will omit that attribute. It will + * convert boolean values to 0 and 1. + * + * This function will not attempt to sanitize attribute names. + */ +function sanitizeCheckbox( $input ) { + if ( $input == 1 ) { + return 1; + } else { + return ''; + } +} + + +/** + * End of File + */ diff --git a/includes/template-functions.php b/includes/template-functions.php new file mode 100644 index 0000000..92eedae --- /dev/null +++ b/includes/template-functions.php @@ -0,0 +1,32 @@ +value pairs and compiles them into HTML formatted + * tag attributes. E.g. [id=>'important', 'width'=>'5', 'text'=>'"'] will output + * id="important" width="5" text="\"" + * + * If a value for an attrbute is NULL, it will omit that attribute. It will + * convert boolean values to 0 and 1. + * + * This function will not attempt to sanitize attribute names. + */ +function assembleAttributes ($attributes) { + if (!is_array($attributes) || count($attributes) == 0) { + return ''; + } + + $output = []; + + foreach ($attributes as $name => $value) { + if ($value === null) { + continue; + } + else if ($value === true) { + $value = '1'; + } + else if ($value === false) { + $value = '0'; + } + + $output[] = $name.'="'.($name == 'href' ? esc_url($value) : esc_attr($value)).'"'; + } + + return implode(' ', $output); +} + + +function isExternalLink($url) { + $link = parse_url($url); + $host = parse_url(get_site_url()); + + if (empty($link['host']) || $link['host'] == $host['host']) { + return false; + } + + return strrpos(strtolower($link['host']), $host['host']) !== strlen($link['host']) - strlen($host['host']); +} + + +function getMenuStructure($slug) { + $locations = get_nav_menu_locations(); + + if (empty($locations) || !isset($locations[$slug])) { + return false; + } + + + + $menu = wp_get_nav_menu_object($locations[ $slug ]); + return wp_get_nav_menu_items($menu->term_id); +} + + +/** + * Takes a set of arguments (usually from something like $_GET) and return an + * object conforming to the defaults provided, including type conversion. + */ +function struct ($args, $defaults = []) +{ + if (empty($args)) { + settype($defaults, 'object'); + return $defaults; + } + + // Convert the types if requested + foreach ($defaults as $k => $v) { + if (isset($args[$k])) { + $defaults[$k] = convert($args[$k], $defaults[$k]); + } + } + + settype($defaults, 'object'); + return $defaults; +} + +function convert ($var, $target) +{ + $to = gettype($target); + + if (in_array($to, ['integer','double','string'])) { + settype($var, $to); + return $var; + } + + $from = gettype($var); + + // Do nothing if there is no conversion needed + if ($from == $to && ($to != 'object')) { + return $var; + } + + if ($from == 'string') { + switch ($to) { + case 'boolean': + return stripos('false', $var) !== false ? false : (bool)$var; + + case 'array': + return explode(',', $var); + + case 'object': + $class = get_class($target); + return (object)parse_str($var); + } + } + + settype($var, $to); + return $var; +} + +/** + * End of File + */ diff --git a/index.php b/index.php index 9382cd1..73479b5 100644 --- a/index.php +++ b/index.php @@ -1,46 +1,60 @@
      '; + while (have_posts()) { + the_post(); + get_template_part( 'content', '' ); + } + + echo ''; + } + else { + get_template_part( 'content', 'none' ); + } + + + if ( $GLOBALS['wp_query']->max_num_pages > 1 ): ?> + + '; + get_template_part( 'parts/content-end' ); + get_footer(); -get_header(); ?> - -
      - - -
      " role="main"> - - - -
      - - - - - - - - -
      - - - - - - - - - -
      -
      - - - diff --git a/inc/js/bootstrap.min.js b/js/bootstrap.min.js similarity index 100% rename from inc/js/bootstrap.min.js rename to js/bootstrap.min.js diff --git a/js/cookie.js b/js/cookie.js new file mode 100644 index 0000000..0e19f4f --- /dev/null +++ b/js/cookie.js @@ -0,0 +1,35 @@ +function SetCookie(c_name,value,expiredays) +{ + var exdate=new Date() + exdate.setDate(exdate.getDate()+expiredays) + document.cookie=c_name+ "=" +escape(value)+";path=/"+((expiredays==null) ? "" : ";expires="+exdate.toGMTString()) +} + + +(function( $ ) +{ + $(document).scroll(function() { + if($(window).scrollTop() !== 0) { + $("#cookieWarning").addClass('hidden'); + } + else { + $("#cookieWarning").removeClass('hidden'); + } + }); + + $(document).ready (function () + { + if( document.cookie.indexOf("cookiebannerdismissed") ===-1 ){ + $("#cookieWarning").show(); + + $("#removecookie").click(function () { + SetCookie('cookiebannerdismissed','kde',365*10); + $("#cookieWarning").remove(); + }); + } else + { + $("#cookieWarning").remove(); + } + + }); +})( jQuery ); diff --git a/js/customizer.js b/js/customizer.js new file mode 100644 index 0000000..e78ff11 --- /dev/null +++ b/js/customizer.js @@ -0,0 +1,41 @@ +(function ( $ ) { +/** + * Async customisation utilities + */ + + // Site title and description. + wp.customize( 'blogname', function( value ) { + value.bind( function( to ) { + $( '.site-name a' ).text( to ); + } ); + } ); + + wp.customize( 'blogdescription', function( value ) { + value.bind( function( to ) { + $( '.tagline' ).text( to ); + } ); + } ); + + + /** + * Show / Hide the live search button + * @file /classes/primary-header.php + */ + wp.customize( 'ae_option_livesearch', function( transport ) { + transport.bind( function( value ) { + $('#header-search-mode-toggle').toggle(value); + }); + }); + + + /** + * Show / Hide the user menu + * @file /classes/primary-header.php + */ + wp.customize( 'ae_option_usermenu', function( transport ) { + transport.bind( function( value ) { + $('#header-user-button').toggle(value); + }); + }); + +}( jQuery )); diff --git a/inc/js/flexslider.min.js b/js/flexslider.min.js similarity index 100% rename from inc/js/flexslider.min.js rename to js/flexslider.min.js diff --git a/inc/js/functions.min.js b/js/functions.min.js similarity index 100% rename from inc/js/functions.min.js rename to js/functions.min.js diff --git a/js/header-dropdowns.js b/js/header-dropdowns.js new file mode 100644 index 0000000..b9d3d1f --- /dev/null +++ b/js/header-dropdowns.js @@ -0,0 +1,60 @@ +(function ( $ ) { + var m_headerNavWidth = 0; + + function recalculateHeader () { + var headerInnerWidth = $('#header-container').innerWidth(); + var headerLogoWidth = $('#header-logo').outerWidth(); + var headerRightWidth = $('#header-right-content').outerWidth(); + var headerSearchWidth = $('#header-search-mode-toggle').outerWidth(); + var totalWidth = m_headerNavWidth + headerLogoWidth + headerRightWidth + headerSearchWidth; + var newState = headerInnerWidth < totalWidth + 110; + // The magic number 110 is for spaces or pixel imperfections which may + // cause errors when on the edge of going into burger mode. + // In the future it should calculate based on the next smallest breakpoint. + + $('#primary-header').toggleClass('hamburger-mode', newState); + } + + + function adjustDropMenus () { + var navRightEdge = $('#header-container').offset().left + $('#header-container').width(); + + $('.menu-item-depth-0 > .dropdown-menu').each(function () { + var myRightEdge = $(this).prev('.dropdown-toggle').offset().left + $(this).width(); + var offset = $(window).width() - myRightEdge - 15; + + $(this).css('margin-left', (offset > 0 ? 0 : offset) + 'px'); + }); + } + + + $(window).resize(function() { + recalculateHeader(); + adjustDropMenus(); + }); + + + $(document).ready(function() + { + m_headerNavWidth = $('#header-nav').outerWidth(); + recalculateHeader(); + adjustDropMenus(); + + $('#header-menu-button').click(function(){ + $('#header-nav').toggleClass('open'); + }); + + $('.dropdown-menu').on('click', function (event) { + event.stopPropagation(); + }); + + $(".persistent-panel-menu").on( "click", "a", function() { + if ($(this).attr('href') && $(this).attr('target') == '_blank') { + window.open($(this).attr('href'), '_blank'); + } + else if ($(this).attr('href')) { + window.location.href = $(this).attr('href'); + } + }); + }); +}( jQuery )); diff --git a/js/header-dropdowns.min.js b/js/header-dropdowns.min.js new file mode 100644 index 0000000..697b08d --- /dev/null +++ b/js/header-dropdowns.min.js @@ -0,0 +1 @@ +!function(a){function c(){var c=a("#header-container").innerWidth(),d=a("#header-logo").outerWidth(),e=a("#header-right-content").outerWidth(),f=a("#header-search-mode-toggle").outerWidth(),g=b+d+e+f,h=c .dropdown-menu").each(function(){var b=a(this).prev(".dropdown-toggle").offset().left+a(this).width(),c=a(window).width()-b-15;a(this).css("margin-left",(c>0?0:c)+"px")})}var b=0;a(window).resize(function(){c(),d()}),a(document).ready(function(){b=a("#header-nav").outerWidth(),c(),d(),a("#header-menu-button").click(function(){a("#header-nav").toggleClass("open")}),a(".dropdown-menu").on("click",function(a){a.stopPropagation()}),a(".persistent-panel-menu").on("click","a",function(){a(this).attr("href")&&"_blank"==a(this).attr("target")?window.open(a(this).attr("href"),"_blank"):a(this).attr("href")&&(window.location.href=a(this).attr("href"))})})}(jQuery); diff --git a/js/header-search.js b/js/header-search.js new file mode 100644 index 0000000..9aabe38 --- /dev/null +++ b/js/header-search.js @@ -0,0 +1,192 @@ +(function ( $ ) { + var m_date = new Date(); + var m_searchTimer; + var m_lastKeyPressed; + var m_minSearchLength = 2; + var m_xhrRequest; + var m_nonAlphaNumMultiplier = 1.5; + var m_searchDelayCurve = [1250, 1000, 800, 650, 500, 400, 350]; + var m_cache = {}; + + var $_header = null; + var $_submit = null; + var $_input = null; + var $_form = null; + var $_results = null; + + if (typeof(Storage) !== "undefined" && typeof(localStorage.searchCache) !== "undefined") { + m_cache = JSON.parse(localStorage.searchCache); + cleanCache (); + } + + function dismissSearch() + { + if ($_input.is(':focus')) { + $('body').focus(); + } + $_header.removeClass('search-mode'); + $_submit.prop('disabled', true); + $_input.val(''); + $_form.removeClass(); + $_results.removeClass().empty(); + } + + function cleanCache () + { + for (var i in m_cache) { + if (m_cache[i]['time'] < m_date.getTime() - 1000 * 60 * 60 * 2) + delete m_cache[i]; + } + + localStorage.searchCache = JSON.stringify(m_cache); + } + + function cacheResult (key, data) + { + if (!aetherJsConfig.localCache) { + return; + } + + data['time'] = m_date.getTime(); + m_cache[key] = data; + localStorage.searchCache = JSON.stringify(m_cache); + } + + function runSearch () + { + var cleanInput = $_input.val().trim().toLowerCase(); + var length = cleanInput.length; + + if(m_xhrRequest && m_xhrRequest.readyState != 4){ + m_xhrRequest.abort(); + } + + if (length < m_minSearchLength) { + if (length == 0) { + $_results.empty(); + } + + $_form.removeClass(); + return; + } + + $_form.removeClass(); + $_form.addClass('waiting'); + + m_xhrRequest = $.ajax({ + url: aetherJsConfig.url, + data: { + 'action':'search', + 's' : cleanInput + }, + success: function(data) { + cacheResult(cleanInput, data); + displayData(data); + }, + error: function(errorThrown){ + $_results.empty().removeClass(); + $_form.removeClass(); + } + }); + } + + function displayData (data) + { + $_results.empty().removeClass().addClass('show-results'); + $_form.removeClass(); + + if (data['message']) { + $_results.append( + $('') + .text(data['message']) + ); + } + + for (var i in data['results']) { + var result = data['results'][i]; + $_results.append( + $('') + .attr('href', result['url']) + .text(result['title']) + ); + } + } + + $(document).ready(function() + { + $_header = $('#primary-header'); + $_submit = $('#header-search-submit'); + $_input = $('#header-search-input'); + $_form = $('#header-search-form'); + $_results = $('#header-search-results'); + + $('#header-search-mode-toggle').click(function( event ) + { + $('#header-nav').removeClass('open'); + if ($_header.hasClass('search-mode')) { + dismissSearch(); + } + else { + $_input.val('').focus(); + $_form.addClass('just-started'); + $_header.addClass('search-mode'); + } + }); + + $_submit.click(function( event ) + { + if ($_input.val().trim().length < m_minSearchLength) { + $_form.submit(); + } + }); + + $(document).click(function(event) + { + if(!$(event.target).closest('#header-search-form').length && !$(event.target).closest('#header-search-mode-toggle').length) { + if($_header.hasClass('search-mode')) { + dismissSearch(); + } + } + }); + + $_input.on('keydown', function (event) + { + if (m_searchTimer) { + clearTimeout(m_searchTimer); + } + m_lastKeyPressed = String.fromCharCode(event.which); + }); + + /* + * This function will put in a delay from the last keypress to the start + * of making a request. If the user has typed fewer characters it will + * allot more time to avoid extra requests wile the user is beginning their + * search. It will also allow extra time after non-alphanumeric characters + * have been typed. + */ + $_input.on('keyup', function () + { + var length = $_input.val().trim().length; + var charCounter = length - m_minSearchLength; + var cleanInput = $_input.val().trim().toLowerCase(); + + $_submit.prop('disabled', length < m_minSearchLength); + + if (typeof m_cache[cleanInput] !== 'undefined' && aetherJsConfig.localCache) { + displayData(m_cache[cleanInput]); + return; + } + + if (charCounter >= m_searchDelayCurve.length) { + charCounter = m_searchDelayCurve.length - 1; + } + + if (typeof timer_gear !== "undefined") { + clearTimeout(m_searchTimer); + } + + var timeToWait = !m_lastKeyPressed.match(/[0-9a-zA-Z]/) ? m_searchDelayCurve[charCounter] * m_nonAlphaNumMultiplier : m_searchDelayCurve[charCounter]; + m_searchTimer = setTimeout(runSearch, timeToWait); + }); + }); +}( jQuery )); diff --git a/js/header-search.min.js b/js/header-search.min.js new file mode 100644 index 0000000..75044ee --- /dev/null +++ b/js/header-search.min.js @@ -0,0 +1 @@ +!function(a){function o(){l.is(":focus")&&a("body").focus(),j.removeClass("search-mode"),k.prop("disabled",!0),l.val(""),m.removeClass(),n.removeClass().empty()}function p(){for(var a in i)i[a].time").text(b.message));for(var c in b.results){var d=b.results[c];n.append(a("").attr("href",d.url).text(d.title))}}var c,d,f,b=new Date,e=2,h=[1250,1e3,800,650,500,400,350],i={},j=null,k=null,l=null,m=null,n=null;"undefined"!=typeof Storage&&void 0!==localStorage.searchCache&&(i=JSON.parse(localStorage.searchCache),p()),a(window).resize(function(){recalculateHeader(),adjustDropMenus()}),a(document).ready(function(){j=a("#primary-header"),k=a("#header-search-submit"),l=a("#header-search-input"),m=a("#header-search-form"),n=a("#header-search-results"),a("#header-search-mode-toggle").click(function(b){a("#header-nav").removeClass("open"),j.hasClass("search-mode")?o():(l.val("").focus(),m.addClass("just-started"),j.addClass("search-mode"))}),k.click(function(a){l.val().trim().length=h.length&&(b=h.length-1),"undefined"!=typeof timer_gear&&clearTimeout(c);var j=d.match(/[0-9a-zA-Z]/)?h[b]:1.5*h[b];c=setTimeout(q,j)})})}(jQuery); diff --git a/js/header.js b/js/header.js new file mode 100644 index 0000000..1da1e54 --- /dev/null +++ b/js/header.js @@ -0,0 +1,233 @@ +(function ( $ ) { + var date = new Date(); + var searchTimer; + var lastKey; + var currentSearchValue = ''; + var minLength = 2; + var request; + var timeMultiplierAfterPressingSpace = 1.5; + var characterTimes = [1250, 1000, 800, 650, 500, 400, 350]; + var searchCache = {}; + var headerNavWidth = 0; + + if (typeof(Storage) !== "undefined" && typeof(localStorage.searchCache) !== "undefined") { + searchCache = JSON.parse(localStorage.searchCache); + cleanCache (); + } + + $(window).resize(function() { + recalculateHeader(); + adjustDropMenus(); + }); + + function dismissSearch() { + if ($('#header-search-input').is(':focus')) { + $('body').focus(); + } + $('#primary-header').removeClass('search-mode'); + $('#header-search-submit').prop('disabled', true); + $('#header-search-input').val(''); + $('#header-search-form').removeClass(); + $('#header-search-results').removeClass().empty(); + } + + function recalculateHeader () { + var oldState = $('#primary-header').hasClass('hamburger-mode'); + + var headerInnerWidth = $('#header-container').innerWidth(); + var headerLogoWidth = $('#header-logo').outerWidth(); + var headerRightWidth = $('#header-right-content').outerWidth(); + var headerSearchWidth = $('#header-search-mode-toggle').outerWidth(); + var totalWidth = headerNavWidth + headerLogoWidth + headerRightWidth + headerSearchWidth; + + // The magic number 110 is for spaces or pixel imperfections which may + // cause errors when on the edge of going into burger mode. + // In the future it should calculate based on the next smallest breakpoint. + var newState = headerInnerWidth < totalWidth + 110; + + if (newState != oldState) { + $('#header-nav').removeClass('active'); + } + + $('#primary-header').toggleClass('hamburger-mode', newState); + } + + function cleanCache () { + for (var i in searchCache) { + if (searchCache[i]['time'] < date.getTime() - 1000 * 60 * 60 * 2) + delete searchCache[i]; + } + + localStorage.searchCache = JSON.stringify(searchCache); + } + + function adjustDropMenus () { + var navRightEdge = $('#header-container').offset().left + $('#header-container').width(); + + $('.menu-item-depth-0 > .dropdown-menu').each(function () { + var myRightEdge = $(this).prev('.dropdown-toggle').offset().left + $(this).width(); + var offset = $(window).width() - myRightEdge - 15; + + $(this).css('margin-left', (offset > 0 ? 0 : offset) + 'px'); + }); + } + + function runSearch () { + var cleanInput = $('#header-search-input').val().trim().toLowerCase(); + var length = cleanInput.length; + + if(request && request.readyState != 4){ + request.abort(); + } + + if (length < minLength) { + if (length == 0) { + $('#header-search-results').empty(); + } + + $('#header-search-form').removeClass(); + return; + } + + $('#header-search-form').removeClass(); + $('#header-search-form').addClass('waiting'); + + request = $.ajax({ + url: aetherJsConfig.url, + data: { + 'action':'search', + 's' : cleanInput + }, + success: function(data) { + if (data['cache'] === true) { + data['time'] = date.getTime(); + searchCache[cleanInput] = data; + localStorage.searchCache = JSON.stringify(searchCache); + } + + displayData(data); + }, + error: function(errorThrown){ + $('#header-search-results').empty().removeClass(); + $('#header-search-form').removeClass(); + }, + complete: function () { + currentSearchValue = $('#header-search-input').val(); + } + }); + } + + function displayData (data) { + $('#header-search-results').empty().removeClass().addClass('show-results'); + $('#header-search-form').removeClass(); + + if (data['message']) { + $('#header-search-results').append( + $('') + .text(data['message']) + ); + } + + for (var i in data['results']) { + var result = data['results'][i]; + $('#header-search-results').append( + $('') + .attr('href', result['url']) + .text(result['title']) + ); + } + } + + $(document).ready(function() + { + headerNavWidth = $('#header-nav').outerWidth(); + recalculateHeader(); + adjustDropMenus(); + + $('#header-menu-button').click(function(){ + $('#header-nav').toggleClass('open'); + }); + + $('#header-search-mode-toggle').click(function( event ) { + $('#header-nav').removeClass('open'); + if ($('#primary-header').hasClass('search-mode')) { + dismissSearch(); + } + else { + $('#header-search-input').val('').focus(); + $('#header-search-form').addClass('just-started'); + $('#primary-header').addClass('search-mode'); + } + }); + + $('#header-search-submit').click(function( event ) { + if ($('#header-search-input').val().trim().length < minLength) { + $('#header-search-form').submit(); + } + }); + + $(document).click(function(event) { + if(!$(event.target).closest('#header-search-form').length && !$(event.target).closest('#header-search-mode-toggle').length) { + if($('#primary-header').hasClass('search-mode')) { + dismissSearch(); + } + } + }); + + $('#header-search-input').on('keydown', function (event) { + if (searchTimer) { + clearTimeout(searchTimer); + } + lastKey = String.fromCharCode(event.which); + }); + + $('.dropdown-menu').on('click', function (event) { + event.stopPropagation(); + }); + + /* + * This function will put in a delay from the last keypress to the start + * of making a request. If the user has typed fewer characters it will + * allot more time to avoid extra requests wile the user is beginning their + * search. It will also allow extra time after non-alphanumeric characters + * have been typed. + */ + $('#header-search-input').on('keyup', function () { + var length = $('#header-search-input').val().trim().length; + var charCounter = length - minLength; + var cleanInput = $('#header-search-input').val().trim().toLowerCase(); + + $('#header-search-submit').prop('disabled', length < minLength); + + if (typeof searchCache[cleanInput] !== 'undefined') { + displayData(searchCache[cleanInput]); + return; + } + + if (currentSearchValue.trim() == $('#header-search-input').val().trim()) { + return; + } + + if (charCounter >= characterTimes.length) { + charCounter = characterTimes.length - 1; + } + + if (typeof timer_gear !== "undefined") { + clearTimeout(searchTimer); + } + + var timeToWait = !lastKey.match(/[0-9a-zA-Z]/) ? characterTimes[charCounter] * timeMultiplierAfterPressingSpace : characterTimes[charCounter]; + searchTimer = setTimeout(runSearch, timeToWait); + }); + + + $( ".persistent-panel-menu" ).on( "click", "a", function() { + if ($(this).attr('href') && $(this).attr('target') == '_blank') { + window.open($(this).attr('href'), '_blank'); + } + else if ($(this).attr('href')) { + window.location.href = $(this).attr('href'); + } + }); + }); +}( jQuery )); diff --git a/js/header.js.x18569 b/js/header.js.x18569 new file mode 100644 index 0000000..155f179 --- /dev/null +++ b/js/header.js.x18569 @@ -0,0 +1,277 @@ +(function ( $ ) { + + var searchTimer; + var lastKey; + var currentSearchValue = ''; + var minLength = 2; + var request; + + + function dismissSearch() { + if ($('#header-search-input').is(':focus')) { + $('body').focus(); + } + $('#primary-header').removeClass('search-mode'); + $('#header-search-submit').prop('disabled', true); + $('#header-search-input').val(''); + $('#header-search-form').removeClass(); + $('#header-search-results').removeClass().empty(); + } + + + $(document).ready(function() + { + $('#header-search-mode-toggle').click(function( event ) { + if ($('#primary-header').hasClass('search-mode')) { + dismissSearch(); + } + else { + $('#header-search-input').val(''); + $('#header-search-input').focus(); + $('#primary-header').addClass('search-mode'); + } + }); + + $('#header-search-submit').click(function( event ) { + if ($('#header-search-input').val().trim().length < minLength) { + $('#header-search-form').submit(); + } + }); + + $(document).click(function(event) { + if(!$(event.target).closest('#header-search-form').length && !$(event.target).closest('#header-search-mode-toggle').length) { + if($('#primary-header').hasClass('search-mode')) { + dismissSearch(); + } + } + }); + + $('#header-search-input').on('keydown', function (event) { + if (searchTimer) { + clearTimeout(searchTimer); + } + lastKey = String.fromCharCode(event.which); + }); + + $('.dropdown-menu').on('click', function (event) { + event.stopPropagation(); + }); + + /* + * This function will put in a delay from the last keypress to the start + * of making a request. If the user has typed fewer characters it will + * allot more time to avoid extra requests wile the user is beginning their + * search. It will also allow extra time after non-alphanumeric characters + * have been typed. + */ + $('#header-search-input').on('keyup', function () { + var timeMultiplierAfterPressingSpace = 3; + var length = $('#header-search-input').val().trim().length; + var characterTimes = [1250, 1000, 800, 650, 500, 400, 350]; + var charCounter = length - minLength; + + $('#header-search-submit').prop('disabled', length < minLength); + + if (currentSearchValue.trim() == $('#header-search-input').val().trim()) { + return; + } + else { + } + + if (charCounter >= characterTimes.length) { + charCounter = characterTimes.length - 1; + } + + if (searchTimer) { + clearTimeout(searchTimer); + } + + var timeToWait = !lastKey.match(/[0-9a-zA-Z]/) ? characterTimes[charCounter] * timeMultiplierAfterPressingSpace : characterTimes[charCounter]; + searchTimer = setTimeout(runSearch, timeToWait); + + if (length == 0) { + //$('#header-search-results').empty().removeClass();; + //$('#header-search-form').removeClass(); + } + + + }); + + + $( ".persistent-panel-menu" ).on( "click", "a", function() { + if ($(this).attr('href') && $(this).attr('target') == '_blank') { + window.open($(this).attr('href'), '_blank'); + } + else if ($(this).attr('href')) { + window.location.href = $(this).attr('href'); + } + }); + + }); + + + function runSearch () { + var length = $('#header-search-input').val().trim().length; + currentSearchValue = $('#header-search-input').val(); + + if(request && request.readyState != 4){ + request.abort(); + } + + if (length < minLength) { + //$('#header-search-results').empty().removeClass(); + //$('#header-search-results').addClass('keepTyping'); + $('#header-search-results').removeClass(); + $('#header-search-form').removeClass(); + return; + } + + //$('#header-search-results').empty().removeClass(); + $('#header-search-results').removeClass(); + $('#header-search-form').removeClass(); + $('#header-search-form').addClass('waiting'); + + request = $.ajax({ + url: asyncConnectionInfo.url, + data: { + 'action':'search', + 's' : $('#header-search-input').val() + }, + success:function(data) { + $('#header-search-results').empty().removeClass().toggleClass('show-results', data['totalResults'] > 0 || data['message']); + $('#header-search-form').removeClass(); + // This outputs the result of the ajax request + + if (data['message']) { + $('#header-search-results').append( + $('') + .text(data['message']) + ); + } + + for (var i in data['results']) { + var result = data['results'][i]; + $('#header-search-results').append( + $('') + .attr('href', result['url']) + .text(result['title']) + ); + } + }, + error: function(errorThrown){ + $('#header-search-results'); + $('#header-search-form').removeClass().addClass('error'); + } + }); + } + /* + + $('#header-search-input').on('keyup', function () { + + console.log(asyncConnectionInfo.url); + + $.ajax({ + url: asyncConnectionInfo.url, + data: { + 'action':'search', + 's' : $('#header-search-input').val() + }, + success:function(data) { + // This outputs the result of the ajax request + console.log(data); + }, + error: function(errorThrown){ + console.log(errorThrown); + } + }); + }); + + + }); + + + + + + var headerNavWidth = 0; + + function recalculateHeader () + { + var oldState = $('#primary-header').hasClass('toggle-nav'); + + $('#primary-header').removeClass('toggle-nav'); + + var headerInnerWidth = $('#primary-header > .container').innerWidth(); + var headerLogoWidth = $('#header-logo').width(); + var headerRightWidth = $('#header-right-content').width(); + var totalWidth = headerNavWidth + headerLogoWidth + headerRightWidth; + + var newState = headerInnerWidth < totalWidth; + + if (newState != oldState) { + $('#header-nav').removeClass('active'); + } + + $('#primary-header').toggleClass('toggle-nav', newState); + } + + $(document).ready(function() + { + $( ".persistent-panel-menu" ).on( "click", "a", function() { + if ($(this).attr('href') && $(this).attr('target') == '_blank') { + window.open($(this).attr('href'), '_blank'); + } + else if ($(this).attr('href')) { + window.location.href = $(this).attr('href'); + } + }); + + + + + + + headerNavWidth = $('#header-nav').outerWidth(); + + $('#header-search-form').addClass('js'); + $('#header-search-mode-toggle').attr('type', 'button'); + + if ($('#header-search-input').val() != '') { + $('#header-search-form').addClass('active'); + } + + $('#header-search-mode-toggle').click(function( event ) + { + if ($('#header-search-form').hasClass('active') && $('#header-search-input').val().trim() != '') { + $('#header-search-mode-toggle').attr('type', 'submit'); + $('#header-search-form').submit(); + } + else { + $('#header-search-input').focus(); + $('#header-search-form').addClass('active'); + } + }); + + $('#header-menu-button').click(function() { + $('#header-nav').toggleClass('active'); + }); + + recalculateHeader(); + }); + + $(window).resize(function() + { + recalculateHeader(); + }); + + $(document).mouseup(function() + { + if ($('#header-search-form').has(document.activeElement).length == 0 && $('#header-search-input').val() == '') { + $('#header-search-form').removeClass('active'); + recalculateHeader(); + } + }); + +*/ + +}( jQuery )); diff --git a/js/header.min.js b/js/header.min.js new file mode 100644 index 0000000..b20530f --- /dev/null +++ b/js/header.min.js @@ -0,0 +1 @@ +!function(a){function l(){a("#header-search-input").is(":focus")&&a("body").focus(),a("#primary-header").removeClass("search-mode"),a("#header-search-submit").prop("disabled",!0),a("#header-search-input").val(""),a("#header-search-form").removeClass(),a("#header-search-results").removeClass().empty()}function m(){var b=a("#primary-header").hasClass("hamburger-mode"),c=a("#header-container").innerWidth(),d=a("#header-logo").outerWidth(),e=a("#header-right-content").outerWidth(),f=a("#header-search-mode-toggle").outerWidth(),g=k+d+e+f,h=c .dropdown-menu").each(function(){var b=a(this).prev(".dropdown-toggle").offset().left+a(this).width(),c=a(window).width()-b-15;a(this).css("margin-left",(c>0?0:c)+"px")})}function p(){var c=a("#header-search-input").val().trim().toLowerCase(),d=c.length;if(g&&4!=g.readyState&&g.abort(),d").text(b.message));for(var c in b.results){var d=b.results[c];a("#header-search-results").append(a("").attr("href",d.url).text(d.title))}}var c,d,g,b=new Date,e="",f=2,i=[1250,1e3,800,650,500,400,350],j={},k=0;"undefined"!=typeof Storage&&void 0!==localStorage.searchCache&&(j=JSON.parse(localStorage.searchCache),n()),a(window).resize(function(){m(),o()}),a(document).ready(function(){k=a("#header-nav").outerWidth(),m(),o(),a("#header-menu-button").click(function(){a("#header-nav").toggleClass("open")}),a("#header-search-mode-toggle").click(function(b){a("#header-nav").removeClass("open"),a("#primary-header").hasClass("search-mode")?l():(a("#header-search-input").val("").focus(),a("#header-search-form").addClass("just-started"),a("#primary-header").addClass("search-mode"))}),a("#header-search-submit").click(function(b){a("#header-search-input").val().trim().length=i.length&&(g=i.length-1),"undefined"!=typeof timer_gear&&clearTimeout(c);var l=d.match(/[0-9a-zA-Z]/)?i[g]:1.5*i[g];c=setTimeout(p,l)}}),a(".persistent-panel-menu").on("click","a",function(){a(this).attr("href")&&"_blank"==a(this).attr("target")?window.open(a(this).attr("href"),"_blank"):a(this).attr("href")&&(window.location.href=a(this).attr("href"))})})}(jQuery); diff --git a/inc/js/modernizr.min.js b/js/modernizr.min.js similarity index 100% rename from inc/js/modernizr.min.js rename to js/modernizr.min.js diff --git a/languages/bg_BG.mo b/languages/bg_BG.mo deleted file mode 100644 index 5e36bd1..0000000 Binary files a/languages/bg_BG.mo and /dev/null differ diff --git a/languages/bg_BG.po b/languages/bg_BG.po deleted file mode 100644 index f8d59c4..0000000 --- a/languages/bg_BG.po +++ /dev/null @@ -1,952 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:36+0200\n" -"PO-Revision-Date: 2016-02-17 15:36+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: Petko Bossakov \n" -"Language: bg_BG\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"_nx: 4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Опа! Не мога да намеря тази страница." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Май на този адрес няма нищо. Пробвай някоя от връзките долу, или пък опцията " -"за търсене." - -#: ../404.php:25 -msgid "Recent Posts" -msgstr "Нови статии" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Най-използвани категории" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Опитай да погледнеш в архива по месеци. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Архив" - -#: ../404.php:58 -msgid "Tags" -msgstr "Етикети" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Автор: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Ден: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Месец: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Година: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Странични" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Галерии" - -#: ../archive.php:45 -msgid "Images" -msgstr "Изображения" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Видео" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Цитати" - -#: ../archive.php:54 -msgid "Links" -msgstr "Връзки" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Статуси" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Аудио" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Лафче" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Навигация в коментарите" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← По-стари коментари" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "По-нови коментари →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Коментарите са затворени." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Редакция" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Повече" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Страници:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Няма резултати" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"Готов ли си да публикуваш първата си статия? Започни оттук." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "Съжалявам, няма резултати. Пробвай пак с различни ключови думи." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Изглежда не можем да открием това, което търсиш. Функцията за търсене може " -"да помогне." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Остави коментар" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 коментар" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% коментара" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Главно меню" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Странична част" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Лява странична колона" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Дясна странична колона" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgid "Search" -msgstr "Търси" - -#: ../functions.php:266 ../searchform.php:14 -msgctxt "submit button" -msgid "Search" -msgstr "" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Назад" - -#: ../image.php:23 -msgid "Next " -msgstr "Напред " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Настройки на темата" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Показва се на заглавната страница" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Вид на страницата" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Ако няма избран цвят, ще се използва цветът по подразбиране" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Цвят на социалните икони" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Долен колонтитул" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Други" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Добавяне на CSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "Допълнителен CSS код" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Поддръжка и документация" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Най-добрият начин да се свържете с нас за поддръжка и докладване " -"на проблеми е чрез" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Форум за поддръжка на Colorlib" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Ако харесваш тази тема, ще съм благодарен, ако:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Гласуваш за тази тема" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Харесаш във Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Последваш в Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Тази статия е защитена с парола. За да я прочетеш, въведи паролата тук:" - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Парола:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Изпрати" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Дизайн: %1$s Работи с %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Навигация статии" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Навигация статии" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Категории" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Заглавие" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Ограничение на категориите" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Брой статии" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Заглавие" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Ограничи броя статии" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Последвай ни" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Резултати от търсенето за: %s" - -#: ../searchform.php:11 -msgid "Search for:" -msgstr "" - -#: ../searchform.php:12 -msgctxt "placeholder" -msgid "Search…" -msgstr "" - -#: ../searchform.php:12 -msgctxt "label" -msgid "Search for:" -msgstr "" - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Мета" - -#~ msgid "Footer Links" -#~ msgstr "Връзки в долната част" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Една мисъл по темата “%2$s”" -#~ msgstr[1] "%1$s мисли по темата “%2$s”" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Джаджи заглавна страница 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Показва се на заглавната страница" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Джаджи заглавна страница 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Джаджи заглавна страница 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Джаджи долна част 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Използва се за долния колонтитул" - -#~ msgid "Footer Widget 2" -#~ msgstr "Джаджи долна част 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Джаджи долна част 3" - -#~ msgid "Theme Options" -#~ msgstr "Настройки на темата" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Натисни OK, за да възстановиш настройките по подразбиране. Всички " -#~ "настройки на темата ще бъдат изгубени!" - -#~ msgid "Default options restored." -#~ msgstr "Настройите по подразбиране са възстановени." - -#~ msgid "Options saved." -#~ msgstr "Настройките са запазени." - -#~ msgid "No file chosen" -#~ msgstr "Няма избран файл" - -#~ msgid "Upload" -#~ msgstr "Качване" - -#~ msgid "Remove" -#~ msgstr "Премахване" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Обнови версията на WordPress за пълна поддръжка на мултимедия." - -#~ msgid "View File" -#~ msgstr "Преглед на файла" - -#~ msgid "No Repeat" -#~ msgstr "Без повтаряне" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Хоризонтално повтаряне" - -#~ msgid "Repeat Vertically" -#~ msgstr "Вертикално повтаряне" - -#~ msgid "Repeat All" -#~ msgstr "Повтаряне" - -#~ msgid "Top Left" -#~ msgstr "Горе вляво" - -#~ msgid "Top Center" -#~ msgstr "Горе в средата" - -#~ msgid "Top Right" -#~ msgstr "Горе вдясно" - -#~ msgid "Middle Left" -#~ msgstr "Централно вляво" - -#~ msgid "Middle Center" -#~ msgstr "Централно в средата" - -#~ msgid "Middle Right" -#~ msgstr "Централно вдясно" - -#~ msgid "Bottom Left" -#~ msgstr "Долу вляво" - -#~ msgid "Bottom Center" -#~ msgstr "Долу в средата" - -#~ msgid "Bottom Right" -#~ msgstr "Долу вдясно" - -#~ msgid "Scroll Normally" -#~ msgstr "Нормално скролиране" - -#~ msgid "Fixed in Place" -#~ msgstr "Фиксирана позиция" - -#~ msgid "Normal" -#~ msgstr "Нормален" - -#~ msgid "Italic" -#~ msgstr "Курсив" - -#~ msgid "Bold" -#~ msgstr "Получер " - -#~ msgid "Bold Italic" -#~ msgstr "Получер Курсив" - -#~ msgid "Page %s" -#~ msgstr "Страница %s" - -#~ msgid "Follow us on " -#~ msgstr "Следвай ни: " - -#~ msgid "Sparkling Documentation" -#~ msgstr "Документация на Sparkling" - -#~ msgid " Older posts" -#~ msgstr " По-стари статии" - -#~ msgid "Newer posts " -#~ msgstr "По-нови статии " - -#~ msgid "Sparkling Categories" -#~ msgstr "Категории Sparkling" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling - най-популярни статии" - -#~ msgid "Popular Posts" -#~ msgstr "Популярни статии" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling социална джаджа" - -#~ msgid "One" -#~ msgstr "Една" - -#~ msgid "Two" -#~ msgstr "Две" - -#~ msgid "Three" -#~ msgstr "Три" - -#~ msgid "Four" -#~ msgstr "Четири" - -#~ msgid "Five" -#~ msgstr "Пет" - -#~ msgid "French Toast" -#~ msgstr "Пържена филийка" - -#~ msgid "Pancake" -#~ msgstr "Палачинки" - -#~ msgid "Omelette" -#~ msgstr "Омлет" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Гофрета" - -#~ msgid "Main" -#~ msgstr "Основни" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Показване на плъзгащи се изображения на главната страница?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Избери, ако искаш да включиш плъзгащите изображения" - -#~ msgid "Slider Category" -#~ msgstr "Категория" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Избери категория за избраните статии" - -#~ msgid "Number of slide items" -#~ msgstr "Брой елементи" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Въведи броя на плъзгащите се елементи" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "" -#~ "Избери между лява и дясна странична колона като настройка по подразбиране" - -#~ msgid "Element color" -#~ msgstr "Цвят на елемента" - -#~ msgid "Element color on hover" -#~ msgstr "Цвят, когато курсорът е отгоре" - -#~ msgid "Custom Favicon" -#~ msgstr "Икона на сайта" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "Качи картинка PNG/GIF 32x32px която ще представлява иконата на сайта" - -#~ msgid "Action Button" -#~ msgstr "Call For Action бутон" - -#~ msgid "Call For Action Text" -#~ msgstr "Call For Action текст" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Въведи текст за раздела Call For Action" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Заглавие на бутона Call For Action" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Въведи заглавие за бутона Call For Action" - -#~ msgid "CFA button link" -#~ msgstr "CFA връзка" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Въведи Интернет адрес за бутона Call For Action" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Цвят на текста Call For Action" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Цвят на фона Call For Action" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Цвят на ръба на бутона Call For Action" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Цвят на текста на бутона Call For Action" - -#~ msgid "Typography" -#~ msgstr "Шрифтове" - -#~ msgid "Main Body Text" -#~ msgstr "Текст на главната част" - -#~ msgid "Used in P tags" -#~ msgstr "Използва се за таговете P" - -#~ msgid "Heading Color" -#~ msgstr "Цвят на заглавията" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Цвят за всичките заглавия (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Цвят на връзките" - -#~ msgid "Link:hover Color" -#~ msgstr "Цвят на връзките, когато курсорът е отгоре" - -#~ msgid "Header" -#~ msgstr "Заглавна част" - -#~ msgid "Top nav background color" -#~ msgstr "Фон на горната навигация" - -#~ msgid "Top nav item color" -#~ msgstr "Цвят за елементите на горната навигация" - -#~ msgid "Link color" -#~ msgstr "Цвят на връзките" - -#~ msgid "Top nav item hover color" -#~ msgstr "Цвят за елементите на горната навигация, когато курсорът е отгоре" - -#~ msgid "Link:hover color" -#~ msgstr "Цвят на връзките, когато курсорът е отгоре" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Фон на падащото меню в горната навигация" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Фон на елементите от падащото меню в горната навигация" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Цвят на текста на елементите от падащото меню в горната навигация" - -#~ msgid "Dropdown item color" -#~ msgstr "Цвят на елементите от падащото меню" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "" -#~ "Цвят на елементите от падащото меню в горната навигация, когато курсорът " -#~ "е отгоре" - -#~ msgid "Dropdown item hover color" -#~ msgstr "Цвят на елементите от падащото меню, когато курсорът е отгоре" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "" -#~ "Фон на елементите от падащото меню в горната навигация, когато курсорът е " -#~ "отгоре" - -#~ msgid "Footer widget area background color" -#~ msgstr "Фон на джаджите в долната част на страницата" - -#~ msgid "Footer background color" -#~ msgstr "Фон на долната част на страницата" - -#~ msgid "Footer text color" -#~ msgstr "Цвят на текста в долната част на страницата" - -#~ msgid "Footer link color" -#~ msgstr "Цвят на връзките в долната част на страницата" - -#~ msgid "Footer information" -#~ msgstr "Информация в долната част на страницата" - -#~ msgid "Copyright text in footer" -#~ msgstr "Текст за авторските права в долната част на страницата" - -#~ msgid "Social" -#~ msgstr "Социални" - -#~ msgid "Footer social icon color" -#~ msgstr "Цвят на социалните икони в долната част на страницата" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Добави пълния URL към твоите профили в социалните мрежи" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgid "GitHub" -#~ msgstr "GitHub" - -#~ msgid "Search..." -#~ msgstr "Търсене..." - -#~ msgid "Default used if no color is selected." -#~ msgstr "Valore predefinito usato se nessun colore è selezionato" diff --git a/languages/cs_CZ.mo b/languages/cs_CZ.mo deleted file mode 100644 index 58ffcf1..0000000 Binary files a/languages/cs_CZ.mo and /dev/null differ diff --git a/languages/cs_CZ.po b/languages/cs_CZ.po deleted file mode 100644 index b33a5d6..0000000 --- a/languages/cs_CZ.po +++ /dev/null @@ -1,945 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Activello Theme\n" -"POT-Creation-Date: 2016-02-17 15:36+0200\n" -"PO-Revision-Date: 2016-02-17 15:36+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \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 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"_nx: 4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Jejda! Stránka nenalezena!" - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "Nenalezeno! Zkuste odkazy dole nebo vyhledávání." - -#: ../404.php:25 -msgid "Recent Posts" -msgstr "Poslední příspěvky" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Nejčastěji používané kategorie" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Zkuste se podívat v měsíčním archivu: %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Archiv" - -#: ../404.php:58 -msgid "Tags" -msgstr "Štítky" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Autor: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Dnů: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Měsíc: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Rok: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Galerie" - -#: ../archive.php:45 -msgid "Images" -msgstr "Obrázky" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Videa" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Citace" - -#: ../archive.php:54 -msgid "Links" -msgstr "Odkazy" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Statusy" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Audio" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Chat" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Komentáře" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "Starší komentáře" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Novější komentáře" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Komentáře jsou uzavřeny." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Upravit" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Celý článek" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Stránky:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Nenalezeno" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"Chcete publikovat svůj první příspěvek? Začněte zde." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "Omlouváme se, ale nic jsme nenalezli. Zkuste změnit klíčová slova." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "Zdá se, že to nelze najít. Zkuste vyhledávání." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Napište komentář" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 komentář" - -#: ../content.php:73 -msgid "% Comments" -msgstr "Komentářů: %" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Hlavní menu" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Postranní menu" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Levé postranní menu" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Pravé postranní menu" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Hledat..." - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Předchozí" - -#: ../image.php:23 -msgid "Next " -msgstr "Další " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "Activello Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update activello theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Možnosti šablony" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Zobrazí se na úvodní stránce" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Vzhled stránky" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Pokud není nic vybráno, zobrazí se defaultní barva" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Barva ikonky sociální sítě" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Zápatí" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Ostatní" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Vlastní CSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "Doplňkové CSS" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Podpora a dokumentace" - -#: ../inc/customizer.php:356 -msgid "Activello Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Nejlepší způsob, jak nás kontaktovat s dotazy nebo nahlásit chybu je přes" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Colorlib forum podpory" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Pokud se vám šablona líbí, využijte prosím tyto možnosti:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Ohodnotit šablonu" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Sledovat nás na Facebooku" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Sledovat nás na Twitteru" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "

      Tento příspěvek je chráněn heslem. Napište prosím heslo:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Heslo:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Odeslat" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Šablonu %1$s pohání %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Příspěvky" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Příspěvky" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "Activello widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "Activello Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Rubriky" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Název" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Maximální počet rubrik" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Zobrazit počet příspěvků" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "Activello recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "Activello Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Název" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Maximální počet příspěvků" - -#: ../inc/widgets/widget-social.php:11 -msgid "Activello theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "Activello Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Sledujte nás na" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Výsledky hledání: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Hledat..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Hledat..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Hledat..." - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Menu v zápatí" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "1 komentář" -#~ msgstr[1] "Komentářů: %1$s" - -#~ msgid ", " -#~ msgstr ", " - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Úvodní stránka widget 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Zobrazí se na úvodní stránce" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Úvodní stránka widget 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Úvodní stránka widget 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Zápatí widget 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Zobrazí se v zápatí" - -#~ msgid "Footer Widget 2" -#~ msgstr "Zápatí widget 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Zápatí widget 3" - -#~ msgid "Theme Options" -#~ msgstr "Možnosti šablony" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "Pokud kliknete na OK, přijdete o všechny změny!" - -#~ msgid "Default options restored." -#~ msgstr "Původní nastavení obnoveno." - -#~ msgid "Options saved." -#~ msgstr "Změny uloženy." - -#~ msgid "No file chosen" -#~ msgstr "Soubor není vybrán" - -#~ msgid "Upload" -#~ msgstr "Nahrát" - -#~ msgid "Remove" -#~ msgstr "Odstranit" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Aktualizujte svůj WordPress. Získáte tak plnou podporu." - -#~ msgid "View File" -#~ msgstr "Prohlédnout soubor" - -#~ msgid "No Repeat" -#~ msgstr "Neopakovat" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Opakovat vodorovně" - -#~ msgid "Repeat Vertically" -#~ msgstr "Opakovat svisle" - -#~ msgid "Repeat All" -#~ msgstr "Opakovat vše" - -#~ msgid "Top Left" -#~ msgstr "Zarovnat doleva" - -#~ msgid "Top Center" -#~ msgstr "Zarovnat na střed" - -#~ msgid "Top Right" -#~ msgstr "Zarovnat doprava" - -#~ msgid "Middle Left" -#~ msgstr "Uprostřed vlevo" - -#~ msgid "Middle Center" -#~ msgstr "Uprostřed" - -#~ msgid "Middle Right" -#~ msgstr "Uprostřed napravo" - -#~ msgid "Bottom Left" -#~ msgstr "Dole vlevo" - -#~ msgid "Bottom Center" -#~ msgstr "Dole uprostřed" - -#~ msgid "Bottom Right" -#~ msgstr "Dole vpravo" - -#~ msgid "Scroll Normally" -#~ msgstr "Skrolovací" - -#~ msgid "Fixed in Place" -#~ msgstr "Nehybný" - -#~ msgid "Normal" -#~ msgstr "Normální" - -#~ msgid "Italic" -#~ msgstr "Kurzíva" - -#~ msgid "Bold" -#~ msgstr "Tučně" - -#~ msgid "Bold Italic" -#~ msgstr "Tučná kurzíva" - -#~ msgid "Page %s" -#~ msgstr "Stránka %s" - -#~ msgid "Follow us on " -#~ msgstr "Sledujte nás na" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Dokumentace k šabloně" - -#~ msgid " Older posts" -#~ msgstr " Starší příspěvky" - -#~ msgid "Newer posts " -#~ msgstr "Novější příspěvky " - -#~ msgid "Sparkling Categories" -#~ msgstr "Rubriky šablony" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Oblíbené příspěvky - widget šablony" - -#~ msgid "Popular Posts" -#~ msgstr "Oblíbené příspěvky" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sociální widget šablony" - -#~ msgid "One" -#~ msgstr "Jedna" - -#~ msgid "Two" -#~ msgstr "Dvě" - -#~ msgid "Three" -#~ msgstr "Tři" - -#~ msgid "Four" -#~ msgstr "Čtyři" - -#~ msgid "Five" -#~ msgstr "Pět" - -#~ msgid "French Toast" -#~ msgstr "Francouzský toust" - -#~ msgid "Pancake" -#~ msgstr "Lívanec" - -#~ msgid "Omelette" -#~ msgstr "Omeleta" - -#~ msgid "Crepe" -#~ msgstr "Palačinka" - -#~ msgid "Waffle" -#~ msgstr "Vafle" - -#~ msgid "Main" -#~ msgstr "Hlavní" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Chcete zobrazit slider na úvodní stránce?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Zaškrtněte, pokud chcete aktivovat slider" - -#~ msgid "Slider Category" -#~ msgstr "Rubrika ve slideru" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "vyberte rubriku, která se zobrazí ve slideru" - -#~ msgid "Number of slide items" -#~ msgstr "Počet položek ve slideru" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Napište počet" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "Zvolte, kde chcete mít postranní menu" - -#~ msgid "Element color" -#~ msgstr "Barva tlačítek" - -#~ msgid "Element color on hover" -#~ msgstr "Barva tlačítka po najetí myši" - -#~ msgid "Custom Favicon" -#~ msgstr "Vlastní favicon" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "Nahrajte obrázek PNG/GIF velikosti 32 x 32 px" - -#~ msgid "Action Button" -#~ msgstr "Akční tlačítko" - -#~ msgid "Call For Action Text" -#~ msgstr "Text pro akční tlačítko" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Napište text, který se zobrazí v akční sekci" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Název akčního tlačítka" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Vložte název akčního tlačítka" - -#~ msgid "CFA button link" -#~ msgstr "Odkaz akčního tlačítka" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Vložte odkaz pro akční tlačítko" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Barva akčního textu" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Barva pozadí akčního textu" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Barva ohraničení akčního tlačítka" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Barva písma akčního tlačítka" - -#~ msgid "Typography" -#~ msgstr "Typografie" - -#~ msgid "Main Body Text" -#~ msgstr "Hlavní text webu" - -#~ msgid "Used in P tags" -#~ msgstr "Text v P tagu" - -#~ msgid "Heading Color" -#~ msgstr "Barva nadpisů" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Pro všechny nadpisy (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Barva odkazu" - -#~ msgid "Link:hover Color" -#~ msgstr "Barva aktivního odkazu" - -#~ msgid "Header" -#~ msgstr "Záhlaví" - -#~ msgid "Top nav background color" -#~ msgstr "Barva pozadí horního menu" - -#~ msgid "Top nav item color" -#~ msgstr "Barva textu v horním menu" - -#~ msgid "Link color" -#~ msgstr "Barva odkazu" - -#~ msgid "Top nav item hover color" -#~ msgstr "Barva aktivní položky v horním menu" - -#~ msgid "Link:hover color" -#~ msgstr "Barva aktivního odkazu" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Barva pozadí submenu" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Barva v pozadí aktivního textu v submenu" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Barva textu v submenu horního menu" - -#~ msgid "Dropdown item color" -#~ msgstr "Barva textu v submenu" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Barva aktivního textu v submenu horního menu" - -#~ msgid "Dropdown item hover color" -#~ msgstr "Barva aktivního textu v submenu" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Barva aktivního pozadí submenu v horním menu" - -#~ msgid "Footer widget area background color" -#~ msgstr "Barva pozadí widgetů v zápatí" - -#~ msgid "Footer background color" -#~ msgstr "Barva pozadí v zápatí" - -#~ msgid "Footer text color" -#~ msgstr "Barva textu v zápatí" - -#~ msgid "Footer link color" -#~ msgstr "Barva odkazu v zápatí" - -#~ msgid "Footer information" -#~ msgstr "Text v zápatí" - -#~ msgid "Copyright text in footer" -#~ msgstr "Text autorských práv v zápatí webu" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Barva ikonky sociální sítě v zápatí" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Barva ikonky sociální sítě v zápatí" - -#~ msgid "Social" -#~ msgstr "Sociální sítě" - -#~ msgid "Footer social icon color" -#~ msgstr "Barva ikonky sociální sítě v zápatí" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Přidejte celý odkaz profilu na vaši sociální síť" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "YouTube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS čtečka" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundClound" - -#~ msgid "GitHub" -#~ msgstr "GitHub" - -#~ msgid "Search..." -#~ msgstr "Hledat..." diff --git a/languages/de_DE.mo b/languages/de_DE.mo deleted file mode 100644 index 3789677..0000000 Binary files a/languages/de_DE.mo and /dev/null differ diff --git a/languages/de_DE.po b/languages/de_DE.po deleted file mode 100644 index bb90768..0000000 --- a/languages/de_DE.po +++ /dev/null @@ -1,969 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether\n" -"POT-Creation-Date: 2016-02-17 15:36+0200\n" -"PO-Revision-Date: 2016-02-17 15:36+0200\n" -"Last-Translator: Aigars Silkalns \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.7\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SearchPath-0: .\n" - -#: 404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Fehler! Diese Seite konnte nicht gefunden werden." - -#: 404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Scheinbar wurde die gewünschte Seite nicht gefunden. Möchtest Du einen der " -"folgenden Links benutzen oder eine neue Suche starten?" - -#: 404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "Zeigt Reiter der beliebtesten und neusten Beiträge & Kommentare" - -#: 404.php:31 -msgid "Most Used Categories" -msgstr "Meist genutzte Kategorien" - -#: 404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Schaue in den Monatsarchiven. %1$s" - -#: 404.php:53 archive.php:66 sidebar.php:31 -msgid "Archives" -msgstr "Archive" - -#: 404.php:58 -#, fuzzy -msgid "Tags" -msgstr "Benutzt in P tags" - -#: archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Autor: %s" - -#: archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Tag: %s" - -#: archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Monat: %s" - -#: archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Jahr: %s" - -#: archive.php:39 -msgid "Asides" -msgstr "Nebenbemerkungen" - -#: archive.php:42 -msgid "Galleries" -msgstr "Galerien" - -#: archive.php:45 -msgid "Images" -msgstr "Bilder" - -#: archive.php:48 -msgid "Videos" -msgstr "Videos" - -#: archive.php:51 -msgid "Quotes" -msgstr "Zitate" - -#: archive.php:54 -msgid "Links" -msgstr "Links" - -#: archive.php:57 -msgid "Statuses" -msgstr "Status" - -#: archive.php:60 -msgid "Audios" -msgstr "Audio" - -#: archive.php:63 -msgid "Chats" -msgstr "Chats" - -#: comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: comments.php:35 comments.php:54 -msgid "Comment navigation" -msgstr "Kommentare navigieren" - -#: comments.php:36 comments.php:55 -msgid "← Older Comments" -msgstr "← ältere Kommentare" - -#: comments.php:37 comments.php:56 -msgid "Newer Comments →" -msgstr "Neueste Kommentare →" - -#: comments.php:66 -msgid "Comments are closed." -msgstr "Kommentare sind deaktiviert." - -#: comments.php:77 -msgid "Name" -msgstr "" - -#: comments.php:81 -msgid "Email" -msgstr "" - -#: comments.php:85 -msgid "Website" -msgstr "" - -#: comments.php:94 -msgid "Post Reply" -msgstr "" - -#: content-grid.php:16 content-page.php:32 inc/extras.php:252 -msgid "Edit" -msgstr "Editiere" - -#: content-grid.php:28 content.php:41 content.php:67 inc/extras.php:137 -msgid "Read More" -msgstr "Weiterlesen" - -#: content-grid.php:37 content-page.php:21 content-single.php:43 content.php:56 -#: image.php:79 -msgid "Pages:" -msgstr "Seiten:" - -#: content-none.php:13 -msgid "Nothing Found" -msgstr "Nichts gefunden " - -#: content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "Ersten Artikel veröffentlichen? Hier starten." - -#: content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Leider war die Suche nicht erfolgreich. Versuche es mit anderen Suchwörtern." - -#: content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Scheinbar konnten wir das Gewünschte nicht finden. Vielleicht hilft Dir die " -"Suche." - -#: content-single.php:21 content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: content-single.php:55 content.php:73 -msgid "Leave a comment" -msgstr "Kommentieren" - -#: content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: content.php:73 -msgid "1 Comment" -msgstr "1 Kommentar" - -#: content.php:73 -msgid "% Comments" -msgstr "% Kommentare" - -#: functions.php:71 -msgid "Primary Menu" -msgstr "Hauptmenü" - -#: functions.php:112 -msgid "Sidebar" -msgstr "Seitenleiste" - -#: functions.php:226 -msgid "Left Sidebar" -msgstr "Linke Sidebar" - -#: functions.php:226 -msgid "Right Sidebar" -msgstr "Rechte Sidebar" - -#: functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: functions.php:226 -msgid "Full Width" -msgstr "" - -#: functions.php:228 -msgid "Logo Only" -msgstr "" - -#: functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: functions.php:230 -msgid "Title Only" -msgstr "" - -#: functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: functions.php:266 searchform.php:14 -msgid "Search" -msgstr "" - -#: functions.php:266 searchform.php:14 -msgctxt "submit button" -msgid "Search" -msgstr "Suche" - -#: header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: image.php:22 -msgid " Previous" -msgstr " vorher" - -#: image.php:23 -msgid "Next " -msgstr "nächste " - -#: inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Einstellungen speichern" - -#: inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Wird auf der Startseite angezeigt" - -#: inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Website Layout Einstellungen" - -#: inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: inc/customizer.php:151 inc/customizer.php:161 inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Standardeinstellung wenn keine Farbe ausgewählt wurde" - -#: inc/customizer.php:160 -msgid "Social icon color" -msgstr "Social Icon Farbe" - -#: inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: inc/customizer.php:177 -msgid "Footer" -msgstr "Footer" - -#: inc/customizer.php:195 -msgid "Other" -msgstr "Andere" - -#: inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Benutzerdefiniertes CSS" - -#: inc/customizer.php:205 -msgid "Additional CSS" -msgstr "Zusätzliches CSS" - -#: inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Support und Dokumentation" - -#: inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Der beste Weg uns zu Support Anfragen und Fehler Reports zu " -"kontaktieren ist via" - -#: inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Colorlib Support Forum" - -#: inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Wenn Dir dieses Theme gefällt, dann freue ich mich über:" - -#: inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Dieses Theme bewerten" - -#: inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Auf Facebook Liken" - -#: inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Auf Twitter folgen" - -#: inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Dieser Artikel ist mit einem Passwort geschützt. Gib Dein Passwort ein, " -"um den Artikel zu lesen:

      " - -#: inc/extras.php:72 -msgid "Password:" -msgstr "Passwort:" - -#: inc/extras.php:75 -msgid "Submit" -msgstr "Absenden" - -#: inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Theme von %1$s Powered by %2$s" - -#: inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Posts Navigation" - -#: inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Post Navigation" - -#: inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: inc/widgets/widget-categories.php:17 inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Kategorien" - -#: inc/widgets/widget-categories.php:83 inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Titel" - -#: inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Kategorien Limit" - -#: inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Beitragszähler benutzen" - -#: inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: inc/widgets/widget-recent-posts.php:17 -#: inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Titel" - -#: inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Begrenze Beitragsanzahl" - -#: inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: inc/widgets/widget-social.php:17 inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Folgen Sie uns" - -#: search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Suchergebnisse für: %s" - -#: searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Suche nach:" - -#: searchform.php:12 -msgctxt "placeholder" -msgid "Search…" -msgstr "Suche…" - -#: searchform.php:12 -msgctxt "label" -msgid "Search for:" -msgstr "Suche nach:" - -#: sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Fußzeilenmenü" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Ein Kommentar zu “%2$s”" -#~ msgstr[1] "%1$s Kommentare zu “%2$s”" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Homepage Widget 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Wird auf der Startseite angezeigt" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Homepage Widget 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Homepage Widget 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Footer Widget 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Platz für Footer Widgets" - -#~ msgid "Footer Widget 2" -#~ msgstr "Footer Widget 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Footer Widget 3" - -#~ msgid "Theme Options" -#~ msgstr "Theme Optionen" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Klicke OK um alles rückgängig zu machen. Theme Änderungen werden nicht " -#~ "gespeichert!" - -#~ msgid "Default options restored." -#~ msgstr "Standardeinstellungen wieder hergestellt." - -#~ msgid "Options saved." -#~ msgstr "Einstellungen gespeichert." - -#~ msgid "No file chosen" -#~ msgstr "Keine Datei ausgewählt" - -#~ msgid "Upload" -#~ msgstr "Upload" - -#~ msgid "Remove" -#~ msgstr "Entfernen" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Lade die neueste WordPress Version für vollständigen Mediensupport." - -#~ msgid "View File" -#~ msgstr "Datei anzeigen" - -#~ msgid "No Repeat" -#~ msgstr "Ohne Wiederholung" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Horizontale Wiederholung" - -#~ msgid "Repeat Vertically" -#~ msgstr "Vertikale Wiederholung" - -#~ msgid "Repeat All" -#~ msgstr "Wiederholen" - -#~ msgid "Top Left" -#~ msgstr "Oben links" - -#~ msgid "Top Center" -#~ msgstr "Oben Zentrum" - -#~ msgid "Top Right" -#~ msgstr "Oben rechts" - -#~ msgid "Middle Left" -#~ msgstr "Mitte links" - -#~ msgid "Middle Center" -#~ msgstr "Mitte Zentrum" - -#~ msgid "Middle Right" -#~ msgstr "Mitte rechts" - -#~ msgid "Bottom Left" -#~ msgstr "Unten links" - -#~ msgid "Bottom Center" -#~ msgstr "Unten Zentrum" - -#~ msgid "Bottom Right" -#~ msgstr "Unten rechts" - -#~ msgid "Scroll Normally" -#~ msgstr "Normal scrollen" - -#~ msgid "Fixed in Place" -#~ msgstr "Am Platz fixiert" - -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Italic" -#~ msgstr "Kursiv" - -#~ msgid "Bold" -#~ msgstr "Fett" - -#~ msgid "Bold Italic" -#~ msgstr "Fett Kursiv" - -#~ msgid "Page %s" -#~ msgstr "Seite %s" - -#~ msgid "Follow us on " -#~ msgstr "Folge uns auf" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Sparkling Dokumentation" - -#~ msgid " Older posts" -#~ msgstr " ältere Artikel" - -#~ msgid "Newer posts " -#~ msgstr "neuere Artikel " - -#~ msgid "Sparkling Categories" -#~ msgstr "Sparkling Kategorien" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling Beliebte Beiträge Widget" - -#~ msgid "Popular Posts" -#~ msgstr "Beliebte Beiträge" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling Social Widget" - -#~ msgid "One" -#~ msgstr "eins" - -#~ msgid "Two" -#~ msgstr "Zwei" - -#~ msgid "Three" -#~ msgstr "Drei" - -#~ msgid "Four" -#~ msgstr "Vier" - -#~ msgid "Five" -#~ msgstr "Fünf" - -#~ msgid "French Toast" -#~ msgstr "Französischer Toast" - -#~ msgid "Pancake" -#~ msgstr "Pfannkuchen" - -#~ msgid "Omelette" -#~ msgstr "Omelette" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Waffel" - -#~ msgid "Main" -#~ msgstr "Haupt" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Möchtest Du den Image Slider auf der Startseite anzeigen?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Anhaken, wenn der Slider angezeigt werden soll" - -#~ msgid "Slider Category" -#~ msgstr "Slider Kategorie" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Wähle eine Anzeigekategorie für die Beiträge im Slider" - -#~ msgid "Number of slide items" -#~ msgstr "Anzahl Slider Bilder" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Gib die Anzahl der Bilder im Slider an" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "Wähle ob die linke oder rechte Seitenleiste voreingestellt ist" - -#~ msgid "Element color" -#~ msgstr "Element Farbe" - -#~ msgid "Element color on hover" -#~ msgstr "Element Farbe für hover (Maus gleitet über Linkelement)" - -#~ msgid "Custom Favicon" -#~ msgstr "Benutzerdefiniertes Favicon" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "Laden Sie ein 32px x 32px PNG/GIF Bild als Favicon hoch" - -#~ msgid "Action Button" -#~ msgstr "Aktionsbutton" - -#~ msgid "Call For Action Text" -#~ msgstr "Aktionsbutton Text" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Gib den Text für den Aktionsbutton-Abschnitt ein" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Aktionsbutton Titel" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Gib den Titel für den Aktionsbutton ein" - -#~ msgid "CFA button link" -#~ msgstr "Aktionsbutton Link" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Gib den Link für den Aktionsbutton ein" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Aktionsbutton Textfarbe" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Aktionsbutton Hintergrundfarbe" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Aktionsbutton Rahmenfarbe" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Aktionsbutton Text Farbe" - -#~ msgid "Typography" -#~ msgstr "Typographie" - -#~ msgid "Main Body Text" -#~ msgstr "Main Body Text" - -#~ msgid "Used in P tags" -#~ msgstr "Benutzt in P tags" - -#~ msgid "Heading Color" -#~ msgstr "Überschriftenfarbe" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Farbe für alle Überschriften (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Link Farbe" - -#~ msgid "Link:hover Color" -#~ msgstr "Link:hover Farbe" - -#~ msgid "Header" -#~ msgstr "Kopf" - -#~ msgid "Top nav background color" -#~ msgstr "Top nav Hintergrund Farbe" - -#~ msgid "Top nav item color" -#~ msgstr "Top nav Element Farbe" - -#~ msgid "Link color" -#~ msgstr "Link Farbe" - -#~ msgid "Top nav item hover color" -#~ msgstr "Top nav Element hover Farbe" - -#~ msgid "Link:hover color" -#~ msgstr "Link:hover Farbe" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Top nav Dropdown Hintergrund Farbe" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Hintergrund Dropdown Element hover Farbe" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Top nav Dropdown Element Farbe" - -#~ msgid "Dropdown item color" -#~ msgstr "Dropdown Element Farbe" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Top nav dropdown Eintrag - Hover Farbe" - -#~ msgid "Dropdown item hover color" -#~ msgstr "Dropdown Eintrag - Hover Farbe" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Top nav dropdown Eintrag - Hover Hintergrundfarbe" - -#~ msgid "Footer widget area background color" -#~ msgstr "Footer Widget Bereich Hintergrund Farbe" - -#~ msgid "Footer background color" -#~ msgstr "Footer Hintergrund Farbe" - -#~ msgid "Footer text color" -#~ msgstr "Footer Text Farbe" - -#~ msgid "Footer link color" -#~ msgstr "Footer Link Farbe" - -#~ msgid "Footer information" -#~ msgstr "Footer Information" - -#~ msgid "Copyright text in footer" -#~ msgstr "Copyright Text im Footer" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Footer Social Icon Farbe" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Footer Social Icon Farbe" - -#~ msgid "Social" -#~ msgstr "Social" - -#~ msgid "Footer social icon color" -#~ msgstr "Footer Social Icon Farbe" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Füge die vollständigen URL's Deiner Social Network Profile hinzu" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgctxt "monthly archives date format" -#~ msgid "F Y" -#~ msgstr "F Y" - -#~ msgctxt "yearly archives date format" -#~ msgid "Y" -#~ msgstr "Y" - -#~ msgid "Save Options" -#~ msgstr "Einstellungen speichern" - -#~ msgid "Restore Defaults" -#~ msgstr "Standardeinstellungen wieder herstellen" - -#~ msgctxt "Previous post link" -#~ msgid " %title" -#~ msgstr " %title [Voriger Beitrag]" - -#~ msgctxt "Next post link" -#~ msgid "%title " -#~ msgstr "%title [Nächster Beitrag]" - -#, fuzzy -#~ msgctxt "placeholder" -#~ msgid "Search..." -#~ msgstr "Suche..." diff --git a/languages/de_DE_Sie.mo b/languages/de_DE_Sie.mo deleted file mode 100644 index 10ea56e..0000000 Binary files a/languages/de_DE_Sie.mo and /dev/null differ diff --git a/languages/de_DE_Sie.po b/languages/de_DE_Sie.po deleted file mode 100644 index 19c3ece..0000000 --- a/languages/de_DE_Sie.po +++ /dev/null @@ -1,989 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Activello\n" -"POT-Creation-Date: 2016-02-17 15:36+0200\n" -"PO-Revision-Date: 2016-02-17 15:36+0200\n" -"Last-Translator: Aigars Silkalns \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.7\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_html__;esc_html_e;esc_attr_x;esc_attr_e;esc_attr_x:1,2c;esc_html__;" -"esc_html_e;esc_attr_x;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-SearchPath-0: .\n" - -#: 404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Fehler! Diese Seite konnte nicht gefunden werden." - -#: 404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Scheinbar wurde die gewünschte Seite nicht gefunden. Möchten Sie einen der " -"folgenden Links benutzen oder eine neue Suche starten?" - -#: 404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "Zeigt Reiter der beliebtesten und neusten Beiträge & Kommentare" - -#: 404.php:31 -msgid "Most Used Categories" -msgstr "Meist genutzte Kategorien" - -#: 404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Schauen Sie in den Monatsarchiven. %1$s" - -#: 404.php:53 archive.php:66 sidebar.php:31 -msgid "Archives" -msgstr "Archive" - -#: 404.php:58 -#, fuzzy -msgid "Tags" -msgstr "Benutzt in P-Tags" - -#: archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Autor: %s" - -#: archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Tag: %s" - -#: archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Monat: %s" - -#: archive.php:33 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "F Y" - -#: archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Jahr: %s" - -#: archive.php:36 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "Y" - -#: archive.php:39 -msgid "Asides" -msgstr "Nebenbemerkungen" - -#: archive.php:42 -msgid "Galleries" -msgstr "Galerien" - -#: archive.php:45 -msgid "Images" -msgstr "Bilder" - -#: archive.php:48 -msgid "Videos" -msgstr "Videos" - -#: archive.php:51 -msgid "Quotes" -msgstr "Zitate" - -#: archive.php:54 -msgid "Links" -msgstr "Links" - -#: archive.php:57 -msgid "Statuses" -msgstr "Status" - -#: archive.php:60 -msgid "Audios" -msgstr "Audio" - -#: archive.php:63 -msgid "Chats" -msgstr "Chats" - -#: comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: comments.php:35 comments.php:54 -msgid "Comment navigation" -msgstr "Kommentare navigieren" - -#: comments.php:36 comments.php:55 -msgid "← Older Comments" -msgstr "← ältere Kommentare" - -#: comments.php:37 comments.php:56 -msgid "Newer Comments →" -msgstr "Neueste Kommentare →" - -#: comments.php:66 -msgid "Comments are closed." -msgstr "Kommentare sind deaktiviert." - -#: comments.php:77 -msgid "Name" -msgstr "" - -#: comments.php:81 -msgid "Email" -msgstr "" - -#: comments.php:85 -msgid "Website" -msgstr "" - -#: comments.php:94 -msgid "Post Reply" -msgstr "" - -#: comments.php:96 -msgctxt "comment form placeholder" -msgid "Comment" -msgstr "" - -#: content-grid.php:16 content-page.php:32 inc/extras.php:252 -msgid "Edit" -msgstr "Editiere" - -#: content-grid.php:28 content.php:41 content.php:67 inc/extras.php:137 -msgid "Read More" -msgstr "Weiterlesen" - -#: content-grid.php:37 content-page.php:21 content-single.php:43 content.php:56 -#: image.php:79 -msgid "Pages:" -msgstr "Seiten:" - -#: content-none.php:13 -msgid "Nothing Found" -msgstr "Nichts gefunden " - -#: content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "Ersten Artikel veröffentlichen? Hier starten." - -#: content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Leider war die Suche nicht erfolgreich. Versuchen Sie es mit anderen " -"Suchwörtern." - -#: content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Scheinbar konnten wir das Gewünschte nicht finden. Vielleicht hilft Ihnen " -"die Suche." - -#: content-single.php:21 content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: content-single.php:55 content.php:73 -msgid "Leave a comment" -msgstr "Kommentieren" - -#: content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: content.php:73 -msgid "1 Comment" -msgstr "1 Kommentar" - -#: content.php:73 -msgid "% Comments" -msgstr "% Kommentare" - -#: functions.php:71 -msgid "Primary Menu" -msgstr "Hauptmenü" - -#: functions.php:112 -msgid "Sidebar" -msgstr "Seitenleiste" - -#: functions.php:226 -msgid "Left Sidebar" -msgstr "Linke Sidebar" - -#: functions.php:226 -msgid "Right Sidebar" -msgstr "Rechte Sidebar" - -#: functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: functions.php:226 -msgid "Full Width" -msgstr "" - -#: functions.php:228 -msgid "Logo Only" -msgstr "" - -#: functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: functions.php:230 -msgid "Title Only" -msgstr "" - -#: functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: functions.php:266 searchform.php:14 -msgid "Search" -msgstr "" - -#: functions.php:266 searchform.php:14 -msgctxt "submit button" -msgid "Search" -msgstr "Suche" - -#: header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: image.php:22 -msgid " Previous" -msgstr " vorher" - -#: image.php:23 -msgid "Next " -msgstr "nächste " - -#: inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: inc/customizer.php:53 -msgid "Activello Options" -msgstr "" - -#: inc/customizer.php:54 -msgid "Panel to update activello theme options" -msgstr "" - -#: inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Einstellungen speichern" - -#: inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Wird auf der Startseite angezeigt" - -#: inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Website Layout Einstellungen" - -#: inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: inc/customizer.php:151 inc/customizer.php:161 inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Standardeinstellung wenn keine Farbe ausgewählt wurde" - -#: inc/customizer.php:160 -msgid "Social icon color" -msgstr "Social Icon Farbe" - -#: inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: inc/customizer.php:177 -msgid "Footer" -msgstr "Footer" - -#: inc/customizer.php:195 -msgid "Other" -msgstr "Andere" - -#: inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Benutzerdefiniertes CSS" - -#: inc/customizer.php:205 -msgid "Additional CSS" -msgstr "Zusätzliches CSS" - -#: inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Support und Dokumentation" - -#: inc/customizer.php:356 -msgid "Activello Documentation" -msgstr "" - -#: inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Der beste Weg uns zu Support Anfragen und Fehler Reports zu " -"kontaktieren ist via" - -#: inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Colorlib Support Forum" - -#: inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Wenn Ihnen dieses Theme gefällt, dann freue ich mich über:" - -#: inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Dieses Theme bewerten" - -#: inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Auf Facebook Liken" - -#: inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Auf Twitter folgen" - -#: inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Dieser Artikel ist mit einem Passwort geschützt. Geben Sie Ihr Passwort " -"ein, um den Artikel zu lesen:

      " - -#: inc/extras.php:72 -msgid "Password:" -msgstr "Passwort:" - -#: inc/extras.php:75 -msgid "Submit" -msgstr "Absenden" - -#: inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Theme von %1$s Powered by %2$s" - -#: inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: inc/socialnav.php:13 -msgctxt "nav menu location" -msgid "Social Menu" -msgstr "" - -#: inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Posts Navigation" - -#: inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Post Navigation" - -#: inc/template-tags.php:59 -msgctxt "Previous post link" -msgid " %title" -msgstr " %title [Voriger Beitrag]" - -#: inc/template-tags.php:60 -msgctxt "Next post link" -msgid "%title " -msgstr "%title [Nächster Beitrag]" - -#: inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: inc/widgets/widget-categories.php:11 -msgid "Activello widget to display categories" -msgstr "" - -#: inc/widgets/widget-categories.php:12 -msgid "Activello Categories" -msgstr "" - -#: inc/widgets/widget-categories.php:17 inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Kategorien" - -#: inc/widgets/widget-categories.php:83 inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Titel" - -#: inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Kategorien Limit" - -#: inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Beitragszähler benutzen" - -#: inc/widgets/widget-recent-posts.php:11 -msgid "Activello recent posts widget with thumbnails" -msgstr "" - -#: inc/widgets/widget-recent-posts.php:12 -msgid "Activello Recent Posts Widget" -msgstr "" - -#: inc/widgets/widget-recent-posts.php:17 -#: inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Titel" - -#: inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Begrenze Beitragsanzahl" - -#: inc/widgets/widget-social.php:11 -msgid "Activello theme widget to display social media icons" -msgstr "" - -#: inc/widgets/widget-social.php:12 -msgid "Activello Social Widget" -msgstr "" - -#: inc/widgets/widget-social.php:17 inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Folgen Sie uns" - -#: search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Suchergebnisse für: %s" - -#: searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Suche nach:" - -#: searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Suche…" - -#: searchform.php:12 -msgctxt "label" -msgid "Search for:" -msgstr "Suche nach:" - -#: sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Fußzeilenmenü" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Ein Kommentar zu “%2$s”" -#~ msgstr[1] "%1$s Kommentare zu “%2$s”" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Homepage Widget 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Wird auf der Startseite angezeigt" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Homepage Widget 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Homepage Widget 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Footer Widget 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Platz für Footer Widgets" - -#~ msgid "Footer Widget 2" -#~ msgstr "Footer Widget 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Footer Widget 3" - -#~ msgid "Theme Options" -#~ msgstr "Theme Optionen" - -#~ msgid "Save Options" -#~ msgstr "Einstellungen speichern" - -#~ msgid "Restore Defaults" -#~ msgstr "Standardeinstellungen wieder herstellen" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Klicken Sie OK um alles rückgängig zu machen. Theme Änderungen werden " -#~ "nicht gespeichert!" - -#~ msgid "Default options restored." -#~ msgstr "Standardeinstellungen wieder hergestellt." - -#~ msgid "Options saved." -#~ msgstr "Einstellungen gespeichert." - -#~ msgid "No file chosen" -#~ msgstr "Keine Datei ausgewählt" - -#~ msgid "Upload" -#~ msgstr "Upload" - -#~ msgid "Remove" -#~ msgstr "Entfernen" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "" -#~ "Laden Sie die neueste WordPress Version für vollständigen Mediensupport." - -#~ msgid "View File" -#~ msgstr "Datei anzeigen" - -#~ msgid "No Repeat" -#~ msgstr "Ohne Wiederholung" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Horizontale Wiederholung" - -#~ msgid "Repeat Vertically" -#~ msgstr "Vertikale Wiederholung" - -#~ msgid "Repeat All" -#~ msgstr "Wiederholen" - -#~ msgid "Top Left" -#~ msgstr "Oben links" - -#~ msgid "Top Center" -#~ msgstr "Oben Zentrum" - -#~ msgid "Top Right" -#~ msgstr "Oben rechts" - -#~ msgid "Middle Left" -#~ msgstr "Mitte links" - -#~ msgid "Middle Center" -#~ msgstr "Mitte Zentrum" - -#~ msgid "Middle Right" -#~ msgstr "Mitte rechts" - -#~ msgid "Bottom Left" -#~ msgstr "Unten links" - -#~ msgid "Bottom Center" -#~ msgstr "Unten Zentrum" - -#~ msgid "Bottom Right" -#~ msgstr "Unten rechts" - -#~ msgid "Scroll Normally" -#~ msgstr "Normal scrollen" - -#~ msgid "Fixed in Place" -#~ msgstr "Am Platz fixiert" - -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Italic" -#~ msgstr "Kursiv" - -#~ msgid "Bold" -#~ msgstr "Fett" - -#~ msgid "Bold Italic" -#~ msgstr "Fett Kursiv" - -#~ msgid "Page %s" -#~ msgstr "Seite %s" - -#~ msgid "Follow us on " -#~ msgstr "Folgen Sie uns auf" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Sparkling Dokumentation" - -#~ msgid " Older posts" -#~ msgstr " ältere Artikel" - -#~ msgid "Newer posts " -#~ msgstr "neuere Artikel " - -#~ msgid "Sparkling Categories" -#~ msgstr "Sparkling Kategorien" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling Beliebte Beiträge Widget" - -#~ msgid "Popular Posts" -#~ msgstr "Beliebte Beiträge" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling Social Widget" - -#~ msgid "One" -#~ msgstr "eins" - -#~ msgid "Two" -#~ msgstr "Zwei" - -#~ msgid "Three" -#~ msgstr "Drei" - -#~ msgid "Four" -#~ msgstr "Vier" - -#~ msgid "Five" -#~ msgstr "Fünf" - -#~ msgid "French Toast" -#~ msgstr "Französischer Toast" - -#~ msgid "Pancake" -#~ msgstr "Pfannkuchen" - -#~ msgid "Omelette" -#~ msgstr "Omelette" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Waffel" - -#~ msgid "Main" -#~ msgstr "Haupt" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Möchten Sie den Image Slider auf der Startseite anzeigen?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Anhaken, wenn der Slider angezeigt werden soll" - -#~ msgid "Slider Category" -#~ msgstr "Slider Kategorie" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Wählen Sie eine Anzeigekategorie für die Beiträge im Slider" - -#~ msgid "Number of slide items" -#~ msgstr "Anzahl Slider Bilder" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Geben Sie die Anzahl der Bilder im Slider an" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "Wähle Sie ob die linke oder rechte Seitenleiste voreingestellt ist" - -#~ msgid "Element color" -#~ msgstr "Element Farbe" - -#~ msgid "Element color on hover" -#~ msgstr "Element Farbe für hover (Maus gleitet über Linkelement)" - -#~ msgid "Custom Favicon" -#~ msgstr "Benutzerdefiniertes Favicon" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "Laden Sie ein 32px x 32px PNG/GIF Bild als Favicon hoch" - -#~ msgid "Action Button" -#~ msgstr "Aktionsbutton" - -#~ msgid "Call For Action Text" -#~ msgstr "Aktionsbutton Text" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Geben Sie den Text für den Aktionsbutton-Abschnitt ein" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Aktionsbutton Titel" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Geben Sie den Titel für den Aktionsbutton ein" - -#~ msgid "CFA button link" -#~ msgstr "Aktionsbutton Link" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Geben Sie den Link für den Aktionsbutton ein" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Aktionsbutton Textfarbe" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Aktionsbutton Hintergrundfarbe" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Aktionsbutton Rahmenfarbe" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Aktionsbutton Text Farbe" - -#~ msgid "Typography" -#~ msgstr "Typographie" - -#~ msgid "Main Body Text" -#~ msgstr "Main Body Text" - -#~ msgid "Used in P tags" -#~ msgstr "Benutzt in P tags" - -#~ msgid "Heading Color" -#~ msgstr "Überschriftenfarbe" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Farbe für alle Überschriften (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Link Farbe" - -#~ msgid "Link:hover Color" -#~ msgstr "Link:hover Farbe" - -#~ msgid "Header" -#~ msgstr "Kopf" - -#~ msgid "Top nav background color" -#~ msgstr "Top nav Hintergrund Farbe" - -#~ msgid "Top nav item color" -#~ msgstr "Top nav Element Farbe" - -#~ msgid "Link color" -#~ msgstr "Link Farbe" - -#~ msgid "Top nav item hover color" -#~ msgstr "Top nav Element hover Farbe" - -#~ msgid "Link:hover color" -#~ msgstr "Link:hover Farbe" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Top nav Dropdown Hintergrund Farbe" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Hintergrund Dropdown Element - Hover Farbe" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Top nav Dropdown Element Farbe" - -#~ msgid "Dropdown item color" -#~ msgstr "Dropdown Element Farbe" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Top nav dropdown Eintrag - Hover Farbe" - -#~ msgid "Dropdown item hover color" -#~ msgstr "dropdown Eintrag - Hover Farbe" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Top nav dropdown Eintrag - Hover Hintergrundfarbe" - -#~ msgid "Footer widget area background color" -#~ msgstr "Footer Widget Bereich Hintergrund Farbe" - -#~ msgid "Footer background color" -#~ msgstr "Footer Hintergrund Farbe" - -#~ msgid "Footer text color" -#~ msgstr "Footer Text Farbe" - -#~ msgid "Footer link color" -#~ msgstr "Footer Link Farbe" - -#~ msgid "Footer information" -#~ msgstr "Footer Information" - -#~ msgid "Copyright text in footer" -#~ msgstr "Copyright Text im Footer" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Footer Social Icon Farbe" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Footer Social Icon Farbe" - -#~ msgid "Social" -#~ msgstr "Social" - -#~ msgid "Footer social icon color" -#~ msgstr "Footer Social Icon Farbe" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "" -#~ "Fügen Sie die vollständigen URL's Ihrer Social Network Profile hinzu" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#, fuzzy -#~ msgctxt "placeholder" -#~ msgid "Search..." -#~ msgstr "Suche..." diff --git a/languages/es_ES.mo b/languages/es_ES.mo deleted file mode 100644 index 044eb29..0000000 Binary files a/languages/es_ES.mo and /dev/null differ diff --git a/languages/es_ES.po b/languages/es_ES.po deleted file mode 100644 index d5bdeed..0000000 --- a/languages/es_ES.po +++ /dev/null @@ -1,962 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:36+0200\n" -"PO-Revision-Date: 2016-02-17 15:36+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"_nx: 4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Oops! La página no ha podido ser encontrada." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Parece que nada ha sido encontrado en esta ubicación. Podria probrar uno de " -"los links por abajo o la búsqueda?" - -#: ../404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "Entradas Populares" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Categorías más usadas" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Intenta buscar en los archivos mensuales. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Archivos" - -#: ../404.php:58 -#, fuzzy -msgid "Tags" -msgstr "Usado en los tags P" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Autor: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Día: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Mes: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Año: %s" - -#: ../archive.php:39 -#, fuzzy -msgid "Asides" -msgstr "Digressioni" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Galerías" - -#: ../archive.php:45 -msgid "Images" -msgstr "Imágenes" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Vídeos" - -#: ../archive.php:51 -#, fuzzy -msgid "Quotes" -msgstr "Citazioni" - -#: ../archive.php:54 -msgid "Links" -msgstr "Enlaces" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Estaados" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Audios" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Chats" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -#, fuzzy -msgid "Comment navigation" -msgstr "Navigazione commento" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Comentarios más antiguos" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Comentarios más recientes →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Los Comentarios están cerrados." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Editar" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Leer Más" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Páginas:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "No se han encontrado resultados" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"¿Preparado para publicar tu primera entrada? Empieza aquí." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Perdón pero nada corresponde con las condiciones de búsqueda. Intenta de " -"nuevo usando otras palabras clave." - -#: ../content-none.php:28 -#, fuzzy -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Sembra che non riusciamo a trovare quello che stai cercando. Forse la " -"ricerca può aiutare." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Deja un comentario" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 Comentario" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% Comentarios" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Menú Principal" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Barra Lateral" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Barra Lateral Izquierda" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Barra Lateral Derecha" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Busca" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Anterior" - -#: ../image.php:23 -msgid "Next " -msgstr "Soguiente " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Opciones del Theme" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Se muestra en la Página de Inicio" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Opciones del Diseño Gráfico de la Web" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Por defecto si ningún color es seleccionado" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Color de icono social" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Pie de página" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Otros" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Personalizar CSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "CSS Adicional" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Soporte y Documentación" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"La mejor forma de contactar con nosotros Preguntas de Soporte y " -"reportar bug es vía" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Foro de soporte Colorlib" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "" -"Si te gusta este tema, agradecería cualquiera de los siguientes acciones:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Vota este Theme" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Me Gusta en Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Síguenos en Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Esta publicación es protegida por una clave. Para mostrarla escribe tu " -"clave abajo:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Contraseña:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Enviar" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Theme por %1$s Desarrollado por %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -#, fuzzy -msgid "Posts navigation" -msgstr "Navigazione post" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -#, fuzzy -msgid "Post navigation" -msgstr "Navigazione post" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Categorías" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Título" - -#: ../inc/widgets/widget-categories.php:91 -#, fuzzy -msgid "Limit Categories " -msgstr "Limite categorie" - -#: ../inc/widgets/widget-categories.php:104 -#, fuzzy -msgid "Enable Posts Count" -msgstr "Abilita il conteggio dei post" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Título" - -#: ../inc/widgets/widget-recent-posts.php:104 -#, fuzzy -msgid "Limit Posts Number" -msgstr "Limita il numero di post" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Síguenos" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Resultados de búsqueda para %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Cerca..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Busca" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Cerca..." - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Enlaces Pie de Página" - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Página de Inicio Widget 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Se muestra en la Página de Inicio" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Página Principal Widget 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Página Principal Widget 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Pie de Página Widget 1" - -#, fuzzy -#~ msgid "Used for footer widget area" -#~ msgstr "Usato per l'area widget nel footer" - -#~ msgid "Footer Widget 2" -#~ msgstr "Pie de Página Widget 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Pie de Página Widget 3" - -#~ msgid "Theme Options" -#~ msgstr "Opciones del Theme" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Pulsa OK para reiniciar. Cualquier configuración del tema será perderá!" - -#~ msgid "Default options restored." -#~ msgstr "Opciones Por defecto restauradas." - -#~ msgid "Options saved." -#~ msgstr "Opciones guardadas." - -#~ msgid "No file chosen" -#~ msgstr "Ningún archivo elegido." - -#~ msgid "Upload" -#~ msgstr "Subir" - -#~ msgid "Remove" -#~ msgstr "Eliminar" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Actualiza tu versión de WordPress para el apoyo completo." - -#~ msgid "View File" -#~ msgstr "Ver Archivo" - -#, fuzzy -#~ msgid "No Repeat" -#~ msgstr "Non ripetere" - -#, fuzzy -#~ msgid "Repeat Horizontally" -#~ msgstr "Ripeti orizzontalmente" - -#, fuzzy -#~ msgid "Repeat Vertically" -#~ msgstr "Ripeti verticalmente" - -#, fuzzy -#~ msgid "Repeat All" -#~ msgstr "Ripeti" - -#~ msgid "Top Left" -#~ msgstr "Top Izquierda" - -#~ msgid "Top Center" -#~ msgstr "Top Parte Central" - -#~ msgid "Top Right" -#~ msgstr "Top Derecha" - -#~ msgid "Middle Left" -#~ msgstr "Parte media Izquierda" - -#~ msgid "Middle Center" -#~ msgstr "Parte Media Centrada" - -#~ msgid "Middle Right" -#~ msgstr "Parte Media Derecha" - -#~ msgid "Bottom Left" -#~ msgstr "Parte baja Izquierda" - -#~ msgid "Bottom Center" -#~ msgstr "Parte baja Centrada" - -#~ msgid "Bottom Right" -#~ msgstr "Parte baja Derecha" - -#~ msgid "Scroll Normally" -#~ msgstr "Scroll Normally" - -#, fuzzy -#~ msgid "Fixed in Place" -#~ msgstr "Fisso sul posto" - -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Italic" -#~ msgstr "Cursiva" - -#~ msgid "Bold" -#~ msgstr "Negrita" - -#~ msgid "Bold Italic" -#~ msgstr "Negrita Cursiva" - -#~ msgid "Page %s" -#~ msgstr "Página %s" - -#~ msgid "Follow us on " -#~ msgstr "Síguenos en" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Documentación de Sparkling" - -#~ msgid " Older posts" -#~ msgstr " Entradas más antiguas" - -#~ msgid "Newer posts " -#~ msgstr "Entradas más nuevas " - -#~ msgid "Sparkling Categories" -#~ msgstr "Sparkling Categorías" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling Popular Posts Widget" - -#~ msgid "Popular Posts" -#~ msgstr "Entradas Populares" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling Social Widget" - -#~ msgid "One" -#~ msgstr "Uno" - -#~ msgid "Two" -#~ msgstr "Dos" - -#~ msgid "Three" -#~ msgstr "Tres" - -#~ msgid "Four" -#~ msgstr "Cuatro" - -#~ msgid "Five" -#~ msgstr "Cinco" - -#~ msgid "French Toast" -#~ msgstr "Tostado francés" - -#~ msgid "Pancake" -#~ msgstr "Panqueque" - -#~ msgid "Omelette" -#~ msgstr "Omelette" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Waffle" - -#~ msgid "Main" -#~ msgstr "Principal" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "¿Quieres mostrar la imagen Slider en la página de inicio?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Marcar si quieres activar el Slider" - -#~ msgid "Slider Category" -#~ msgstr "Categoría Slider" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Selecciona una categoría para post destacado en el Slider" - -#~ msgid "Number of slide items" -#~ msgstr "Número de items en el slide" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Añada el número de ítems en el Slide" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "" -#~ "Elige entre las opciones de Barra lateral a la Izquierda y Derecha para " -#~ "que sean usadas por defecto" - -#~ msgid "Element color" -#~ msgstr "Color del elemento" - -#~ msgid "Element color on hover" -#~ msgstr "Color del elemento en hover" - -#~ msgid "Custom Favicon" -#~ msgstr "Favicon personalizado" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "Subir la imagen a 32px x 32px PNG/GIF que representará tu página web, " -#~ "Favicon" - -#~ msgid "Action Button" -#~ msgstr "Botón de la acción" - -#~ msgid "Call For Action Text" -#~ msgstr "Texto de la Llamada para la Acción" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Añada el texto para la sección Llamada a la acción" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Título del botón Llamada a la acción" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Añada el título para el botón Llamada a la acción" - -#~ msgid "CFA button link" -#~ msgstr "Link del botón CFA" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Añada el link para el botón Llamada a la acción" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Color del Texto de la Llamada a la acción" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Color del fondo de la Llamada a la acción" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Color del borde del botón Llamada a la acción" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Color del Texto del botón Llamada a la acción" - -#~ msgid "Typography" -#~ msgstr "Tipografía" - -#~ msgid "Main Body Text" -#~ msgstr "Cuerpo Principal del Texto" - -#~ msgid "Used in P tags" -#~ msgstr "Usado en los tags P" - -#~ msgid "Heading Color" -#~ msgstr "Color del encabezado" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Color para todos los encabezados (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Color del link" - -#~ msgid "Link:hover Color" -#~ msgstr "Color del link:hover" - -#~ msgid "Header" -#~ msgstr "Cabecera" - -#~ msgid "Top nav background color" -#~ msgstr "Color del fondo del Top nav" - -#~ msgid "Top nav item color" -#~ msgstr "Color del ítem del Top nav" - -#~ msgid "Link color" -#~ msgstr "Color del link" - -#~ msgid "Top nav item hover color" -#~ msgstr "Color del ítem hover del Top nav" - -#~ msgid "Link:hover color" -#~ msgstr "Color del Link:hover" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Color del fondo del menú desplegable Top nav" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Color del fondo del ítem hover del menú desplegable" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Color del ítem del menú desplegable Top nav" - -#~ msgid "Dropdown item color" -#~ msgstr "Color del ítem del menú desplegable" - -#, fuzzy -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Colore voce del menu a tendina della navigazione principale" - -#, fuzzy -#~ msgid "Dropdown item hover color" -#~ msgstr "Sfondo della voce in hover del menu a tendina" - -#, fuzzy -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Colore voce del menu a tendina della navigazione principale" - -#~ msgid "Footer widget area background color" -#~ msgstr "Color del fondo del Widget en el Pie de página" - -#~ msgid "Footer background color" -#~ msgstr "Color de fondo en el Pie de página" - -#~ msgid "Footer text color" -#~ msgstr "Color del texto en el Pie de página" - -#~ msgid "Footer link color" -#~ msgstr "Color del link en el Pie de página" - -#~ msgid "Footer information" -#~ msgstr "Información del Pie de página" - -#~ msgid "Copyright text in footer" -#~ msgstr "Texto Copyright en el Pie de página" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Color del icono social del Pie de página" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Color del icono social del Pie de página" - -#~ msgid "Social" -#~ msgstr "Social" - -#~ msgid "Footer social icon color" -#~ msgstr "Color del icono social del Pie de página" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Añadir URL completa para tus perfiles sociales" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Search..." -#~ msgstr "Buscar..." - -#~ msgid "Default used if no color is selected." -#~ msgstr "Por defecto si ningún color es elegido." diff --git a/languages/fa_IR.mo b/languages/fa_IR.mo deleted file mode 100644 index 67919e8..0000000 Binary files a/languages/fa_IR.mo and /dev/null differ diff --git a/languages/fa_IR.po b/languages/fa_IR.po deleted file mode 100644 index 6243e21..0000000 --- a/languages/fa_IR.po +++ /dev/null @@ -1,953 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:36+0200\n" -"PO-Revision-Date: 2016-02-17 15:36+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: RobertCreed \n" -"Language: fa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"_nx: 4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "اوه! این صفحه نمی’تواند پیدا شود." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"بنظر می رسد چیزی در این محل پیدا نشد. شاید امتحان یکی از لینک های زیر یا " -"جستجو؟" - -#: ../404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "ناوبری مطالب" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "بیشترین دسته بندی های استفاده شده" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "نگاهی به بایگانی ماهیانه. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "بایگانی ها" - -#: ../404.php:58 -#, fuzzy -msgid "Tags" -msgstr "مورد استفاده در تگ P" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "نویسنده: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "روز: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "ماه: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "سال: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "گذشته ها" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "گالری ها" - -#: ../archive.php:45 -msgid "Images" -msgstr "تصاویر" - -#: ../archive.php:48 -msgid "Videos" -msgstr "ویدئوها" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "نقل قول ها" - -#: ../archive.php:54 -msgid "Links" -msgstr "لینک ها" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "وضعیت ها" - -#: ../archive.php:60 -msgid "Audios" -msgstr "صدا ها" - -#: ../archive.php:63 -msgid "Chats" -msgstr "گفتگو ها" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "ناوبری نظر" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← نظرات قدیمی تر" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "نظرات جدیدتر →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "نظرات بسته شده اند." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "ویرایش" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "بیشتر بخوانید" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "صفحات:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "چیزی یافت نشد." - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post?
      Get started here." -msgstr "" -"آماده اید برای ارسال اولین مطلب؟ از اینجا شروع کنید." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"متاسفیم، اما چیزی مطابق جستجوی شما یافت نشد. لطفا مجدد سعی کنید با کلمات " -"متفاوت." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"بنظر می رسد ما نمی’توانیم پیدا کنیم آنچه شما’بدنبالش هستید. " -"احتمالا جستجو می تواند کمک کند." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "نظر بگذارید" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 نظر" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% نظر" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "قهرست اولیه" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "نوار کناری" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "نوار کناری چپ" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "نوار کناری راست" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "جستجو" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " قبلی" - -#: ../image.php:23 -msgid "Next " -msgstr "بعدی " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "تنظیمات قالب" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "نمایش در صفحه اصلی" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "گزینه های طرح بندی وب سایت" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "به طور پیش فرض استفاده می شود اگر رنگ انتخاب شود" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "رنگ آیکون های اجتماعی" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "پانویس" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "دیگر" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "CSS سفارشی" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "CSS اضافی" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "پشتیبانی و مستندات" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "بهترین راه تماس با ما پشتیبانی پرسش و گزارش باگ است" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "انجمن پشتیبانی Colorlib" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "اگر این قالب را می پسندید، من قدردانی میکنم از هر نوع دنبال کردنی:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "رای به این قالب" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "پسند به ما در فیسبوک" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "دنبال کردن ما در توییتر" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      این مطلب با رمز عبور محافظت می شود. برای نمایش رمز را در پایین وارد کنید: " -"

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "رمز عبور:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "تایید" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "پوسته توسط %1$s قدرت گرفته از %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "ناوبری مطالب" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "ناوبری مطالب" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "دسته بندی" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "عنوان" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "محدودیت دسته بندی" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "فعال کردن شمارش مطالب" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "عنوان" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "محدودیت شماره مطالب" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "ما را دنبال کنید" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "نتایج جستجو برای: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "جستجو برای:" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "جستجو" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "جستجو برای:" - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "متا" - -#~ msgid "Footer Links" -#~ msgstr "لینک پانویس" - -#, fuzzy -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "ویدجت خانه 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "نمایش در صفحه اصلی" - -#~ msgid "Homepage Widget 2" -#~ msgstr "ویدجت خانه 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "ویدجت خانه 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "ویدجت پانویس 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "استفاده در محل ویدجت پانویس" - -#~ msgid "Footer Widget 2" -#~ msgstr "ویدجت پانویس 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "ویدجت پانویس 3" - -#~ msgid "Theme Options" -#~ msgstr "تنظیمات قالب" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "روی ok برای تنظیم مجدد کلیک کنید. تمام تنظیمات به حالت اولیه در خواهند " -#~ "آمد!" - -#~ msgid "Default options restored." -#~ msgstr "تنظیمات پیش فرض اعمال شدند." - -#~ msgid "Options saved." -#~ msgstr "تنظیمات ذخیره شدند." - -#~ msgid "No file chosen" -#~ msgstr "پرونده ای انتخاب نشده" - -#~ msgid "Upload" -#~ msgstr "بارگذاری" - -#~ msgid "Remove" -#~ msgstr "حذف" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "" -#~ "نسخه وردپرس خود را برای پشتیبانی از تمام پرونده های مدیا ارتقا دهید." - -#~ msgid "View File" -#~ msgstr "نمایش پرونده" - -#~ msgid "No Repeat" -#~ msgstr "بدون تکرار" - -#~ msgid "Repeat Horizontally" -#~ msgstr "تکرار به صورت افقی" - -#~ msgid "Repeat Vertically" -#~ msgstr "تکرار به صورت عمودی" - -#~ msgid "Repeat All" -#~ msgstr "تکرار همه" - -#~ msgid "Top Left" -#~ msgstr "بالا چپ" - -#~ msgid "Top Center" -#~ msgstr "بالا مرکز" - -#~ msgid "Top Right" -#~ msgstr "بالا راست" - -#~ msgid "Middle Left" -#~ msgstr "وسط چپ" - -#~ msgid "Middle Center" -#~ msgstr "وسط مرکز" - -#~ msgid "Middle Right" -#~ msgstr "وسط راست" - -#~ msgid "Bottom Left" -#~ msgstr "پایین چپ" - -#~ msgid "Bottom Center" -#~ msgstr "پایین مرکز" - -#~ msgid "Bottom Right" -#~ msgstr "پایین راست" - -#~ msgid "Scroll Normally" -#~ msgstr "حرکت عادی" - -#~ msgid "Fixed in Place" -#~ msgstr "ثابت در مکان" - -#~ msgid "Normal" -#~ msgstr "معمولی" - -#~ msgid "Italic" -#~ msgstr "اریب" - -#~ msgid "Bold" -#~ msgstr "ضخیم" - -#~ msgid "Bold Italic" -#~ msgstr "ضخیم و اریب" - -#~ msgid "Page %s" -#~ msgstr "صفحات %s" - -#~ msgid "Follow us on " -#~ msgstr "ما را دنبال کنید در" - -#~ msgid "Sparkling Documentation" -#~ msgstr "مستندات Sparkling" - -#~ msgid " Older posts" -#~ msgstr " مطالب قدیمی تر" - -#~ msgid "Newer posts " -#~ msgstr "مطالب جدیدتر " - -#~ msgid "Sparkling Categories" -#~ msgstr "دسته بندی Sparkling" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "ویدجت مطالب محبوب Sparkling" - -#~ msgid "Popular Posts" -#~ msgstr "مطالب محبوب" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "ویدجت شبکه Sparkling" - -#~ msgid "One" -#~ msgstr "یک" - -#~ msgid "Two" -#~ msgstr "دو" - -#~ msgid "Three" -#~ msgstr "سه" - -#~ msgid "Four" -#~ msgstr "چهار" - -#~ msgid "Five" -#~ msgstr "پنج" - -#~ msgid "French Toast" -#~ msgstr "نان تست فرانسوی" - -#~ msgid "Pancake" -#~ msgstr "کلوچه" - -#~ msgid "Omelette" -#~ msgstr "املت" - -#~ msgid "Crepe" -#~ msgstr "کرپ" - -#~ msgid "Waffle" -#~ msgstr "وفل" - -#~ msgid "Main" -#~ msgstr "صفحه اصلی" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "آیا مایلید اسلایدر را در صفحه اصلی نمایش دهید؟" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "فعال کنید اگر مایل به نمایش اسلایدر هستید" - -#~ msgid "Slider Category" -#~ msgstr "دسته بندی اسلایدر" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "انتخاب دسته بندی برای اسلایدر مطالب ویژه" - -#~ msgid "Number of slide items" -#~ msgstr "تعداد اسلایدها" - -#~ msgid "Enter the number of slide items" -#~ msgstr "تعداد موارد اسلاید را وارد کنید" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "انتخاب کنید بین نوار کنار چپ و راست برای تایین بعنوان پیش فرض" - -#~ msgid "Element color" -#~ msgstr "رنگ عنصر" - -#~ msgid "Element color on hover" -#~ msgstr "رنگ عنصر در شناور" - -#~ msgid "Custom Favicon" -#~ msgstr "فاویکن دلخواه" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "بارگذاری یک تصویر 32px x 32px PNG/GIF و آن استفاده خواهد شد بعنوان فاویکن " -#~ "سایت شما" - -#~ msgid "Action Button" -#~ msgstr "دکمه اکشن" - -#~ msgid "Call For Action Text" -#~ msgstr "فراخوان متن اکشن" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "متن را وارد کنید برای انتخاب اکشن" - -#~ msgid "Call For Action Button Title" -#~ msgstr "عنوان متن کلید اکشن" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "وارد کردن یک عنوان برای کلید اکشن" - -#~ msgid "CFA button link" -#~ msgstr "لینک کلید CFA" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "وارد کردن یک لینک برای کلید اکشن" - -#~ msgid "Call For Action Text Color" -#~ msgstr "فراخوان رنگ متن اکشن" - -#~ msgid "Call For Action Background Color" -#~ msgstr "فراخوان رنگ پس زمینه اکشن" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "فراخوان رنگ حاشیه کلید اکشن" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "فراخوان رنگ متن کلید اکشن" - -#~ msgid "Typography" -#~ msgstr "تایپوگرافی" - -#~ msgid "Main Body Text" -#~ msgstr "متن بدنه اصلی" - -#~ msgid "Used in P tags" -#~ msgstr "مورد استفاده در تگ P" - -#~ msgid "Heading Color" -#~ msgstr "رنگ عنوان" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "رنگ برای تمام عناوین (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "رنگ لینک" - -#~ msgid "Link:hover Color" -#~ msgstr "لینک:رنگ شناور" - -#~ msgid "Header" -#~ msgstr "سربرگ" - -#~ msgid "Top nav background color" -#~ msgstr "رنگ پس زمینه منو بالا" - -#~ msgid "Top nav item color" -#~ msgstr "رنگ آیتم های منو بالا" - -#~ msgid "Link color" -#~ msgstr "رنگ لینک" - -#~ msgid "Top nav item hover color" -#~ msgstr "رنگ مورد شناور منو بالا" - -#~ msgid "Link:hover color" -#~ msgstr "لینک:رنگ شناور" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "رنگ پس زمینه منو کرکره ای بالا" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "رنگ شناور پس زمینه منو کرکره ای بالا" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "رنگ مورد کرکره منو بالا" - -#~ msgid "Dropdown item color" -#~ msgstr "رنگ مورد کرکره" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "رنگ شناور آیتم کرکره منو بالا" - -#~ msgid "Dropdown item hover color" -#~ msgstr "رنگ شناور اقلام منو" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "رنگ پس زمینه شناور اقلام منو بالا" - -#~ msgid "Footer widget area background color" -#~ msgstr "رنگ پس زمینه محل ویدجت پانویس" - -#~ msgid "Footer background color" -#~ msgstr "رنگ پس زمینه پانویس" - -#~ msgid "Footer text color" -#~ msgstr "رنگ متن پانویس" - -#~ msgid "Footer link color" -#~ msgstr "رنگ لینک پانویس" - -#~ msgid "Footer information" -#~ msgstr "اطلاعات پانویس" - -#~ msgid "Copyright text in footer" -#~ msgstr "رنگ متن کپی رایت در پانویس" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "رنگ آیکون های اجتماعی پانویس" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "رنگ آیکون های اجتماعی پانویس" - -#~ msgid "Social" -#~ msgstr "اجتماعی" - -#~ msgid "Footer social icon color" -#~ msgstr "رنگ آیکون های اجتماعی پانویس" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "اضافه کردن URL کامل برای پروفایل های شبکه های اجتماعی خود" - -#, fuzzy -#~ msgid "Facebook" -#~ msgstr "فیسبوک" - -#, fuzzy -#~ msgid "Twitter" -#~ msgstr "توئیتر" - -#, fuzzy -#~ msgid "Google+" -#~ msgstr "گوگل پلاس" - -#, fuzzy -#~ msgid "Youtube" -#~ msgstr "یوتیوب" - -#, fuzzy -#~ msgid "LinkedIn" -#~ msgstr "لينكداين" - -#, fuzzy -#~ msgid "Pinterest" -#~ msgstr "پینترست" - -#, fuzzy -#~ msgid "RSS Feed" -#~ msgstr "خوراک RSS" - -#, fuzzy -#~ msgid "Tumblr" -#~ msgstr "تامبلر" - -#, fuzzy -#~ msgid "Flickr" -#~ msgstr "فلیکر" - -#, fuzzy -#~ msgid "Instagram" -#~ msgstr "اینستاگرام" - -#, fuzzy -#~ msgid "Dribbble" -#~ msgstr "دریبل" - -#, fuzzy -#~ msgid "Skype" -#~ msgstr "اسکایپ" - -#, fuzzy -#~ msgid "GitHub" -#~ msgstr "گیت هاب" - -#~ msgid "Search..." -#~ msgstr "جستجو..." diff --git a/languages/fr_FR.mo b/languages/fr_FR.mo deleted file mode 100644 index 9029078..0000000 Binary files a/languages/fr_FR.mo and /dev/null differ diff --git a/languages/fr_FR.po b/languages/fr_FR.po deleted file mode 100644 index 97b6987..0000000 --- a/languages/fr_FR.po +++ /dev/null @@ -1,959 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \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 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"_nx: 4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Oups ! Cette page est introuvable." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Il semble que rien n’ait été trouvé ici. Essayez peut-être un des " -"liens ci-dessous ou une recherche ?" - -#: ../404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "" -"Affiche les listes d'articles populaires, récents & commentaires" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Catégories les plus utilisées" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Essayer de regarder dans les archives mensuelles. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Archives" - -#: ../404.php:58 -#, fuzzy -msgid "Tags" -msgstr "Appliqué à la balise P ou paragraphe" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Auteur : %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Jour : %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Mois : %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Année : %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Asides" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Galleries" - -#: ../archive.php:45 -msgid "Images" -msgstr "Images" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Vidéos" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Citations" - -#: ../archive.php:54 -msgid "Links" -msgstr "Liens" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Statuts" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Audio" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Discussions" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Pagination des commentaires" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Commentaires plus anciens" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Commentaires plus récents →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Les commentaires sont clos." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Édition" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Lire la suite" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Pages :" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Rien n'a été trouvé" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "Prêt à publier votre premier article ? Démarrer." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Désolé, mais aucun résultat ne correspond à votre recherche. Merci d'essayer " -"avec d'autres termes." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Il semble que ce que vous cherchez est introuvable. Peut-être qu’une " -"recherche aidera." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Laisser un commentaire" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 commentaire" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% commentaires" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Menu principal" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Barre latérale" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Barre latérale à gauche" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Barre latérale à droite" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Rechercher" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Précédent" - -#: ../image.php:23 -msgid "Next " -msgstr "Suivant " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Options du thème" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Affiché sur la page d'accueil" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Options de mise en page du site" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "La couleur par défaut sera utilisée si aucune n'est séléctionnée" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Couleur des icônes de réseaux sociaux" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Bas de page" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Autres" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "CSS personnalisé" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "CSS supplémentaires" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Support et documentation" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"La meilleur façon de nous contacter pour des questions de support et " -"des rapports de bug est sur le" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Forum Colorlib de support [en]" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Si vous aimez ce thème, vous pouvez :" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Noter ce thème" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Aimer sur Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Nous suivre sur Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Cet article est protégé par un mot de passe. Pour le lire, veuillez " -"entrer votre mot de passe ci-dessous :

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Mot de passe :" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Valider" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Thème par %1$s. Propulsé par %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Pagination des articles" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Pagination d'article" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Catégories" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Titre" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Limite du nombre de catégories" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Activer le compteur d'articles" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Titre" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Limite du nombre d'articles" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Suivez nous" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Résultats de recherche pour : %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Rechercher..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Rechercher" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Rechercher..." - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Méta" - -#~ msgid "Footer Links" -#~ msgstr "Liens de bas de page" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Une réponse à “%2$s”" -#~ msgstr[1] "%1$s réponses à “%2$s”" - -#~ msgid ", " -#~ msgstr ", " - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Widget de page d'accueil 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Affiché sur la page d'accueil" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Widget de page d'accueil 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Widget de page d'accueil 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Widget de bas de page 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Utilisé pour la zone de widgets de bas de page" - -#~ msgid "Footer Widget 2" -#~ msgstr "Widget de bas de page 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Widget de bas de page 3" - -#~ msgid "Theme Options" -#~ msgstr "Options du thème" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Cliquez sur OK pour réinitialiser. Tout réglage de thème sera perdu !" - -#~ msgid "Default options restored." -#~ msgstr "Options par défaut réinitialisées" - -#~ msgid "Options saved." -#~ msgstr "Options sauvées." - -#~ msgid "No file chosen" -#~ msgstr "Aucun fichier séléctionné" - -#~ msgid "Upload" -#~ msgstr "Chargement" - -#~ msgid "Remove" -#~ msgstr "Supprimer" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "" -#~ "Mettez à niveau votre version de Wordpress pour un support complet des " -#~ "Médias" - -#~ msgid "View File" -#~ msgstr "Voir le fichier" - -#~ msgid "No Repeat" -#~ msgstr "Pas de répétition" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Répéter horizontalement" - -#~ msgid "Repeat Vertically" -#~ msgstr "Répéter verticalement" - -#~ msgid "Repeat All" -#~ msgstr "Tout répéter" - -#~ msgid "Top Left" -#~ msgstr "Haut Gauche" - -#~ msgid "Top Center" -#~ msgstr "Haut Milieu" - -#~ msgid "Top Right" -#~ msgstr "Haut Droite" - -#~ msgid "Middle Left" -#~ msgstr "Milieu Gauche" - -#~ msgid "Middle Center" -#~ msgstr "Milieu Centre" - -#~ msgid "Middle Right" -#~ msgstr "Milieu Droite" - -#~ msgid "Bottom Left" -#~ msgstr "Bas Gauche" - -#~ msgid "Bottom Center" -#~ msgstr "Bas Milieu" - -#~ msgid "Bottom Right" -#~ msgstr "Bas Droite" - -#~ msgid "Scroll Normally" -#~ msgstr "Scroll Normal" - -#~ msgid "Fixed in Place" -#~ msgstr "Position Fixe" - -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Italic" -#~ msgstr "Italique" - -#~ msgid "Bold" -#~ msgstr "Gras" - -#~ msgid "Bold Italic" -#~ msgstr "Gras Italique" - -#~ msgid "Page %s" -#~ msgstr "Page %s" - -#~ msgid "Follow us on " -#~ msgstr "Suivez nous sur" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Documentation de Sparkling [en]" - -#~ msgid " Older posts" -#~ msgstr " Articles plus anciens" - -#~ msgid "Newer posts " -#~ msgstr "Articles plus récents " - -#~ msgid "Sparkling Categories" -#~ msgstr "Widget Sparkling Catégories" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Widget Sparkling Articles populaires" - -#~ msgid "Popular Posts" -#~ msgstr "Articles populaires" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Widget Sparkling Réseaux sociaux" - -#~ msgid "One" -#~ msgstr "Un" - -#~ msgid "Two" -#~ msgstr "Deux" - -#~ msgid "Three" -#~ msgstr "Trois" - -#~ msgid "Four" -#~ msgstr "Quatre" - -#~ msgid "Five" -#~ msgstr "Cinq" - -#~ msgid "French Toast" -#~ msgstr "Tartines" - -#~ msgid "Pancake" -#~ msgstr "Pancake" - -#~ msgid "Omelette" -#~ msgstr "Omelette" - -#~ msgid "Crepe" -#~ msgstr "Crêpe" - -#~ msgid "Waffle" -#~ msgstr "Gauffre" - -#~ msgid "Main" -#~ msgstr "Options principales" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Voulez-vous afficher un slider d'images sur la page d'accueil ?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Cochez si vous voulez activer le slider" - -#~ msgid "Slider Category" -#~ msgstr "Catégorie du slider" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "" -#~ "Séléctionnez une catégorie d'articles à mettre en avant dans le slider" - -#~ msgid "Number of slide items" -#~ msgstr "Nombre d'éléments" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Entrez le nombre d'éléments" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "" -#~ "Choisissez si la barre latérale doit s'afficher à gauche ou à droite par " -#~ "défaut" - -#~ msgid "Element color" -#~ msgstr "Couleur des boutons" - -#~ msgid "Element color on hover" -#~ msgstr "Couleur des boutons au survol" - -#~ msgid "Custom Favicon" -#~ msgstr "Favicon personnalisé" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "Chargez un image GIF/PNG de 32 px x 32 px à utiliser comme favicon" - -#~ msgid "Action Button" -#~ msgstr "Bouton d'action" - -#~ msgid "Call For Action Text" -#~ msgstr "Texte du bandeau d'action" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Entrez le texte du bandeau d'action (affiché à coté du bouton)" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Texte du bouton d'action" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Entrer le texte à afficher sur le bouton d'action" - -#~ msgid "CFA button link" -#~ msgstr "Lien du bouton d'action" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Entrer le lien pour le bouton d'action" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Couleur du texte du bandeau d'action" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Couleur d'arrière plan du bandeau d'action" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Couleur de bordure du bouton d'action" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Couleur du texte du bouton d'action" - -#~ msgid "Typography" -#~ msgstr "Typographie" - -#~ msgid "Main Body Text" -#~ msgstr "Texte principal" - -#~ msgid "Used in P tags" -#~ msgstr "Utilisé dans les balises P" - -#~ msgid "Heading Color" -#~ msgstr "Couleur des titres" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Couleur pour tous les titres (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Couleur des liens" - -#~ msgid "Link:hover Color" -#~ msgstr "Couleur des liens suvolés (a:hover)" - -#~ msgid "Header" -#~ msgstr "En-tête" - -#~ msgid "Top nav background color" -#~ msgstr "Couleur d'arrière plan du menu d'en-tête" - -#~ msgid "Top nav item color" -#~ msgstr "Couleur des éléments du menu d'en-tête" - -#~ msgid "Link color" -#~ msgstr "Couleur des liens" - -#~ msgid "Top nav item hover color" -#~ msgstr "Couleur des éléments survolés du menu d'en-tête" - -#~ msgid "Link:hover color" -#~ msgstr "Couleur des liens suvolés (a:hover)" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Couleur d'arrière plan de l'élément principal du menu déroulant" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Couleur d'arrière plan d'un élément survolé du menu déroulant" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Couleur du texte de l'élément principal du menu déroulant" - -#~ msgid "Dropdown item color" -#~ msgstr "Couleur des éléments de menu déroulant" - -#, fuzzy -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Couleur des éléments survolés du menu d'en-tête" - -#, fuzzy -#~ msgid "Dropdown item hover color" -#~ msgstr "Couleur d'arrière plan d'un élément survolé du menu déroulant" - -#, fuzzy -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "" -#~ "Couleur d'un sous-élément de l'arrière-plan survolé" - -#~ msgid "Footer widget area background color" -#~ msgstr "Couleur d'arrière plan de la zone de widgets de bas de page" - -#~ msgid "Footer background color" -#~ msgstr "Couleur d'arrière plan du bas de page" - -#~ msgid "Footer text color" -#~ msgstr "Couleur du texte de bas de page" - -#~ msgid "Footer link color" -#~ msgstr "Couleur des liens de bas de page" - -#~ msgid "Footer information" -#~ msgstr "Information sur le bas de page" - -#~ msgid "Copyright text in footer" -#~ msgstr "Texte de copyright en bas de page" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Couleur des icônes de réseaux sociaux de bas de page" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Couleur des icônes de réseaux sociaux de bas de page" - -#~ msgid "Social" -#~ msgstr "Social" - -#~ msgid "Footer social icon color" -#~ msgstr "Couleur des icônes de réseaux sociaux de bas de page" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Ajoutez les URL complètes de vos profils de réseaux sociaux" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "Flux RSS" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "Search..." -#~ msgstr "Rechercher..." - -#~ msgid "Default used if no color is selected." -#~ msgstr "La couleur par défaut sera utilisée si aucune n'est séléctionnée" diff --git a/languages/id_ID.mo b/languages/id_ID.mo deleted file mode 100644 index ba13d5f..0000000 Binary files a/languages/id_ID.mo and /dev/null differ diff --git a/languages/id_ID.po b/languages/id_ID.po deleted file mode 100644 index c955963..0000000 --- a/languages/id_ID.po +++ /dev/null @@ -1,990 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether\n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: Rhiski Aprilianto \n" -"Language: id_ID\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\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_html__;esc_html_e;esc_attr_x;esc_attr_e;esc_attr_x:1,2c;esc_html__;" -"esc_html_e;esc_attr_x;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-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" - -#: 404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Ups! Halaman itu tidak dapat ditemukan." - -#: 404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Sepertinya tidak ada yang ditemukan di lokasi ini. Mungkin mencoba salah " -"satu link di bawah ini atau pencarian?" - -#: 404.php:25 -msgid "Recent Posts" -msgstr "Tulisan Terbaru" - -#: 404.php:31 -msgid "Most Used Categories" -msgstr "Kategori Terbanyak Digunakan" - -#: 404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Coba cari di arsip bulanan. %1$s" - -#: 404.php:53 archive.php:66 sidebar.php:31 -msgid "Archives" -msgstr "Arsip" - -#: 404.php:58 -msgid "Tags" -msgstr "Tag" - -#: archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Penulis: %s" - -#: archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Hari: %s" - -#: archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Bulan: %s" - -#: archive.php:33 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "F Y" - -#: archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Tahun: %s" - -#: archive.php:36 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "Y" - -#: archive.php:39 -msgid "Asides" -msgstr "Aside" - -#: archive.php:42 -msgid "Galleries" -msgstr "Galeri" - -#: archive.php:45 -msgid "Images" -msgstr "Gambar" - -#: archive.php:48 -msgid "Videos" -msgstr "Video" - -#: archive.php:51 -msgid "Quotes" -msgstr "Kutipan" - -#: archive.php:54 -msgid "Links" -msgstr "Link" - -#: archive.php:57 -msgid "Statuses" -msgstr "Status" - -#: archive.php:60 -msgid "Audios" -msgstr "Audio" - -#: archive.php:63 -msgid "Chats" -msgstr "Chat" - -#: comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: comments.php:35 comments.php:54 -msgid "Comment navigation" -msgstr "Navigasi komentar" - -#: comments.php:36 comments.php:55 -msgid "← Older Comments" -msgstr "← Komentar Lama" - -#: comments.php:37 comments.php:56 -msgid "Newer Comments →" -msgstr "Komentar baru →" - -#: comments.php:66 -msgid "Comments are closed." -msgstr "Komentar ditutup." - -#: comments.php:77 -msgid "Name" -msgstr "" - -#: comments.php:81 -msgid "Email" -msgstr "" - -#: comments.php:85 -msgid "Website" -msgstr "" - -#: comments.php:94 -msgid "Post Reply" -msgstr "" - -#: comments.php:96 -msgctxt "comment form placeholder" -msgid "Comment" -msgstr "" - -#: content-grid.php:16 content-page.php:32 inc/extras.php:252 -msgid "Edit" -msgstr "Edit" - -#: content-grid.php:28 content.php:41 content.php:67 inc/extras.php:137 -msgid "Read More" -msgstr "Baca Selengkapnya" - -#: content-grid.php:37 content-page.php:21 content-single.php:43 content.php:56 -#: image.php:79 -msgid "Pages:" -msgstr "Halaman:" - -#: content-none.php:13 -msgid "Nothing Found" -msgstr "Tidak Ditemukan" - -#: content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"Siap untuk mempublikasikan posting pertama Anda? Persiapan " -"di sini ." - -#: content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Maaf, tapi tidak ada yang cocok dengan istilah pencarian Anda. Silakan coba " -"lagi dengan beberapa kata kunci yang berbeda." - -#: content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Tampaknya kita tidak dapat menemukan apa yang Anda cari. Mungkin pencarian " -"bisa membantu." - -#: content-single.php:21 content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: content-single.php:55 content.php:73 -msgid "Leave a comment" -msgstr "Tinggalkan komentar" - -#: content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: content.php:73 -msgid "1 Comment" -msgstr "1 komentar" - -#: content.php:73 -msgid "% Comments" -msgstr "% Komentar" - -#: functions.php:71 -msgid "Primary Menu" -msgstr "Menu Utama" - -#: functions.php:112 -msgid "Sidebar" -msgstr "Sidebar" - -#: functions.php:226 -msgid "Left Sidebar" -msgstr "Sidebar Kiri" - -#: functions.php:226 -msgid "Right Sidebar" -msgstr "Sidebar Kanan" - -#: functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: functions.php:226 -msgid "Full Width" -msgstr "" - -#: functions.php:228 -msgid "Logo Only" -msgstr "" - -#: functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: functions.php:230 -msgid "Title Only" -msgstr "" - -#: functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: functions.php:266 searchform.php:14 -msgid "Search" -msgstr "" - -#: functions.php:266 searchform.php:14 -msgctxt "submit button" -msgid "Search" -msgstr "Cari" - -#: header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: image.php:22 -msgid " Previous" -msgstr "Sebelumnya" - -#: image.php:23 -msgid "Next " -msgstr "Selanjutnya " - -#: inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: inc/customizer.php:60 -msgid "Content Options" -msgstr "Pengaturan Konten" - -#: inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "Tampilkan kutipan posting?" - -#: inc/customizer.php:85 -msgid "Display Comments on Static Pages?" -msgstr "Tampilan Komentar Halaman Statik?" - -#: inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Pilihan Layout Website" - -#: inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: inc/customizer.php:151 inc/customizer.php:161 inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Pengaturan standar digunakan jika tidak ada warna yang dipilih" - -#: inc/customizer.php:160 -msgid "Social icon color" -msgstr "Warna ikon sosial" - -#: inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: inc/customizer.php:177 -msgid "Footer" -msgstr "Footer" - -#: inc/customizer.php:195 -msgid "Other" -msgstr "Lainnya" - -#: inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Kustom CSS" - -#: inc/customizer.php:205 -msgid "Additional CSS" -msgstr "CSS Tambahan" - -#: inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Dukungan dan Dokumentasi" - -#: inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Cara terbaik untuk menghubungi kami dengan pertanyaan dukungan dan " -"laporan bug melalui" - -#: inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Colorlib support forum" - -#: inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Jika Anda menyukai tema ini, saya akan menghargai hal-hal berikut:" - -#: inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Merating Tema ini" - -#: inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Sukai kami di Facebook" - -#: inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Ikuti Kami di Twitter" - -#: inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Posting ini dilindungi sandi. Untuk melihat Mohon masukkan sandi Anda di " -"bawah ini:

      " - -#: inc/extras.php:72 -msgid "Password:" -msgstr "Kata sandi:" - -#: inc/extras.php:75 -msgid "Submit" -msgstr "Kirim" - -#: inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Tema oleh %1$s diberdayakan oleh %2$s" - -#: inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: inc/socialnav.php:13 -msgctxt "nav menu location" -msgid "Social Menu" -msgstr "" - -#: inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Navigasi tulisan" - -#: inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Navigasi tulisan" - -#: inc/template-tags.php:59 -msgctxt "Previous post link" -msgid " %title" -msgstr " %title" - -#: inc/template-tags.php:60 -msgctxt "Next post link" -msgid "%title " -msgstr "%title " - -#: inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: inc/widgets/widget-categories.php:17 inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Kategori" - -#: inc/widgets/widget-categories.php:83 inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Judul" - -#: inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Batasi Kategori" - -#: inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Mengaktifkan hitungan posting" - -#: inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: inc/widgets/widget-recent-posts.php:17 -#: inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Judul" - -#: inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Batasi Jumlah Tulisan" - -#: inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: inc/widgets/widget-social.php:17 inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Ikuti kami" - -#: search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Hasil Pencarian untuk: %s" - -#: searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Mencari:" - -#: searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Cari …" - -#: searchform.php:12 -msgctxt "label" -msgid "Search for:" -msgstr "Mencari:" - -#: sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Link footer" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Satu komentar pada "%2$s"" -#~ msgstr[1] "%1$s komentar pada "%2$s"" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Homepage Widget 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Tampilkan pada Home Page" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Homepage Widget 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Homepage Widget 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Footer Widget 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Digunakan untuk footer widget area" - -#~ msgid "Footer Widget 2" -#~ msgstr "Footer Widget 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Footer Widget 3" - -#~ msgid "Theme Options" -#~ msgstr "Pengaturan Tema" - -#~ msgid "Save Options" -#~ msgstr "Simpan Pilihan" - -#~ msgid "Restore Defaults" -#~ msgstr "Kembalikan Default" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "Klik OK untuk me-reset. Pengaturan tema akan hilang!" - -#~ msgid "Default options restored." -#~ msgstr "Pilihan default dipulihkan." - -#~ msgid "Options saved." -#~ msgstr "Pengaturan disimpan." - -#~ msgid "No file chosen" -#~ msgstr "Tak ada file yang dipilih" - -#~ msgid "Upload" -#~ msgstr "Unggah" - -#~ msgid "Remove" -#~ msgstr "Hapus" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Meng-upgrade versi WordPress untuk dukungan media penuh." - -#~ msgid "View File" -#~ msgstr "Tampilkan File" - -#~ msgid "No Repeat" -#~ msgstr "No Repeat" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Repeat Horizontally" - -#~ msgid "Repeat Vertically" -#~ msgstr "Repeat Horizontally" - -#~ msgid "Repeat All" -#~ msgstr "Repeat All" - -#~ msgid "Top Left" -#~ msgstr "Kiri Atas" - -#~ msgid "Top Center" -#~ msgstr "Tengah Atas" - -#~ msgid "Top Right" -#~ msgstr "Kanan Atas" - -#~ msgid "Middle Left" -#~ msgstr "Kiri Tengah" - -#~ msgid "Middle Center" -#~ msgstr "Tengah Tengah" - -#~ msgid "Middle Right" -#~ msgstr "Kanan Tengah" - -#~ msgid "Bottom Left" -#~ msgstr "Kiri Bawah" - -#~ msgid "Bottom Center" -#~ msgstr "Tengah Bawah" - -#~ msgid "Bottom Right" -#~ msgstr "Kanan Bawah" - -#~ msgid "Scroll Normally" -#~ msgstr "Gulir biasa" - -#~ msgid "Fixed in Place" -#~ msgstr "Tetap di tempat" - -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Italic" -#~ msgstr "Italic" - -#~ msgid "Bold" -#~ msgstr "Bold" - -#~ msgid "Bold Italic" -#~ msgstr "Bold Italic" - -#~ msgid "Page %s" -#~ msgstr "Halaman %s" - -#~ msgid "Follow us on " -#~ msgstr "Ikuti kami di" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Dokumentasi Sparkling" - -#~ msgid " Older posts" -#~ msgstr "Entri Lama " - -#~ msgid "Newer posts " -#~ msgstr "Entri Baru " - -#~ msgid "Sparkling Categories" -#~ msgstr "Sparkling Kategori" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Widget Sparkling Tulisan Populer" - -#~ msgid "Popular Posts" -#~ msgstr "Tulisan Populer" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling Social Widget" - -#~ msgid "One" -#~ msgstr "Satu" - -#~ msgid "Two" -#~ msgstr "Dua" - -#~ msgid "Three" -#~ msgstr "Tiga" - -#~ msgid "Four" -#~ msgstr "Empat" - -#~ msgid "Five" -#~ msgstr "Lima" - -#~ msgid "French Toast" -#~ msgstr "French Toast" - -#~ msgid "Pancake" -#~ msgstr "Pancake" - -#~ msgid "Omelette" -#~ msgstr "Omelette" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Waffle" - -#~ msgid "Main" -#~ msgstr "Utama" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Apakah Anda ingin menampilkan gambar slider pada Home Page?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Centang jika Anda ingin mengaktifkan slider" - -#~ msgid "Slider Category" -#~ msgstr "Slider Kategori" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Pilih sebuah kategori untuk tampilan slider pos" - -#~ msgid "Number of slide items" -#~ msgstr "Jumlah item slide" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Masukkan jumlah slide item" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "" -#~ "Pilih antara pilihan sidebar kiri dan kanan untuk digunakan sebagai " -#~ "default" - -#~ msgid "Element color" -#~ msgstr "Warna Elemen" - -#~ msgid "Element color on hover" -#~ msgstr "Warna Elemen ketika disorot" - -#~ msgid "Custom Favicon" -#~ msgstr "Kustom Favicon" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "Meng-upload gambar PNG GIF x 32px 32px yang akan mewakili favicon website " -#~ "Anda" - -#~ msgid "Action Button" -#~ msgstr "Action Button" - -#~ msgid "Call For Action Text" -#~ msgstr "Teks Call For Action" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Masukkan teks untuk bagian call for action" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Judul Tombol Call For Action" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Masukkan judul untuk tombol Call For Action" - -#~ msgid "CFA button link" -#~ msgstr "CFA tombol link" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Masukkan link untuk tombol Call For Action" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Warna Teks Call For Action" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Warna Background Call For Action" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Warna Border Tombol Call For Action" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Warna Teks Tombol Call For Action" - -#~ msgid "Typography" -#~ msgstr "Tipografi" - -#~ msgid "Main Body Text" -#~ msgstr "Teks tubuh utama" - -#~ msgid "Used in P tags" -#~ msgstr "Digunakan dalam tag P" - -#~ msgid "Heading Color" -#~ msgstr "Warna Heading" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Warna untuk semua Heading (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Warna Link" - -#~ msgid "Link:hover Color" -#~ msgstr "Warna Link:hover" - -#~ msgid "Header" -#~ msgstr "Header" - -#~ msgid "Top nav background color" -#~ msgstr "Warna Top nav background" - -#~ msgid "Top nav item color" -#~ msgstr "Warna Top nav item" - -#~ msgid "Link color" -#~ msgstr "Warna Link" - -#~ msgid "Top nav item hover color" -#~ msgstr "Warna Top nav item hover" - -#~ msgid "Link:hover color" -#~ msgstr "Warna Link:hover" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Warna Top nav dropdown background" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Warna Background dari dropdown item hover" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Warna Top nav dropdown item" - -#~ msgid "Dropdown item color" -#~ msgstr "Warna Dropdown item" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Warna Top nav dropdown item hover" - -#~ msgid "Dropdown item hover color" -#~ msgstr "Warna Dropdown item hover" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Warna Top nav dropdown item background hover" - -#~ msgid "Footer widget area background color" -#~ msgstr "Warna Background Footer widget area " - -#~ msgid "Footer background color" -#~ msgstr "Warna background footer" - -#~ msgid "Footer text color" -#~ msgstr "Warna teks footer" - -#~ msgid "Footer link color" -#~ msgstr "Warna link footer" - -#~ msgid "Footer information" -#~ msgstr "Informasi footer" - -#~ msgid "Copyright text in footer" -#~ msgstr "Teks hak cipta di footer" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Warna footer ikon sosial" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Warna footer ikon sosial" - -#~ msgid "Social" -#~ msgstr "Sosial" - -#~ msgid "Footer social icon color" -#~ msgstr "Warna footer ikon sosial" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Tambahkan URL lengkap untuk profil jaringan sosial" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "YouTube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgid "GitHub" -#~ msgstr "GitHub" - -#~ msgctxt "placeholder" -#~ msgid "Search..." -#~ msgstr "Cari..." diff --git a/languages/it_IT.mo b/languages/it_IT.mo deleted file mode 100644 index 3286647..0000000 Binary files a/languages/it_IT.mo and /dev/null differ diff --git a/languages/it_IT.po b/languages/it_IT.po deleted file mode 100644 index fba4a21..0000000 --- a/languages/it_IT.po +++ /dev/null @@ -1,948 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Oops! La pagina non può essere trovata." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Sembra che non è stato trovato in questa posizione. Magari prova uno dei " -"link seguenti o una ricerca?" - -#: ../404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "Navigazione post" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Categorie più popolari" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Prova a guardare negli archivi mensili. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Archivi" - -#: ../404.php:58 -#, fuzzy -msgid "Tags" -msgstr "Usado en los tags P" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Autore: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Giorno: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Mese: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Anno: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Digressioni" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Gallerie" - -#: ../archive.php:45 -msgid "Images" -msgstr "Immagini" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Vídeo" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Citazioni" - -#: ../archive.php:54 -msgid "Links" -msgstr "Link" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Stati" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Audio" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Chat" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Navigazione commento" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Commenti più vecchi" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Commenti più recenti →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "I commenti sono stati chiusi." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Modifica" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Approfondisci" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Pagine:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Nessun risultato" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"Pronto a pubblicare il tuo primo post? Parti da qui." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Ci dispiace, ma nessun risultato corrisponde ai termini della tua ricerca. " -"Riprova con parole chiave diverse." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Sembra che non riusciamo a trovare quello che stai cercando. Forse la " -"ricerca può aiutare." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Lascia un commento" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 commento" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% commenti" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Menu principale" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Barra laterale" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Colonna laterale sinistra" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Colonna laterale destra" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Busca" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Precedente" - -#: ../image.php:23 -msgid "Next " -msgstr "Successivo " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Opzioni del tema" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Mostra sulla prima pagina" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Opzioni layout sito web" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Valore predefinito usato se nessun colore è selezionato" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Colore icone social" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Piè di pagina" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Altro" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "CSS personalizzato" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "CSS aggiuntivo" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Supporto e Documentazione" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Il modo migliore per contattarci per domande di supporto e " -"segnalazioni è via" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Forum di supporto Colorlib" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Se ti piace questo tema, apprezzerei una delle seguenti:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Vota questo tema" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Mi Piace su Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Seguici su Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Questo post è protetto da password. Per leggerlo inserire la password di " -"seguito:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Password:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Invia" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Tema per %1$s Disegnato da %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Navigazione post" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Navigazione post" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Categorie" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Titolo" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Limite categorie" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Abilita il conteggio dei post" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Titolo" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Limita il numero di post" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Seguici" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Risultato della ricerca per: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Cerca..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Busca" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Cerca..." - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Link nel footer" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Widget Prima Pagina 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Mostra sulla prima pagina" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Widget Prima Pagina 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Widget Prima Pagina 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Widget Piè di Pagina 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Usato per l'area widget nel footer" - -#~ msgid "Footer Widget 2" -#~ msgstr "Widget Piè di Pagina 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Widget Piè di Pagina 3" - -#~ msgid "Theme Options" -#~ msgstr "Opzioni del tema" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Fare clic su OK per ripristinare. Tutte le impostazioni del tema andranno " -#~ "perse!" - -#~ msgid "Default options restored." -#~ msgstr "Le impostazioni predefinite sono state ripristinate." - -#~ msgid "Options saved." -#~ msgstr "Opzioni salvate." - -#~ msgid "No file chosen" -#~ msgstr "Nessun file selezionato." - -#~ msgid "Upload" -#~ msgstr "Carica" - -#~ msgid "Remove" -#~ msgstr "Rimuovi" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "" -#~ "Aggiorna la tua versione di WordPress per il pieno supporto dei media." - -#~ msgid "View File" -#~ msgstr "Visualizza file" - -#~ msgid "No Repeat" -#~ msgstr "Non ripetere" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Ripeti orizzontalmente" - -#~ msgid "Repeat Vertically" -#~ msgstr "Ripeti verticalmente" - -#~ msgid "Repeat All" -#~ msgstr "Ripeti" - -#~ msgid "Top Left" -#~ msgstr "In Alto a Sinistra" - -#~ msgid "Top Center" -#~ msgstr "In Alto al Centro" - -#~ msgid "Top Right" -#~ msgstr "In Alto a Destra" - -#~ msgid "Middle Left" -#~ msgstr "Nel Mezzo a Sinistra" - -#~ msgid "Middle Center" -#~ msgstr "Nel Mezzo al Centro" - -#~ msgid "Middle Right" -#~ msgstr "Nel Mezzo a Destra" - -#~ msgid "Bottom Left" -#~ msgstr "In Basso a Sinistra" - -#~ msgid "Bottom Center" -#~ msgstr "In Basso al Centro" - -#~ msgid "Bottom Right" -#~ msgstr "In Basso a Destra" - -#~ msgid "Scroll Normally" -#~ msgstr "Scorri normalmente" - -#~ msgid "Fixed in Place" -#~ msgstr "Fisso sul posto" - -#~ msgid "Normal" -#~ msgstr "Normale" - -#~ msgid "Italic" -#~ msgstr "Corsivo" - -#~ msgid "Bold" -#~ msgstr "Grassetto" - -#~ msgid "Bold Italic" -#~ msgstr "Grassetto Corsivo" - -#~ msgid "Page %s" -#~ msgstr "Pagina %s" - -#~ msgid "Follow us on " -#~ msgstr "Seguici su" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Documentazione Sparkling" - -#~ msgid " Older posts" -#~ msgstr " Post più vecchi" - -#~ msgid "Newer posts " -#~ msgstr "Post più recenti " - -#~ msgid "Sparkling Categories" -#~ msgstr "Categorie Sparkling" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Widget Sparkling Post più popolari" - -#~ msgid "Popular Posts" -#~ msgstr "Post popolari" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Widget Sparkling Social" - -#~ msgid "One" -#~ msgstr "Uno" - -#~ msgid "Two" -#~ msgstr "Due" - -#~ msgid "Three" -#~ msgstr "Tre" - -#~ msgid "Four" -#~ msgstr "Quattro" - -#~ msgid "Five" -#~ msgstr "Cinque" - -#~ msgid "French Toast" -#~ msgstr "French Toast" - -#~ msgid "Pancake" -#~ msgstr "Pancake" - -#~ msgid "Omelette" -#~ msgstr "Omelette" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Waffle" - -#~ msgid "Main" -#~ msgstr "Principale" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Vuoi visualizzare uno slider di immagini sulla prima pagina?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Seleziona se vuoi abilitare lo slider" - -#~ msgid "Slider Category" -#~ msgstr "Categoria slider" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Seleziona una categoria di post in evidenza per lo slider" - -#~ msgid "Number of slide items" -#~ msgstr "Numero di slide" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Inserisci il numero di slide" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "" -#~ "Scegli tra colonna laterale sinistra e destra da utilizzare come " -#~ "impostazione predefinita" - -#~ msgid "Element color" -#~ msgstr "Colore elemento" - -#~ msgid "Element color on hover" -#~ msgstr "Colore elemento all'hover" - -#~ msgid "Custom Favicon" -#~ msgstr "Favicon personalizzata" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "Carica una immagine PNG/GIF 32x32px che rappresenterà la tua favicon" - -#~ msgid "Action Button" -#~ msgstr "Action Button" - -#~ msgid "Call For Action Text" -#~ msgstr "Testo Call For Action" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Inserisci il testo per la sezione Call For Action" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Titolo pulsante Call For Action" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Inserisci il titolo per il pulsante Call For Action" - -#~ msgid "CFA button link" -#~ msgstr "CFA link pulsante" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Inserisci il link per il pulsante Call For Action" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Colore del testo Call For Action" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Colore di sfondo Call For Action" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Colore del bordo del pulsante Call For Action" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Colore del testo del pulsante Call For Action" - -#~ msgid "Typography" -#~ msgstr "Tipografia" - -#~ msgid "Main Body Text" -#~ msgstr "Testo del corpo principale" - -#~ msgid "Used in P tags" -#~ msgstr "Usato nei tag P" - -#~ msgid "Heading Color" -#~ msgstr "Colore intestazioni" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Colore per tutte le intestazioni (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Colore del link" - -#~ msgid "Link:hover Color" -#~ msgstr "Colore del link:hover" - -#~ msgid "Header" -#~ msgstr "Testata" - -#~ msgid "Top nav background color" -#~ msgstr "Colore di sfondo navigazione principale" - -#~ msgid "Top nav item color" -#~ msgstr "Colore singola voce della navigazione principale" - -#~ msgid "Link color" -#~ msgstr "Colore del link" - -#~ msgid "Top nav item hover color" -#~ msgstr "Colore hover singola voce della navigazione principale" - -#~ msgid "Link:hover color" -#~ msgstr "Colore del link:hover" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Colore di sfondo del menu a tendina" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Sfondo della voce in hover del menu a tendina" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Colore voce del menu a tendina della navigazione principale" - -#~ msgid "Dropdown item color" -#~ msgstr "Colore voce del menu a tendina" - -#, fuzzy -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Color del ítem hover del Top nav" - -#, fuzzy -#~ msgid "Dropdown item hover color" -#~ msgstr "Color del fondo del ítem hover del menú desplegable" - -#, fuzzy -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Color del fondo del ítem hover del menú desplegable" - -#~ msgid "Footer widget area background color" -#~ msgstr "Colore di sfondo del widget a piè di pagina" - -#~ msgid "Footer background color" -#~ msgstr "Colore di sfondo del piè di pagina" - -#~ msgid "Footer text color" -#~ msgstr "Colore del testo nel piè di pagina" - -#~ msgid "Footer link color" -#~ msgstr "Colore dei link del piè di pagina" - -#~ msgid "Footer information" -#~ msgstr "Informazioni piè di pagina" - -#~ msgid "Copyright text in footer" -#~ msgstr "Testo dei copyright nel piè di pagina" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Colore icone social nel piè di pagina" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Colore icone social nel piè di pagina" - -#~ msgid "Social" -#~ msgstr "Social" - -#~ msgid "Footer social icon color" -#~ msgstr "Colore icone social nel piè di pagina" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Aggiungi l'URL completo per i tuoi profili sui social network" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Search..." -#~ msgstr "Cerca..." - -#~ msgid "Default used if no color is selected." -#~ msgstr "Valore predefinito usato se nessun colore è selezionato" diff --git a/languages/ja.mo b/languages/ja.mo deleted file mode 100644 index 3aadcc6..0000000 Binary files a/languages/ja.mo and /dev/null differ diff --git a/languages/ja.po b/languages/ja.po deleted file mode 100644 index 17122b9..0000000 --- a/languages/ja.po +++ /dev/null @@ -1,957 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: heysister721 \n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "ページが見つかりません。" - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"何も見つかりませんでした。以下のリンクを使用してみてください。または検索を" -"行ってください。" - -#: ../404.php:25 -msgid "Recent Posts" -msgstr "人気の投稿、最近の投稿&コメントの表示ボックスの一覧" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "使用されるその他のカテゴリー" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "毎月のアーカイブを見てみてください。 %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "アーカイブ" - -#: ../404.php:58 -msgid "Tags" -msgstr "P(段落)タグで使用" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "投稿者: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "日付別: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "月別: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "年別: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "標準" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "ギャラリー" - -#: ../archive.php:45 -msgid "Images" -msgstr "画像" - -#: ../archive.php:48 -msgid "Videos" -msgstr "動画" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "引用" - -#: ../archive.php:54 -msgid "Links" -msgstr "リンク" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "ステータス" - -#: ../archive.php:60 -msgid "Audios" -msgstr "オーディオ" - -#: ../archive.php:63 -msgid "Chats" -msgstr "チャット" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "レビュー" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← 古いコメント" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "新しいコメント →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "コメントを閉じる" - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "編集する" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "続きを読む" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "ページ別:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "何も見つかりません" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"あなたの最初の投稿を公開する準備はできましたか? ここから始" -"めましょう." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"申し訳ありませんが、何も検索条件に一致しない。他の言葉で、もう一度やり直して" -"ください。" - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"私たちは、あなたが探しているものを見つけることができませんでした。おそらく、" -"検索が役立ちます。" - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "コメントを残す" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 コメント" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% コメント" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "メインメニュー" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "サイドバー" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "左サイドバー" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "右サイドバー" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "検索キーワード..." - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " 前" - -#: ../image.php:23 -msgid "Next " -msgstr "次 " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "テーマオプション" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "ホームページ上に表示します" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "レイアウトオプション" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "選択されていない場合、デフォルトを使用" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "ウィジェットSNSアイコン" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "フッター" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "その他" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "カスタムCSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "オリジナルのCSSパラメータを追加します" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "サポートとドキュメント" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"最良の方法は、サポートページの質問で紹介しているバグレポート私達" -"に連絡することです" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "テーマ開発者 サポートフォーラム" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "" -"あなたはこのテーマが好きなら、私は次のいずれかをいただければと思います:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "このテーマを評価" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Facebookで「いいね」する" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Twitterをフォローする" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      この投稿はパスワードで保護されています。下のパスワードを入力して表示するに" -"は:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "パスワード:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "送信" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Theme by %1$s Powered by %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "投稿ナビゲーション" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "投稿ナビゲーション" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "カテゴリー" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "タイトル" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "表示カテゴリー数上限" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "投稿数を有効にする" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "タイトル" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "表示数上限" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "フォローする" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "検索結果: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "検索キーワード..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "検索キーワード..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "検索キーワード..." - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "メタタグ" - -#~ msgid "Footer Links" -#~ msgstr "フッターリンク" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "コメント “%2$s”" -#~ msgstr[1] "%1$s 注釈 “%2$s”" - -#~ msgid ", " -#~ msgstr ", " - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "本文ウィジェット(左)" - -#~ msgid "Displays on the Home Page" -#~ msgstr "ホームページ上に表示します" - -#~ msgid "Homepage Widget 2" -#~ msgstr "本文ウィジェット(中央)" - -#~ msgid "Homepage Widget 3" -#~ msgstr "本文ウィジェット(左)" - -#~ msgid "Footer Widget 1" -#~ msgstr "フッター部ウィジェット(左)" - -#~ msgid "Used for footer widget area" -#~ msgstr "フッターウィジェットエリアに使用します" - -#~ msgid "Footer Widget 2" -#~ msgstr "フッター部ウィジェット(中央)" - -#~ msgid "Footer Widget 3" -#~ msgstr "フッター部ウィジェット(左)" - -#~ msgid "Theme Options" -#~ msgstr "テーマオプション" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "再起動して[OK]をクリックします。任意のテーマの設定は失われます!" - -#~ msgid "Default options restored." -#~ msgstr "デフォルトのオプションが復元されました。" - -#~ msgid "Options saved." -#~ msgstr "設定を保存" - -#~ msgid "No file chosen" -#~ msgstr "ファイルが選択されていません" - -#~ msgid "Upload" -#~ msgstr "アップロード" - -#~ msgid "Remove" -#~ msgstr "削除する" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "" -#~ "フルメディアサポートのためのワードプレスのバージョンをアップグレードしま" -#~ "す。" - -#~ msgid "View File" -#~ msgstr "ファイルの表示" - -#~ msgid "No Repeat" -#~ msgstr "繰り返ししないでください" - -#~ msgid "Repeat Horizontally" -#~ msgstr "水平繰り返し" - -#~ msgid "Repeat Vertically" -#~ msgstr "縦に繰り返し" - -#~ msgid "Repeat All" -#~ msgstr "すべてを繰り返します" - -#~ msgid "Top Left" -#~ msgstr "上 左寄せ" - -#~ msgid "Top Center" -#~ msgstr "上 中央寄せ" - -#~ msgid "Top Right" -#~ msgstr "上 右寄せ" - -#~ msgid "Middle Left" -#~ msgstr "中央 左寄せ" - -#~ msgid "Middle Center" -#~ msgstr "中央 中央寄せ" - -#~ msgid "Middle Right" -#~ msgstr "中央 右寄せ" - -#~ msgid "Bottom Left" -#~ msgstr "下 左寄せ" - -#~ msgid "Bottom Center" -#~ msgstr "下 中央寄せ" - -#~ msgid "Bottom Right" -#~ msgstr "下 右寄せ" - -#~ msgid "Scroll Normally" -#~ msgstr "通常スクロール" - -#~ msgid "Fixed in Place" -#~ msgstr "所定の位置に固定" - -#~ msgid "Normal" -#~ msgstr "通常" - -#~ msgid "Italic" -#~ msgstr "斜体" - -#~ msgid "Bold" -#~ msgstr "太字" - -#~ msgid "Bold Italic" -#~ msgstr "太字+斜体" - -#~ msgid "Page %s" -#~ msgstr "ページ %s" - -#~ msgid "Follow us on " -#~ msgstr "フォローしてください" - -#~ msgid "Sparkling Documentation" -#~ msgstr "ドキュメント [Sparkling]" - -#~ msgid " Older posts" -#~ msgstr " 古い投稿" - -#~ msgid "Newer posts " -#~ msgstr "新しい投稿 " - -#~ msgid "Sparkling Categories" -#~ msgstr "[Sparkling] カテゴリー" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling 人気記事 ウィジェット" - -#~ msgid "Popular Posts" -#~ msgstr "人気記事" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling SNS ウィジェット" - -#~ msgid "One" -#~ msgstr "1" - -#~ msgid "Two" -#~ msgstr "2" - -#~ msgid "Three" -#~ msgstr "3" - -#~ msgid "Four" -#~ msgstr "4" - -#~ msgid "Five" -#~ msgstr "5" - -#~ msgid "French Toast" -#~ msgstr "フレンチトースト" - -#~ msgid "Pancake" -#~ msgstr "パンケーキ" - -#~ msgid "Omelette" -#~ msgstr "チョコレート" - -#~ msgid "Crepe" -#~ msgstr "クレープ" - -#~ msgid "Waffle" -#~ msgstr "ワッフル" - -#~ msgid "Main" -#~ msgstr "メイン" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "あなたは、ホームページ上の画像スライダーを表示しますか?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "あなたはスライダーを有効にするかどうかを確認してください" - -#~ msgid "Slider Category" -#~ msgstr "スライダーに表示するカテゴリー" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "スライダーで表示する特集記事のカテゴリを選択" - -#~ msgid "Number of slide items" -#~ msgstr "スライドショーのアイテム数" - -#~ msgid "Enter the number of slide items" -#~ msgstr "スライド項目の数を入力してください" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "左と右サイドバーのオプションから選択デフォルトとして使用する" - -#~ msgid "Element color" -#~ msgstr "要素色(通常)" - -#~ msgid "Element color on hover" -#~ msgstr "要素色(マウスオーバー時)" - -#~ msgid "Custom Favicon" -#~ msgstr "カスタムファビコン" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "あなたのウェブサイトのファビコンを表します32 X 32 (px) PNG / GIF画像を" -#~ "アップロード" - -#~ msgid "Action Button" -#~ msgstr "アクションボタン" - -#~ msgid "Call For Action Text" -#~ msgstr "アクションボタンの呼び出しテキスト" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "アクションボタンの説明テキストを入力します" - -#~ msgid "Call For Action Button Title" -#~ msgstr "アクションボタンのタイトル" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "アクションボタンのタイトルを入力します" - -#~ msgid "CFA button link" -#~ msgstr "アクションボタンのリンク先URL" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "アクションボタンにのリンクURLを入力してください" - -#~ msgid "Call For Action Text Color" -#~ msgstr "アクションボタンの文字色" - -#~ msgid "Call For Action Background Color" -#~ msgstr "アクションボタンの背景色" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "アクションボタンの境界線色" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "アクションボタン実行時のテキスト色" - -#~ msgid "Typography" -#~ msgstr "文字装飾" - -#~ msgid "Main Body Text" -#~ msgstr "メインページの本文" - -#~ msgid "Used in P tags" -#~ msgstr "P(段落)タグで使用" - -#~ msgid "Heading Color" -#~ msgstr "見出し色" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "すべてのタイトルの色 (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "リンク色(通常)" - -#~ msgid "Link:hover Color" -#~ msgstr "リンク色(マウスオーバー時)" - -#~ msgid "Header" -#~ msgstr "ヘッダー" - -#~ msgid "Top nav background color" -#~ msgstr "ヘッダーナビゲーションの背景色" - -#~ msgid "Top nav item color" -#~ msgstr "ヘッダーナビゲーションのリンク色(通常)" - -#~ msgid "Link color" -#~ msgstr "リンク色(通常)" - -#~ msgid "Top nav item hover color" -#~ msgstr "ヘッダーナビゲーションのリンク色(選択・マウスオーバー時)" - -#~ msgid "Link:hover color" -#~ msgstr "リンク色(マウスオーバー時)" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "ヘッダーナビゲーション:ドロップダウンメニューの背景色(通常)" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "ドロップダウンメニューの背景色(マウスオーバー時)" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "" -#~ "ヘッダーナビゲーション:ドロップダウンメニューの選択・マウスオーバー色" - -#~ msgid "Dropdown item color" -#~ msgstr "ドロップダウン選択色" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "ヘッダーナビゲーション:ドロップダウンメニューの選択色" - -#~ msgid "Dropdown item hover color" -#~ msgstr "ドロップダウン項目の背景色:ホバー" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "トップドロップダウンメニューの項目色" - -#~ msgid "Footer widget area background color" -#~ msgstr "フッターウィジェット背景色" - -#~ msgid "Footer background color" -#~ msgstr "フッター背景色" - -#~ msgid "Footer text color" -#~ msgstr "フッター文字色" - -#~ msgid "Footer link color" -#~ msgstr "フッターリンク色" - -#~ msgid "Footer information" -#~ msgstr "フッター情報" - -#~ msgid "Copyright text in footer" -#~ msgstr "フッターに著作権表記のテキストを追加する" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "フッターSNSアイコン色" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "フッターSNSアイコン色" - -#~ msgid "Social" -#~ msgstr "SNS設定" - -#~ msgid "Footer social icon color" -#~ msgstr "フッターSNSアイコン色" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "あなたのSNSの完全なURLを追加します。" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgid "Search..." -#~ msgstr "検索キーワード..." diff --git a/languages/kdetheme.pot b/languages/kdetheme.pot deleted file mode 100644 index 5d73c6e..0000000 --- a/languages/kdetheme.pot +++ /dev/null @@ -1,493 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:46+0200\n" -"PO-Revision-Date: 2015-04-04 15:03+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "" - -#: ../404.php:19 -msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?" -msgstr "" - -#: ../404.php:25 -msgid "Recent Posts" -msgstr "" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "" - -#: ../404.php:58 -msgid "Tags" -msgstr "" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "" - -#: ../archive.php:39 -msgid "Asides" -msgstr "" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "" - -#: ../archive.php:45 -msgid "Images" -msgstr "" - -#: ../archive.php:48 -msgid "Videos" -msgstr "" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "" - -#: ../archive.php:54 -msgid "Links" -msgstr "" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "" - -#: ../archive.php:60 -msgid "Audios" -msgstr "" - -#: ../archive.php:63 -msgid "Chats" -msgstr "" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "" - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "" - -#: ../content-none.php:19 -#, php-format -msgid "Ready to publish your first post? Get started here." -msgstr "" - -#: ../content-none.php:23 -msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords." -msgstr "" - -#: ../content-none.php:28 -msgid "It seems we can’t find what you’re looking for. Perhaps searching can help." -msgstr "" - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "" - -#: ../content.php:73 -msgid "% Comments" -msgstr "" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgctxt "submit button" -msgid "Search" -msgstr "" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr "" - -#: ../image.php:23 -msgid "Next " -msgstr "" - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -msgid "Content Options" -msgstr "" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -msgid "Display Comments on Static Pages?" -msgstr "" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "

      This post is password protected. To view it please enter your password below:

      " -msgstr "" - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "Select layout for this specific Page only ( Note: This setting only reflects if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "" - -#: ../searchform.php:11 -msgid "Search for:" -msgstr "" - -#: ../searchform.php:12 -msgctxt "placeholder" -msgid "Search…" -msgstr "" - -#: ../searchform.php:12 -msgctxt "label" -msgid "Search for:" -msgstr "" - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "" diff --git a/languages/lt_LT.mo b/languages/lt_LT.mo deleted file mode 100644 index 677ba37..0000000 Binary files a/languages/lt_LT.mo and /dev/null differ diff --git a/languages/lt_LT.po b/languages/lt_LT.po deleted file mode 100644 index 6ace36c..0000000 --- a/languages/lt_LT.po +++ /dev/null @@ -1,984 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \n" -"Language: lt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 &&(n" -"%100<10||n%100 >= 20)? 1 : 2);\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Loco-Target-Locale: lt_LT\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Oi! Puslapis nerastas." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Panašu, kad čia nieko nėra. Galbūt jums padės paieškos galimybė arba viena " -"iš žemiau esančių nuorodų?" - -#: ../404.php:25 -msgid "Recent Posts" -msgstr "Naujausi įrašai" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Įrašų kategorijos" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Pabandykite paieškoti mėnesių archyvuose. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Archyvai" - -#: ../404.php:58 -msgid "Tags" -msgstr "Žymos" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Autorius: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Diena: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Mėnuo: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Metai: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Be pavadinimo" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Galerijos" - -#: ../archive.php:45 -msgid "Images" -msgstr "Paveikslėliai" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Video" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Citatos" - -#: ../archive.php:54 -msgid "Links" -msgstr "Nuorodos" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Būsenos" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Audio" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Pokalbiai" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Komentarų navigacija" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Senesni komentarai" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Naujesni komentarai →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Komentavimo galimybė išjungta." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Redaguoti" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Skaityti toliau" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Puslapiai:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Nerasta" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"Pasirengę paskelbti pirmąjį įrašą? Pradėkite nuo čia." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Deja, nieko panašaus rasti nepavyko. Pabandykite įvesti kitokį paieškos " -"raktažodį." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Panašu, kad nepavyko rasti jūsų ieškomo puslapio. Galbūt jums padės paieškos " -"galimybė." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Komentarų: 0" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "Komentarų: 1" - -#: ../content.php:73 -msgid "% Comments" -msgstr "Komentarų: %" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Pagrindinis meniu" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Valdiklių sritis" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Valdiklių sritis kairėje" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Valdiklių sritis dešinėje" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgctxt "submit button" -msgid "Search" -msgstr "Paieška" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Ankstesnis" - -#: ../image.php:23 -msgid "Next " -msgstr "Kitas " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Išsaugoti nustatymus" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Rodomas pagrindiniame puslapyje" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Svetainės išdėstymas" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Numatytasis nustatymas jei nėra pasirinkta spalva" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Socialinių ikonų spalva" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Poraštė" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Kita" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Pasirinktinis CSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "Papildomas CSS" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Pagalba ir dokumentacija" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Geriausias būdas susisiekti su mumis pagalbos klausimais ir " -"pranešti apie klaidas yra čia" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Colorlib pagalbos forumai" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Jei jums patinka ši tema, pasirinkite vieną iš būdų ją įvertinti:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Įvertinkite temą" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Patinka Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Sekite Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Įrašas apsaugotas slaptažodžiu. Įveskite jį, jei norite peržiūrėti:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Slaptažodis:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Pateikti" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "%1$s tema sukurta %2$s sistemai" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Įrašų navigacija" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Įrašo navigacija" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Kategorijos" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Pavadinimas" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Rodomų kategorijų skaičius" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Rodyti įrašų skaičių" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Pavadinimas" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Rodomų įrašų skaičius" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Sekite mus" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Paieškos rezultatai: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Ieškoti:" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Paieška …" - -#: ../searchform.php:12 -msgctxt "label" -msgid "Search for:" -msgstr "Ieškoti:" - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Metainformacija" - -#~ msgid "Footer Links" -#~ msgstr "Poraštės nuorodos" - -#, fuzzy -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "%1$s komentaras" -#~ msgstr[1] "%1$s komentarai" -#~ msgstr[2] "%1$s komentarų" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr "%1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Pagrindinio puslapio valdiklis 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Rodomas pagrindiniame puslapyje" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Pagrindinio puslapio valdiklis 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Pagrindinio puslapio valdiklis 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Poraštės valdiklis 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Naudojamas poraštės valdiklių srityje" - -#~ msgid "Footer Widget 2" -#~ msgstr "Poraštės valdiklis 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Poraštės valdiklis 3" - -#~ msgid "Theme Options" -#~ msgstr "Temos nustatymai" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "Ar tikrai norite atkurti numatytuosius parametrus?" - -#~ msgid "Default options restored." -#~ msgstr "Numatytieji nustatymai atkurti." - -#~ msgid "Options saved." -#~ msgstr "Nustatymai išsaugoti." - -#~ msgid "No file chosen" -#~ msgstr "Pasirinkite failą" - -#~ msgid "Upload" -#~ msgstr "Nusiųsti" - -#~ msgid "Remove" -#~ msgstr "Pašalinti" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "" -#~ "Jei norite turėti pilną media palaikymą, atnaujinkite savo WordPress " -#~ "versija." - -#~ msgid "View File" -#~ msgstr "Peržiūrėti failą" - -#~ msgid "No Repeat" -#~ msgstr "Be kopijų" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Padengti horizontaliai" - -#~ msgid "Repeat Vertically" -#~ msgstr "Padengti vertikaliai" - -#~ msgid "Repeat All" -#~ msgstr "Padengti kopijuojant" - -#~ msgid "Top Left" -#~ msgstr "Viršuje kairėje" - -#~ msgid "Top Center" -#~ msgstr "Viršuje centre" - -#~ msgid "Top Right" -#~ msgstr "Viršuje dešinėje" - -#~ msgid "Middle Left" -#~ msgstr "Viduryje kairėje" - -#~ msgid "Middle Center" -#~ msgstr "Viduryje centre" - -#~ msgid "Middle Right" -#~ msgstr "Viduryje dešinėje" - -#~ msgid "Bottom Left" -#~ msgstr "Apačioje kairėje" - -#~ msgid "Bottom Center" -#~ msgstr "Apačioje centre" - -#~ msgid "Bottom Right" -#~ msgstr "Apačioje dešinėje" - -#~ msgid "Scroll Normally" -#~ msgstr "Įprastinė slinktis" - -#~ msgid "Fixed in Place" -#~ msgstr "Pritvirtinta vietoje" - -#~ msgid "Normal" -#~ msgstr "Įprastasis" - -#~ msgid "Italic" -#~ msgstr "Kursyvas" - -#~ msgid "Bold" -#~ msgstr "Paryškintasis" - -#~ msgid "Bold Italic" -#~ msgstr "Paryškintasis kursyvas" - -#~ msgid "Page %s" -#~ msgstr "Puslapis %s" - -#~ msgid "Follow us on " -#~ msgstr "Sekite mus" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Sparkling dokumentacija" - -#~ msgid " Older posts" -#~ msgstr " Senesni įrašai" - -#~ msgid "Newer posts " -#~ msgstr "Naujesni įrašai " - -#~ msgid "Sparkling Categories" -#~ msgstr "Sparkling kategorijos" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling populiariausi įrašai" - -#~ msgid "Popular Posts" -#~ msgstr "Populiariausi įrašai" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling socialinės nuorodos" - -#~ msgid "One" -#~ msgstr "Vienas" - -#~ msgid "Two" -#~ msgstr "Du" - -#~ msgid "Three" -#~ msgstr "Trys" - -#~ msgid "Four" -#~ msgstr "Keturi" - -#~ msgid "Five" -#~ msgstr "Penki" - -#~ msgid "French Toast" -#~ msgstr "Skrudinta duona" - -#~ msgid "Pancake" -#~ msgstr "Blynas" - -#~ msgid "Omelette" -#~ msgstr "Omletas" - -#~ msgid "Crepe" -#~ msgstr "Krepas" - -#~ msgid "Waffle" -#~ msgstr "Vaflis" - -#~ msgid "Main" -#~ msgstr "Pagrindiniai" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Ar norite pagrindiniame puslapyje rodyti skaidrių peržiūrą?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Pažymėkite jei norite įjungti skaidrių peržiūrą" - -#~ msgid "Slider Category" -#~ msgstr "Skaidrių kategorija" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "" -#~ "Kategorija su įrašais, kuriems yra priskirti specialieji paveikslėliai" - -#~ msgid "Number of slide items" -#~ msgstr "Rodomų skaidrių skaičius" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Įveskite rodomų skaidrių skaičių" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "" -#~ "Pasirinkite kairiąją arba dešiniąją valdiklių sritį numatytajam naudojimui" - -#~ msgid "Element color" -#~ msgstr "Elemento spalva" - -#~ msgid "Element color on hover" -#~ msgstr "Elemento spalva užvedus pelę" - -#~ msgid "Custom Favicon" -#~ msgstr "Svetainės ikona" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "Nusiųskite 32px x 32px PNG/GIF svetainės ikoną" - -#~ msgid "Action Button" -#~ msgstr "Veiksmo iškvietimo mygtukas" - -#~ msgid "Call For Action Text" -#~ msgstr "Veiksmo iškvietimo tekstas" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Įveskite veiksmo iškvietimo tekstą" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Veiksmo iškvietimo mygtuko pavadinimas" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Įveskite veiksmo iškvietimo mygtuko pavadinimą" - -#~ msgid "CFA button link" -#~ msgstr "Veiksmo iškvietimo mygtuko nuoroda" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Įveskite veiksmo iškvietimo mygtuko nuorodą" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Veiksmo iškvietimo teksto spalva" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Veiksmo iškvietimo fono spalva" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Veiksmo iškvietimo mygtuko rėmelio spalva" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Veiksmo iškvietimo mygtuko teksto spalva" - -#~ msgid "Typography" -#~ msgstr "Tipografija " - -#~ msgid "Main Body Text" -#~ msgstr "Pagrindo (angl. body) tekstas" - -#~ msgid "Used in P tags" -#~ msgstr "Naudojama P žymoms" - -#~ msgid "Heading Color" -#~ msgstr "Antraštės spalva" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Spalva visoms antraštėms (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Nuorodų spalva" - -#~ msgid "Link:hover Color" -#~ msgstr "Nuorodų spalva užvedus pelę" - -#~ msgid "Header" -#~ msgstr "Antraštė" - -#~ msgid "Top nav background color" -#~ msgstr "Viršutinio menių fono spalva" - -#~ msgid "Top nav item color" -#~ msgstr "Viršutinio menių punkto spalva" - -#~ msgid "Link color" -#~ msgstr "Nuorodų spalva" - -#~ msgid "Top nav item hover color" -#~ msgstr "Viršutinio menių punkto spalva užvedus pelę" - -#~ msgid "Link:hover color" -#~ msgstr "Nuorodų spalva užvedus pelę" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Viršutinio išskleidžiamo menių fono spalva" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Išskleidžiamo menių punkto spalva užvedus pelę" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Viršutinio išskleidžiamo menių punkto spalva" - -#~ msgid "Dropdown item color" -#~ msgstr "Išskleidžiamo menių spalva" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Viršutinio išskleidžiamo menių punkto spalva užvedus pelę" - -#~ msgid "Dropdown item hover color" -#~ msgstr "Išskleidžiamo menių punkto fono spalva užvedus pelę" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Viršutinio išskleidžiamo menių punkto fono spalva užvedus pelę" - -#~ msgid "Footer widget area background color" -#~ msgstr "Poraštės valdiklių srities fono spalva" - -#~ msgid "Footer background color" -#~ msgstr "Poraštės fono spalva" - -#~ msgid "Footer text color" -#~ msgstr "Poraštės teksto spalva" - -#~ msgid "Footer link color" -#~ msgstr "Poraštės nuorodų spalva" - -#~ msgid "Footer information" -#~ msgstr "Poraštės informacija" - -#~ msgid "Copyright text in footer" -#~ msgstr "Autorinių teisių tekstas poraštėje" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Poraštės socialinių ikonų spalva" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Poraštės socialinių ikonų spalva" - -#~ msgid "Social" -#~ msgstr "Socialiniai" - -#~ msgid "Footer social icon color" -#~ msgstr "Poraštės socialinių ikonų spalva" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Pridėkite pilną URL į savo socialinį profilį" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS srautas" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgid "GitHub" -#~ msgstr "GitHub" - -#~ msgctxt "monthly archives date format" -#~ msgid "F Y" -#~ msgstr "Y F" - -#~ msgctxt "yearly archives date format" -#~ msgid "Y" -#~ msgstr "Y" - -#~ msgid "Save Options" -#~ msgstr "Išsaugoti nustatymus" - -#~ msgid "Restore Defaults" -#~ msgstr "Atkurti numatytuosius" - -#~ msgctxt "Previous post link" -#~ msgid " %title" -#~ msgstr " %title" - -#~ msgctxt "Next post link" -#~ msgid "%title " -#~ msgstr "%title " - -#, fuzzy -#~ msgctxt "placeholder" -#~ msgid "Search..." -#~ msgstr "Paieška..." diff --git a/languages/nl_NL.mo b/languages/nl_NL.mo deleted file mode 100644 index 04152aa..0000000 Binary files a/languages/nl_NL.mo and /dev/null differ diff --git a/languages/nl_NL.po b/languages/nl_NL.po deleted file mode 100644 index 30ca4d5..0000000 --- a/languages/nl_NL.po +++ /dev/null @@ -1,953 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \n" -"Language: en_US\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Oeps! Deze pagina kon niet gevonden worden." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Het lijkt er dat er niks is gevonden. Probeer één van onderstaande links of " -"de zoekfunctie." - -#: ../404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "Berichten navigatie" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Meest gebruikte categorieên" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Probeer eens te kijken in de maandelijkse archieven. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Archieven" - -#: ../404.php:58 -#, fuzzy -msgid "Tags" -msgstr "Gebruik P tags" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Auteur: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Dag: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Maand: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Jaar: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Asides" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Gallerijen" - -#: ../archive.php:45 -msgid "Images" -msgstr "Afbeeldingen" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Videos" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Quotes" - -#: ../archive.php:54 -msgid "Links" -msgstr "Links" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Status" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Audio" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Chats" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Reactie navigatie" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Oudere Reacties" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Nieuwere Reacties →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Reacties zijn gesloten." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Wijzigen" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Lees meer" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Pagina’s" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Niks gevonden" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"Klaar om je eerste bericht te plaatsen? Begin hier." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Sorry, we hebben niks kunnen vinden met deze zoekterm. Probeer het nog eens." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Het lijkt er op dat we niet kunnen vinden waar je naar zocht. Probeer de " -"zoekfunctie eens." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Reageer" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 Reactie" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% Reacties" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Hoofdmenu" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Sidebar" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Sidebar Links" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Sidebar Rechts" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Keresés" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Vorige" - -#: ../image.php:23 -msgid "Next " -msgstr "Volgende " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Thema opties" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Weergeven op de Voorpagina" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Website Layout Opties" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Standaard gebruikt indien geen kleur gekozen" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Social icoon kleur" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Footer" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Overige" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Aangepaste CSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "Extra CSS" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Support en Documentatie" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"De beste manier om ons te contacteren voor support vragen en bug " -"meldingen is via" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Colorlib support forum" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Als je dit thema leuk vind dan waardeer het volgende:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Waardeer dit Thema" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Like ons op Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Volg ons op Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Dit bericht is beveiligd met een wachtwoord. Om hem te bekijken gelieve " -"je wachtwoord in te voeren:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Wachtwoord:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Toevoegen" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Thema van %1$s, draait op %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Berichten navigatie" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Bericht navigatie" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Categoriën" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Titel" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Limiteer Categoriën" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Schakel Berichten teller in" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Titel" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Limiteer Berichten Aantal" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Volg Ons" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Zoek resultaten voor: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Keresés" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Keresés" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Keresés" - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Footer Links" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Een gedachte over “%2$s”" -#~ msgstr[1] "%1$s gedachten over “%2$s”" - -#~ msgid ", " -#~ msgstr ", " - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Voorpagina Widget 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Weergeven op de Voorpagina" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Voorpagina Widget 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Voorpagina Widget 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Footer Widget 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Gebruikt voor footer widget area" - -#~ msgid "Footer Widget 2" -#~ msgstr "Footer Widget 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Footer Widget 3" - -#~ msgid "Theme Options" -#~ msgstr "Thema opties" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Klik op OK om te resetten. Alle thema instellingen zullen verloren gaan!" - -#~ msgid "Default options restored." -#~ msgstr "Standaard instellingen hersteld." - -#~ msgid "Options saved." -#~ msgstr "Instellingen opgeslagen." - -#~ msgid "No file chosen" -#~ msgstr "Geen bestand geselecteerd" - -#~ msgid "Upload" -#~ msgstr "Uploaden" - -#~ msgid "Remove" -#~ msgstr "Verwijderen" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Upgrade je WordPress versie voor volledige media ondersteuning." - -#~ msgid "View File" -#~ msgstr "Bekijk bestand" - -#~ msgid "No Repeat" -#~ msgstr "Niet Herhalen" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Herhaal Horizontaal" - -#~ msgid "Repeat Vertically" -#~ msgstr "Herhaal Verticaal" - -#~ msgid "Repeat All" -#~ msgstr "Herhaal Alles" - -#~ msgid "Top Left" -#~ msgstr "Boven Links" - -#~ msgid "Top Center" -#~ msgstr "Boven Midden" - -#~ msgid "Top Right" -#~ msgstr "Boven Rechts" - -#~ msgid "Middle Left" -#~ msgstr "Midden Links" - -#~ msgid "Middle Center" -#~ msgstr "Midden Midden" - -#~ msgid "Middle Right" -#~ msgstr "Midden Rechts" - -#~ msgid "Bottom Left" -#~ msgstr "Onder Links" - -#~ msgid "Bottom Center" -#~ msgstr "Onder Midden" - -#~ msgid "Bottom Right" -#~ msgstr "Onder Rechts" - -#~ msgid "Scroll Normally" -#~ msgstr "Scroll normaal" - -#~ msgid "Fixed in Place" -#~ msgstr "Vaste plaats" - -#~ msgid "Normal" -#~ msgstr "Normaal" - -#~ msgid "Italic" -#~ msgstr "Schuin" - -#~ msgid "Bold" -#~ msgstr "Dik" - -#~ msgid "Bold Italic" -#~ msgstr "Dik Schuin" - -#~ msgid "Page %s" -#~ msgstr "Pagina %s" - -#~ msgid "Follow us on " -#~ msgstr "Volg ons op" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Sparkling Documentatie" - -#~ msgid " Older posts" -#~ msgstr " Oudere berichten" - -#~ msgid "Newer posts " -#~ msgstr "Nieuwere berichten" - -#~ msgid "Sparkling Categories" -#~ msgstr "Sparkling Categoriën" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling Populaire Berichten Widget" - -#~ msgid "Popular Posts" -#~ msgstr "Populaire Berichten" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling Social Widget" - -#~ msgid "One" -#~ msgstr "Eén" - -#~ msgid "Two" -#~ msgstr "Twee" - -#~ msgid "Three" -#~ msgstr "Drie" - -#~ msgid "Four" -#~ msgstr "Vier" - -#~ msgid "Five" -#~ msgstr "Vijf" - -#~ msgid "French Toast" -#~ msgstr "Franse Toast" - -#~ msgid "Pancake" -#~ msgstr "Pannenkoeken" - -#~ msgid "Omelette" -#~ msgstr "Omelet" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Wafel" - -#~ msgid "Main" -#~ msgstr "Algemeen" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Wil je de afbeeldings slider op de Voorpagina weergeven?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Vink aan om te activeren" - -#~ msgid "Slider Category" -#~ msgstr "Slider Categorie" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Selecteer een categorie voor de uitgelichte berichten" - -#~ msgid "Number of slide items" -#~ msgstr "Aantal uitgelichte berichten" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Voor het aantal uitgelichte berichten in" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "" -#~ "Maak een keuze tussen een Linker of Rechter sidebar als standaard keuze" - -#~ msgid "Element color" -#~ msgstr "Element kleur" - -#~ msgid "Element color on hover" -#~ msgstr "Element kleur bij hover" - -#~ msgid "Custom Favicon" -#~ msgstr "Aangepast Favicon" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "Upload een PNG/GIF afbeelding van 32pxx32px als website icoon." - -#~ msgid "Action Button" -#~ msgstr "Actie Button" - -#~ msgid "Call For Action Text" -#~ msgstr "Tekst voor het actie veld" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Voer de tekst in die je wilt weergeven" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Actie knop Titel" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Voer de Titel in voor de actie knop" - -#~ msgid "CFA button link" -#~ msgstr "Link voor de actie knop" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Voer de link in voor de actie knop" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Actie veld tekst kleur" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Actie knop achtergrond kleur" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Actie knop rand kleur" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Actie knop kleur" - -#~ msgid "Typography" -#~ msgstr "Opmaak" - -#~ msgid "Main Body Text" -#~ msgstr "Hoofd tekst" - -#~ msgid "Used in P tags" -#~ msgstr "Gebruik P tags" - -#~ msgid "Heading Color" -#~ msgstr "Titel kleur" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Kleur voor alle titels (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Link kleur" - -#~ msgid "Link:hover Color" -#~ msgstr "Link:hover kleur" - -#~ msgid "Header" -#~ msgstr "Header" - -#~ msgid "Top nav background color" -#~ msgstr "Top navigatie achtergrond kleur" - -#~ msgid "Top nav item color" -#~ msgstr "Top navigatie tekst kleur" - -#~ msgid "Link color" -#~ msgstr "Link kleur" - -#~ msgid "Top nav item hover color" -#~ msgstr "Top naviatie tekst hover kleur" - -#~ msgid "Link:hover color" -#~ msgstr "Link:hover kleur" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Top navigatie dropdown achtergrond kleur" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Top navigatie dropdown tekst hover kleur" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Top navigatie dropdown tekst kleur" - -#~ msgid "Dropdown item color" -#~ msgstr "Dropdown tekst kleur" - -#, fuzzy -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Top naviatie tekst hover kleur" - -#, fuzzy -#~ msgid "Dropdown item hover color" -#~ msgstr "Couleur Survol Fond Menu Déroulant Haut" - -#, fuzzy -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Couleur Survol Fond Menu Déroulant Haut" - -#~ msgid "Footer widget area background color" -#~ msgstr "Footer widget achtergrond kleur" - -#~ msgid "Footer background color" -#~ msgstr "Footer achtergrond kleur" - -#~ msgid "Footer text color" -#~ msgstr "Footer tekst kleur" - -#~ msgid "Footer link color" -#~ msgstr "Footer link kleur" - -#~ msgid "Footer information" -#~ msgstr "Footer informatie" - -#~ msgid "Copyright text in footer" -#~ msgstr "Copyright tekst in de footer" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Footer social icoon kleur" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Footer social icoon kleur" - -#~ msgid "Social" -#~ msgstr "Social" - -#~ msgid "Footer social icon color" -#~ msgstr "Footer social icoon kleur" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Voeg de volledige URL van je sociale netwerken toe" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#, fuzzy -#~ msgid "GitHub" -#~ msgstr "Github" - -#~ msgid "Search..." -#~ msgstr "Zoeken..." diff --git a/languages/pl_PL.mo b/languages/pl_PL.mo deleted file mode 100644 index 0896001..0000000 Binary files a/languages/pl_PL.mo and /dev/null differ diff --git a/languages/pl_PL.po b/languages/pl_PL.po deleted file mode 100644 index f78bec9..0000000 --- a/languages/pl_PL.po +++ /dev/null @@ -1,959 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \n" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Loco-Source-Locale: en_GB\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Loco-Parser: loco_parse_po\n" -"X-Loco-Target-Locale: pl_PL\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Ups! Strona nie może być znaleziona." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Nic nie znaleziono w tej lokalizacji. Spróbuj jednego z poniższych linków " -"albo użyj wyszukiwarki." - -#: ../404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "Nawigacja postów" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Najczęściej używane kategorie." - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Spróbuj wyszukać w miesięcznych archiwach. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Archiwa" - -#: ../404.php:58 -#, fuzzy -msgid "Tags" -msgstr "Używany w tagach P" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Autor: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Dzień: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Miesiąc: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Rok: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Obok" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Galerie" - -#: ../archive.php:45 -msgid "Images" -msgstr "Obrazki" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Wideo" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Cytaty" - -#: ../archive.php:54 -msgid "Links" -msgstr "Linki" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Statusy" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Dzwięki" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Czaty" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Nawigacja komentarzy" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Starsze komentarze" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Nowsze komentarze →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Komentarze są zamknięte." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Edytuj" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Czytaj więcej" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Strony:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Nic nie znaleziono" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"Gotowy aby opublikować swój pierwszy post? Zacznij tutaj." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Przepraszamy, nic nie znaleziono co pasuje do szukanego tekstu. Proszę " -"spróbować wyszukać coś innego." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Wygląda na to że nie możemy znaleźć tego czego szukasz. Może wyszukiwarka " -"pomoże?" - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Zostaw komentarz" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 komentarz" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% komentarzy" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Główne menu" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Pasek boczny" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Lewy pasek boczny" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Prawy pasek boczny" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Szukaj" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Poprzednie" - -#: ../image.php:23 -msgid "Next " -msgstr "Następne " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Opcje tematu" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Wyświetl na stronie głównej" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Opcje układu strony" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Domyślny kolor jeśli nie wybrano" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Kolor ikon społecznościowych" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Stopka" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Inne" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Własny CSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "Dodatkowy CSS" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Wsparcie i dokumentacja" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "Najlepsza metoda aby się z nami skontaktować jest przez" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Colorlib forum wsparcia" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Jeśli lubisz ten temat, będę wdzięczny za" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Oceń ten temat" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Polub nas na Facebook-u" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Śledź nas na Twitterze" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Ten post jest chroniony hasłem. Aby go zobaczyć wpisz hasło poniżej:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Hasło:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Wyślij" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Temat stworzony przez %1$s Napędzany przez %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Nawigacja postów" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Nawigacja postu" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Kategorie" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Tytuł" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Limit kategorii" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Włącz licznik postów" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Tytuł" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Limit postów" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Śledź nas" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Wyniki wyszukiwania dla: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Szukaj:" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Szukaj…" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Szukaj:" - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Linki stopki" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Jedna myśl na temat “%2$s”" -#~ msgstr[1] "%1$s myśli na temat “%2$s”" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Widgety strony głównej 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Wyświetl na stronie głównej" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Widgety strony głównej 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Widgety strony głównej 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Widgety stopki 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Używane w widgetach stopki" - -#~ msgid "Footer Widget 2" -#~ msgstr "Widgety stopki 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Widgety stopki 3" - -#~ msgid "Theme Options" -#~ msgstr "Opcje tematu" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "Naciśnij OK aby zresetować. Wszystkie ustawienia zostaną utracone!" - -#~ msgid "Default options restored." -#~ msgstr "Przywrócono domyślne opcje." - -#~ msgid "Options saved." -#~ msgstr "Opcje zapisane." - -#~ msgid "No file chosen" -#~ msgstr "Nie wybrano pliku" - -#~ msgid "Upload" -#~ msgstr "Załaduj" - -#~ msgid "Remove" -#~ msgstr "Usuń" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "" -#~ "Zaktualizuj swoją instalację WordPress-a aby uzyskać pełną obsługę mediów." - -#~ msgid "View File" -#~ msgstr "Pokaż plik" - -#~ msgid "No Repeat" -#~ msgstr "Nie powtarzaj" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Powtarzaj poziomo" - -#~ msgid "Repeat Vertically" -#~ msgstr "Powtarzaj pionowo" - -#~ msgid "Repeat All" -#~ msgstr "Powtarzaj w obu kierunkach" - -#~ msgid "Top Left" -#~ msgstr "Góra Lewo" - -#~ msgid "Top Center" -#~ msgstr "Góra Środek" - -#~ msgid "Top Right" -#~ msgstr "Góra Prawo" - -#~ msgid "Middle Left" -#~ msgstr "Środek Lewo" - -#~ msgid "Middle Center" -#~ msgstr "Środek Środek" - -#~ msgid "Middle Right" -#~ msgstr "Środek Prawo" - -#~ msgid "Bottom Left" -#~ msgstr "Dół Lewo" - -#~ msgid "Bottom Center" -#~ msgstr "Dół Środek" - -#~ msgid "Bottom Right" -#~ msgstr "Dół Prawo" - -#~ msgid "Scroll Normally" -#~ msgstr "Przewijaj normalnie" - -#~ msgid "Fixed in Place" -#~ msgstr "Ustalony na miejscu" - -#~ msgid "Normal" -#~ msgstr "normalna" - -#~ msgid "Italic" -#~ msgstr "Kursywa" - -#~ msgid "Bold" -#~ msgstr "Pogrubiona" - -#~ msgid "Bold Italic" -#~ msgstr "Pogrubiona Kursywa" - -#~ msgid "Page %s" -#~ msgstr "Strona %s" - -#~ msgid "Follow us on " -#~ msgstr "Śledź nas na" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Dokumentacja" - -#~ msgid " Older posts" -#~ msgstr " Starsze posty" - -#~ msgid "Newer posts " -#~ msgstr "Nowsze posty " - -#~ msgid "Sparkling Categories" -#~ msgstr "Sparkling Kategorie" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling Popularne widgety postów" - -#~ msgid "Popular Posts" -#~ msgstr "Popularne posty" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling Widgety społecznościowe" - -#~ msgid "One" -#~ msgstr "Jeden" - -#~ msgid "Two" -#~ msgstr "Dwa" - -#~ msgid "Three" -#~ msgstr "Trzy" - -#~ msgid "Four" -#~ msgstr "Cztery" - -#~ msgid "Five" -#~ msgstr "Pięć" - -#~ msgid "French Toast" -#~ msgstr "Francuzki toast" - -#~ msgid "Pancake" -#~ msgstr "naleśnik" - -#~ msgid "Omelette" -#~ msgstr "Omlet" - -#~ msgid "Crepe" -#~ msgstr "Krepa" - -#~ msgid "Waffle" -#~ msgstr "Wafel" - -#~ msgid "Main" -#~ msgstr "Główne" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Czy chcesz wyświetlać slider obrazków na stronie głównej?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Zaznacz jeśli chcesz włączyć slider" - -#~ msgid "Slider Category" -#~ msgstr "Kategoria slidera" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Wybierz kategorię dla wyróżnionego postu slidera" - -#~ msgid "Number of slide items" -#~ msgstr "Liczba elementów slidera" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Wpisz liczbę elementów slidera" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "" -#~ "Wybierz który pasek boczny ma być używany domyślnie (prawy czy lewy)" - -#~ msgid "Element color" -#~ msgstr "Kolor elementów" - -#~ msgid "Element color on hover" -#~ msgstr "Kolor elementu najechanego myszką" - -#~ msgid "Custom Favicon" -#~ msgstr "Własna favikona" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "Wybierz plik o wymiarach 32 px x 32 px w formacie PNG/GIF który zostanie " -#~ "użyty jako favikona" - -#~ msgid "Action Button" -#~ msgstr "Przycisk akcji" - -#~ msgid "Call For Action Text" -#~ msgstr "Zawołanie dla przycisku akcji" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Wpisz tekst dla zawołania przycisku akcji" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Zawołanie dla tytułu przycisku akcji" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Wpisz tytuł dla zawołania przycisku akcji" - -#~ msgid "CFA button link" -#~ msgstr "CFA link przycisku" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Wpisz link dla przycisku CFA" - -#~ msgid "Call For Action Text Color" -#~ msgstr "CFA kolor tekstu" - -#~ msgid "Call For Action Background Color" -#~ msgstr "CFA kolor tła" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "CFA kolor obramowania" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "CFA kolor tekstu" - -#~ msgid "Typography" -#~ msgstr "Typografia" - -#~ msgid "Main Body Text" -#~ msgstr "Tekst główny" - -#~ msgid "Used in P tags" -#~ msgstr "Używany w tagach P" - -#~ msgid "Heading Color" -#~ msgstr "Kolor nagłówka" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Kolor dla wszystkich nagłówków (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Kolor odnośnika" - -#~ msgid "Link:hover Color" -#~ msgstr "Kolor odnośnika najechanego myszką" - -#~ msgid "Header" -#~ msgstr "Nagłówek" - -#~ msgid "Top nav background color" -#~ msgstr "Kolor tła górnej nawigacji" - -#~ msgid "Top nav item color" -#~ msgstr "Kolor elementu górnej nawigacji" - -#~ msgid "Link color" -#~ msgstr "Kolor odnośnika" - -#~ msgid "Top nav item hover color" -#~ msgstr "Kolor elementu górnej nawigacji po najechaniu myszą" - -#~ msgid "Link:hover color" -#~ msgstr "Kolor odnośnika najechanego myszką" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Kolor tła rozwijanej górnej nawigacji" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Kolor tła elementu rozwijanej górnej nawigacji" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Kolor elementu rozwijanej górnej nawigacji" - -#~ msgid "Dropdown item color" -#~ msgstr "Kolor elementu rozwijanego" - -#, fuzzy -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Kolor elementu górnej nawigacji po najechaniu myszą" - -#, fuzzy -#~ msgid "Dropdown item hover color" -#~ msgstr "Kolor tła podświetlonego elementu rozwijanego menu" - -#, fuzzy -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Kolor tła elementu rozwijanej górnej nawigacji" - -#~ msgid "Footer widget area background color" -#~ msgstr "Kolor tła widgetów stopki" - -#~ msgid "Footer background color" -#~ msgstr "Kolor tła stopki" - -#~ msgid "Footer text color" -#~ msgstr "Kolor tekstu stopki" - -#~ msgid "Footer link color" -#~ msgstr "Kolor odnośnika stopki" - -#~ msgid "Footer information" -#~ msgstr "Informacje w stopce" - -#~ msgid "Copyright text in footer" -#~ msgstr "Tekst informacji o prawach autorskich" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Kolor ikon społecznościowych w stopce" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Kolor ikon społecznościowych w stopce" - -#~ msgid "Social" -#~ msgstr "Społecznościowe" - -#~ msgid "Footer social icon color" -#~ msgstr "Kolor ikon społecznościowych w stopce" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Dodaj pełny adres URL do twoich profili społecznościowych" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "Kanał RSS" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#, fuzzy -#~ msgid "GitHub" -#~ msgstr "Github" - -#~ msgid "Search..." -#~ msgstr "Szukaj..." diff --git a/languages/pt_BR.mo b/languages/pt_BR.mo deleted file mode 100644 index eaec855..0000000 Binary files a/languages/pt_BR.mo and /dev/null differ diff --git a/languages/pt_BR.po b/languages/pt_BR.po deleted file mode 100644 index 7b42828..0000000 --- a/languages/pt_BR.po +++ /dev/null @@ -1,975 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \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 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Oops! Página não encontrada." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Nada foi encontrado. Tente utilizar os links abaixo ou fazer uma busca." - -#: ../404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "Exibir lista de Postagens Populares, Postagens Recentes & Comentários" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Categorias Mais Usadas" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Tente olhar nos arquivos mensais. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Arquivos" - -#: ../404.php:58 -#, fuzzy -msgid "Tags" -msgstr "Usado em tags P (Parágrafo)" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Autor: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Dia: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Mês: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Ano: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Apartes" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Galerias" - -#: ../archive.php:45 -msgid "Images" -msgstr "Imagens" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Vídeos" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Quotes" - -#: ../archive.php:54 -msgid "Links" -msgstr "Links" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Status" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Áudios" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Chats" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Navegação de comentário" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Comentários Antigos" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Novos Comentários →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Comentários fechados." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Editar" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Leia Mais" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Páginas:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Nada encontrado" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post?
      Get started here." -msgstr "" -"Pronto para publicar seu primeiro post? Comece aqui." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Desculpe, mas nada corresponde com seus termos de busca. Por favor tente " -"novamente com outras palavras." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Não conseguimos encontrar o que você está procurando. Talvez uma busca possa " -"ajudar." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Deixe um comentário" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 Comentário" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% Comentários" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Menu principal" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Sidebar" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Sidebar Esquerda" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Sidebar Direita" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Pesquisar" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Anterior" - -#: ../image.php:23 -msgid "Next " -msgstr "Próximo " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Opções do Tema" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "Mostrar trechos do post" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Mostrar na Página Inicial" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Opções de Layout" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Padrão usado se nenhuma cor for selecionada" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Cor do ícone social" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Rodapé" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Outro" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "CSS Personalizado" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "CSS Adicional" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Suporte e Documentação" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"A melhor maneira de nos contactar com questões de suporte e " -"relatórios de bugs é através" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Fórum de suporte do Colorlib" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Se você gosta deste tema, agradeço qualquer uma das seguintes opções:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Avalie este Tema" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Curta no Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Siga no Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Este post é protegido por senha. Para visualizar informe sua senha abaixo:" -"

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Senha:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Enviar" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Theme by %1$s Powered by %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Navegação de Posts" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Navegação de Post" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Categorias" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Título" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Limit Categories " - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Habilitar Contagem de Posts" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Título" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Limite de Posts" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Follow us" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Resultado de buscas por: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Pesquisar..." - -#: ../searchform.php:12 -msgctxt "placeholder" -msgid "Search…" -msgstr "Procurar…" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Pesquisar..." - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Links rodapé" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Um comentário em “%2$s”" -#~ msgstr[1] "%1$s comentários em “%2$s”" - -#~ msgid ", " -#~ msgstr ", " - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Homepage Widget 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Mostrar na Página Inicial" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Homepage Widget 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Homepage Widget 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Footer Widget 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Usado para área de widget de rodapé" - -#~ msgid "Footer Widget 2" -#~ msgstr "Footer Widget 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Footer Widget 3" - -#~ msgid "Theme Options" -#~ msgstr "Opções do Tema" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Clique em OK para reiniciar. Quaisquer configurações de tema serão " -#~ "perdidas!" - -#~ msgid "Default options restored." -#~ msgstr "Opções padrão restauradas." - -#~ msgid "Options saved." -#~ msgstr "Opções salvas." - -#~ msgid "No file chosen" -#~ msgstr "Nenhum arquivo selecionado" - -#~ msgid "Upload" -#~ msgstr "Upload" - -#~ msgid "Remove" -#~ msgstr "Remover" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Atualize sua versão do WordPress para suporte de mídia completa." - -#~ msgid "View File" -#~ msgstr "Ver Arquivo" - -#~ msgid "No Repeat" -#~ msgstr "Não Repetir" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Repetir Horizontalmente" - -#~ msgid "Repeat Vertically" -#~ msgstr "Repetir Verticalmente" - -#~ msgid "Repeat All" -#~ msgstr "Repetir Tudo" - -#~ msgid "Top Left" -#~ msgstr "Superior Esquerdo" - -#~ msgid "Top Center" -#~ msgstr "Superior Centro" - -#~ msgid "Top Right" -#~ msgstr "Superior Direito" - -#~ msgid "Middle Left" -#~ msgstr "Meio Esquerdo" - -#~ msgid "Middle Center" -#~ msgstr "Meio Centro" - -#~ msgid "Middle Right" -#~ msgstr "Meio Direito" - -#~ msgid "Bottom Left" -#~ msgstr "Inferior Esquerdo" - -#~ msgid "Bottom Center" -#~ msgstr "Inferior Centro" - -#~ msgid "Bottom Right" -#~ msgstr "Inferior Direito" - -#~ msgid "Scroll Normally" -#~ msgstr "Rolar Normalmente" - -#~ msgid "Fixed in Place" -#~ msgstr "Lugar Fixo" - -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Italic" -#~ msgstr "Itálico" - -#~ msgid "Bold" -#~ msgstr "Negrito" - -#~ msgid "Bold Italic" -#~ msgstr "Negrito Itálico" - -#~ msgid "Page %s" -#~ msgstr "Página %s" - -#~ msgid "Follow us on " -#~ msgstr "Follow us on " - -#~ msgid "Sparkling Documentation" -#~ msgstr "Documentação Sparkling" - -#~ msgid " Older posts" -#~ msgstr " Anteriores" - -#~ msgid "Newer posts " -#~ msgstr "Próximos " - -#~ msgid "Sparkling Categories" -#~ msgstr "Categorias Sparkling" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling Popular Posts Widget" - -#~ msgid "Popular Posts" -#~ msgstr "Populares Posts" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling Social Widget" - -#~ msgid "One" -#~ msgstr "Um" - -#~ msgid "Two" -#~ msgstr "Dois" - -#~ msgid "Three" -#~ msgstr "Três" - -#~ msgid "Four" -#~ msgstr "Quatro" - -#~ msgid "Five" -#~ msgstr "Cinco" - -#~ msgid "French Toast" -#~ msgstr "French Toast" - -#~ msgid "Pancake" -#~ msgstr "Pancake" - -#~ msgid "Omelette" -#~ msgstr "Omelette" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Waffle" - -#~ msgid "Main" -#~ msgstr "Main" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Você quer exibir o slide de imagem na página inicial?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Check se você deseja habilitar o slide de imagens" - -#~ msgid "Slider Category" -#~ msgstr "Slider Categoria" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Selecione uma categoria para o slide de posts" - -#~ msgid "Number of slide items" -#~ msgstr "Número de itens do slide" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Digite o número de itens do slide" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "Escolha entre sidebar Esquerda e Direita para ser usado como padrão" - -#~ msgid "Element color" -#~ msgstr "Cor do elemento" - -#~ msgid "Element color on hover" -#~ msgstr "Cor do elemento on hover" - -#~ msgid "Custom Favicon" -#~ msgstr "Custom Favicon" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "Upload uma imagem PNG/GIF 32px x 32px para o favicon do seu site" - -#~ msgid "Action Button" -#~ msgstr "Botão de ação" - -#, fuzzy -#~ msgid "Call For Action Text" -#~ msgstr "Texto da Chamada de Ação" - -#, fuzzy -#~ msgid "Enter the text for call for action section" -#~ msgstr "Introduza o texto para a seção da Chamada de Ação" - -#, fuzzy -#~ msgid "Call For Action Button Title" -#~ msgstr "Título do botão da Chamada de Ação" - -#, fuzzy -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Introduza o título para o botão da Chamada de Ação" - -#, fuzzy -#~ msgid "CFA button link" -#~ msgstr "Link do Botão da Chamada de Ação" - -#, fuzzy -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Introduza o link para o botão da Chamada de Ação" - -#, fuzzy -#~ msgid "Call For Action Text Color" -#~ msgstr "Cor do texto da Chamada de Ação" - -#, fuzzy -#~ msgid "Call For Action Background Color" -#~ msgstr "Cor do plano de fundo da Chamada de Ação" - -#, fuzzy -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Cor da borda do botão da Chamada de Ação" - -#, fuzzy -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Cor do texto do botão da Chamada de Ação" - -#~ msgid "Typography" -#~ msgstr "Tipografia" - -#, fuzzy -#~ msgid "Main Body Text" -#~ msgstr "Corpo do texto da Página Principal" - -#, fuzzy -#~ msgid "Used in P tags" -#~ msgstr "Usado em tags P (Parágrafo)" - -#~ msgid "Heading Color" -#~ msgstr "Cor do Título" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Cor para todos os títulos (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Cor do Link" - -#~ msgid "Link:hover Color" -#~ msgstr "Cor do Link:hover" - -#~ msgid "Header" -#~ msgstr "Cabeçalho" - -#~ msgid "Top nav background color" -#~ msgstr "Cor background do menu do topo" - -#~ msgid "Top nav item color" -#~ msgstr "Cor do item do menu do topo" - -#~ msgid "Link color" -#~ msgstr "Cor do link" - -#~ msgid "Top nav item hover color" -#~ msgstr "Cor do item:hover do menu do topo" - -#~ msgid "Link:hover color" -#~ msgstr "Cor do link:hover" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Cor do background do dropdown do menu do topo" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Cor do background do dropdown do item:hover" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Cor do item do dropdown do menu do topo" - -#~ msgid "Dropdown item color" -#~ msgstr "Cor do item do dropdown" - -#, fuzzy -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Cor do item:hover do menu do topo" - -#, fuzzy -#~ msgid "Dropdown item hover color" -#~ msgstr "" -#~ "Cor do plano de fundo do ítem do Dropdown (Submenu em lista suspensa)" - -#, fuzzy -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "" -#~ "Cor do plano de fundo do ítem do Dropdown (Submenu em lista suspensa)" - -#~ msgid "Footer widget area background color" -#~ msgstr "Cor do background do widget do rodapé" - -#~ msgid "Footer background color" -#~ msgstr "Cor do background do rodapé" - -#~ msgid "Footer text color" -#~ msgstr "Cor do texto do rodapé" - -#~ msgid "Footer link color" -#~ msgstr "Cor do link do rodapé" - -#~ msgid "Footer information" -#~ msgstr "Informações rodapé" - -#~ msgid "Copyright text in footer" -#~ msgstr "Texto de Copyright no rodapé" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Cor do ícone social no rodapé" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Cor do ícone social no rodapé" - -#~ msgid "Social" -#~ msgstr "Social" - -#~ msgid "Footer social icon color" -#~ msgstr "Cor do ícone social no rodapé" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Adicione a URL completa das suas redes sociais" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#, fuzzy -#~ msgid "GitHub" -#~ msgstr "Github" - -#~ msgid "Spotify" -#~ msgstr "Spotify" - -#~ msgid "Search..." -#~ msgstr "Pesquisar..." diff --git a/languages/pt_PT.mo b/languages/pt_PT.mo deleted file mode 100644 index 80993ab..0000000 Binary files a/languages/pt_PT.mo and /dev/null differ diff --git a/languages/pt_PT.po b/languages/pt_PT.po deleted file mode 100644 index e3a02e7..0000000 --- a/languages/pt_PT.po +++ /dev/null @@ -1,954 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \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 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Oops! Página não encontrada." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Contéudo não encontrado. Tente utilizar os links abaixo ou fazer uma " -"pesquisa." - -#: ../404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "Navegação de Posts" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Categorias Mais Usadas" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Veja nos arquivos mensais. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Arquivos" - -#: ../404.php:58 -#, fuzzy -msgid "Tags" -msgstr "Usado em tags P (Parágrafo)" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Autor: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Dia: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Mês: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Ano: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Apartes" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Galerias" - -#: ../archive.php:45 -msgid "Images" -msgstr "Imagens" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Vídeos" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Quotes" - -#: ../archive.php:54 -msgid "Links" -msgstr "Links" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Status" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Áudios" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Chats" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Navegação de comentário" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Comentários Antigos" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Novos Comentários →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Comentários fechados." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Editar" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Leia Mais" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Páginas:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Nada encontrado" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"Pronto para publicar o seu primeiro post? Comece aqui." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Desculpe, mas nada corresponde com os seus termos de pesquisa. Por favor " -"tente novamente com outras palavras." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Não conseguimos encontrar o que está à procura. Talvez uma pesquisa possa " -"ajudar." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Deixe um comentário" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 Comentário" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% Comentários" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Menu principal" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Sidebar" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Sidebar Esquerda" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Sidebar Direita" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Pesquisar..." - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Anterior" - -#: ../image.php:23 -msgid "Next " -msgstr "Seguinte " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Opções do Tema" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Mostrar na Página Inicial" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Opções de Layout" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Padrão usado se nenhuma cor for selecionada" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Cor do ícone social" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Rodapé" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Outro" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "CSS Personalizado" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "CSS Adicional" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Suporte e Documentação" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"A melhor maneira de nos contactar com questões de suporte e " -"relatórios de bugs é através" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Fórum de suporte do Colorlib" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Se gosta deste tema, agradeço qualquer uma das seguintes opções:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Avalie este Tema" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Gosto no Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Siga no Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Este post é protegido por password. Para visualizar escreva a password " -"abaixo:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Password:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Enviar" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Theme by %1$s Powered by %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Navegação de Posts" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Navegação de Post" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Categorias" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Título" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Limitar Categorias " - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Habilitar Contagem de Posts" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Título" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Limite de Posts" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Segue-nos" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Resultado da pesquisa por: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Pesquisar..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Pesquisar..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Pesquisar..." - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Links rodapé" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Um comentário em “%2$s”" -#~ msgstr[1] "%1$s comentários em “%2$s”" - -#~ msgid ", " -#~ msgstr ", " - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Homepage Widget 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Mostrar na Página Inicial" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Homepage Widget 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Homepage Widget 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Footer Widget 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Usado para área de widget de rodapé" - -#~ msgid "Footer Widget 2" -#~ msgstr "Footer Widget 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Footer Widget 3" - -#~ msgid "Theme Options" -#~ msgstr "Opções do Tema" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Clique em OK para reiniciar. Todas as configurações do tema serão " -#~ "perdidas!" - -#~ msgid "Default options restored." -#~ msgstr "Opções padrão restauradas." - -#~ msgid "Options saved." -#~ msgstr "Opções guardadas." - -#~ msgid "No file chosen" -#~ msgstr "Nenhum arquivo selecionado" - -#~ msgid "Upload" -#~ msgstr "Carregar" - -#~ msgid "Remove" -#~ msgstr "Remover" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Atualize a sua versão do WordPress para suporte de mídia completa." - -#~ msgid "View File" -#~ msgstr "Ver Arquivo" - -#~ msgid "No Repeat" -#~ msgstr "Não Repetir" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Repetir Horizontalmente" - -#~ msgid "Repeat Vertically" -#~ msgstr "Repetir Verticalmente" - -#~ msgid "Repeat All" -#~ msgstr "Repetir Tudo" - -#~ msgid "Top Left" -#~ msgstr "Superior Esquerdo" - -#~ msgid "Top Center" -#~ msgstr "Superior Centro" - -#~ msgid "Top Right" -#~ msgstr "Superior Direito" - -#~ msgid "Middle Left" -#~ msgstr "Meio Esquerdo" - -#~ msgid "Middle Center" -#~ msgstr "Meio Centro" - -#~ msgid "Middle Right" -#~ msgstr "Meio Direito" - -#~ msgid "Bottom Left" -#~ msgstr "Inferior Esquerdo" - -#~ msgid "Bottom Center" -#~ msgstr "Inferior Centro" - -#~ msgid "Bottom Right" -#~ msgstr "Inferior Direito" - -#~ msgid "Scroll Normally" -#~ msgstr "Rolar Normalmente" - -#~ msgid "Fixed in Place" -#~ msgstr "Lugar Fixo" - -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Italic" -#~ msgstr "Itálico" - -#~ msgid "Bold" -#~ msgstr "Negrito" - -#~ msgid "Bold Italic" -#~ msgstr "Negrito Itálico" - -#~ msgid "Page %s" -#~ msgstr "Página %s" - -#~ msgid "Follow us on " -#~ msgstr "Segue-nos " - -#~ msgid "Sparkling Documentation" -#~ msgstr "Documentação Sparkling" - -#~ msgid " Older posts" -#~ msgstr " Anteriores" - -#~ msgid "Newer posts " -#~ msgstr "Seguintes " - -#~ msgid "Sparkling Categories" -#~ msgstr "Categorias Sparkling" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling Popular Posts Widget" - -#~ msgid "Popular Posts" -#~ msgstr " Posts Populares" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling Social Widget" - -#~ msgid "One" -#~ msgstr "Um" - -#~ msgid "Two" -#~ msgstr "Dois" - -#~ msgid "Three" -#~ msgstr "Três" - -#~ msgid "Four" -#~ msgstr "Quatro" - -#~ msgid "Five" -#~ msgstr "Cinco" - -#~ msgid "French Toast" -#~ msgstr "French Toast" - -#~ msgid "Pancake" -#~ msgstr "Pancake" - -#~ msgid "Omelette" -#~ msgstr "Omelette" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Waffle" - -#~ msgid "Main" -#~ msgstr "Principal" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Quer exibir o slide de imagem na página inicial?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Check se deseja habilitar o slide de imagens" - -#~ msgid "Slider Category" -#~ msgstr "Slider Categoria" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Selecione uma categoria para o slide de posts" - -#~ msgid "Number of slide items" -#~ msgstr "Número de itens do slide" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Digite o número de itens do slide" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "Escolha entre sidebar Esquerda e Direita para ser usado como padrão" - -#~ msgid "Element color" -#~ msgstr "Cor do elemento" - -#~ msgid "Element color on hover" -#~ msgstr "Cor do elemento on hover" - -#~ msgid "Custom Favicon" -#~ msgstr "Favicon Personalizado" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "Carregar uma imagem PNG/GIF 32px x 32px para o favicon do seu site" - -#~ msgid "Action Button" -#~ msgstr "Botão de ação" - -#~ msgid "Call For Action Text" -#~ msgstr "Texto do botão Call For Action" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Introduza o texto para a descrição do botão Call For Action" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Título do botão Call For Action" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Introduza o título para o botão Call For Action" - -#~ msgid "CFA button link" -#~ msgstr "Link do Botão do CFA" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Introduza o link para o botão Call For Action" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Cor do texto do botão Call For Action" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Cor do fundo do botão Call For Action" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Cor da borda do botão Call For Action" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Cor do texto do botão Call For Action" - -#~ msgid "Typography" -#~ msgstr "Tipografia" - -#~ msgid "Main Body Text" -#~ msgstr "Corpo do texto da Página Principal" - -#~ msgid "Used in P tags" -#~ msgstr "Usado em tags P (Parágrafo)" - -#~ msgid "Heading Color" -#~ msgstr "Cor do Título" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Cor para todos os títulos (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Cor do Link" - -#~ msgid "Link:hover Color" -#~ msgstr "Cor do Link:hover" - -#~ msgid "Header" -#~ msgstr "Cabeçalho" - -#~ msgid "Top nav background color" -#~ msgstr "Cor do fundo do menu do topo" - -#~ msgid "Top nav item color" -#~ msgstr "Cor do item do menu do topo" - -#~ msgid "Link color" -#~ msgstr "Cor do link" - -#~ msgid "Top nav item hover color" -#~ msgstr "Cor do item:hover do menu do topo" - -#~ msgid "Link:hover color" -#~ msgstr "Cor do link:hover" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Cor do fundo da dropdown do menu do topo" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Cor do fundo da dropdown do item:hover" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Cor do item do dropdown do menu do topo" - -#~ msgid "Dropdown item color" -#~ msgstr "Cor do item do dropdown" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Cor do item:hover da dropdown do menu do topo" - -#~ msgid "Dropdown item hover color" -#~ msgstr "Cor do fundo do ítem da dropdown" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Cor do fundo da dropdown do item:hover do menu do topo" - -#~ msgid "Footer widget area background color" -#~ msgstr "Cor do fundo do widget do rodapé" - -#~ msgid "Footer background color" -#~ msgstr "Cor do fundo do rodapé" - -#~ msgid "Footer text color" -#~ msgstr "Cor do texto do rodapé" - -#~ msgid "Footer link color" -#~ msgstr "Cor do link do rodapé" - -#~ msgid "Footer information" -#~ msgstr "Informações rodapé" - -#~ msgid "Copyright text in footer" -#~ msgstr "Texto de Copyright no rodapé" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Cor do ícone social no rodapé" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Cor do ícone social no rodapé" - -#~ msgid "Social" -#~ msgstr "Social" - -#~ msgid "Footer social icon color" -#~ msgstr "Cor do ícone social no rodapé" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Adicione a URL completa das suas redes sociais" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgid "Search..." -#~ msgstr "Pesquisar..." diff --git a/languages/readme.txt b/languages/readme.txt deleted file mode 100644 index a9ef0dc..0000000 --- a/languages/readme.txt +++ /dev/null @@ -1,3 +0,0 @@ -Place your theme language files in this directory. - - diff --git a/languages/ro_RO.mo b/languages/ro_RO.mo deleted file mode 100644 index 6f2670d..0000000 Binary files a/languages/ro_RO.mo and /dev/null differ diff --git a/languages/ro_RO.po b/languages/ro_RO.po deleted file mode 100644 index 8262d12..0000000 --- a/languages/ro_RO.po +++ /dev/null @@ -1,948 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \n" -"Language: ro_RO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Pagină inexistentă." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Nu a fost găsit nimic în locația speficată. Poate încerci una din legăturile " -"de mai jos?" - -#: ../404.php:25 -msgid "Recent Posts" -msgstr "" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Cele mai accesate categorii" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Încearcă să cauți în arhivele lunare. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Arhive" - -#: ../404.php:58 -msgid "Tags" -msgstr "" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Autor: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Zi: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Lună: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "An: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Alături" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Galerii" - -#: ../archive.php:45 -msgid "Images" -msgstr "Imagini" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Videoclipuri" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Citate" - -#: ../archive.php:54 -msgid "Links" -msgstr "Legături" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Stări" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Înregistrări audio" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Discuții" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Navigare comentarii" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Comentarii mai vechi" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Comentarii noi →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Nu se adaugă comentarii." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Editare" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Citește mai mult" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Pagini:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Nu s-a găsit nimic." - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "Ești gata ăs publici primul articol? Începe aici." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Ne pare rău, dar nu am găsit nimic potrivit cu ce ai căutat. Încearcă să " -"schi,bi cuvintele cheie și caută din nou." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "Nu am găsit ceea ce cauți. Încearcă facilitatatea de căutare." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Lasă un comentariu" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 comentariu" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% Comentarii" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Meniu Principal" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Bara laterală" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Bara Laterală Stânga" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Bara Laterală Dreapta" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Caută..." - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Anterior" - -#: ../image.php:23 -msgid "Next " -msgstr "Următor " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Opțiuni temă" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Afișare pe Prima Pagină" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Opțiuni Structură Site" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Folosit implicit dacă nici o culoare nu e selectată" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Culoare pictogramă rețea socializare" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Subsol" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Altele" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "CSS specific" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "CSS Adițional" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Suport și Documentație" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Cea mai bună metode de contact pentru întrebări și reportare " -"probleme este via" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Forum-ul Colorlib" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "Dacă îți place această temă, aș aprecia unul din următoarele lucruri:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Dă notă temei" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "\"Like\" pe Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Urmărește-ne pe Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Acest articol este privat. Pentru a-l vedea introdu parila mai jos:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Parola:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Trimite" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Temă de %1$s Susținut de %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Navigare articole" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Navigare articole" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Categorii" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Titlu" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Limitare Categorii" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Aprobă Numărarea Articolelor" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Titlu" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Limitează Număr Articole" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Urmărește-ne" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Rezultate găsite pentru: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Caută..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Caută..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Caută..." - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Legături în subsol" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "O părere despre “%2$s”" -#~ msgstr[1] "%1$s păreri despre “%2$s”" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Prima Pagină Componenta 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Afișare pe Prima Pagină" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Prima Pagină Componenta 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Prima Pagină Componenta 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Subsol Componenta 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Folosit pentru zona componente subsol" - -#~ msgid "Footer Widget 2" -#~ msgstr "Subsol Componenta 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Subsol Componenta 3" - -#~ msgid "Theme Options" -#~ msgstr "Opțiuni temă" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "Apasă OK pentru resetare. Setările temei vor fi pierdute!" - -#~ msgid "Default options restored." -#~ msgstr "Am restaurat opțiunile implicite" - -#~ msgid "Options saved." -#~ msgstr "Opțiuni salvate." - -#~ msgid "No file chosen" -#~ msgstr "Nici un fisier selectat" - -#~ msgid "Upload" -#~ msgstr "Încarcă" - -#~ msgid "Remove" -#~ msgstr "Șterge" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Actualizează versiunea Wordpress pentru suport media îmbunătățit." - -#~ msgid "View File" -#~ msgstr "Vezi fișier" - -#~ msgid "No Repeat" -#~ msgstr "Fără repetare" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Repetă pe orizontală" - -#~ msgid "Repeat Vertically" -#~ msgstr "Repetă pe verticală" - -#~ msgid "Repeat All" -#~ msgstr "Repetă peste tot" - -#~ msgid "Top Left" -#~ msgstr "Stânga Sus" - -#~ msgid "Top Center" -#~ msgstr "Centrat Sus" - -#~ msgid "Top Right" -#~ msgstr "Dreapta Sus" - -#~ msgid "Middle Left" -#~ msgstr "Stânga Mijloc" - -#~ msgid "Middle Center" -#~ msgstr "Centru Mijloc" - -#~ msgid "Middle Right" -#~ msgstr "Dreapta mijloc" - -#~ msgid "Bottom Left" -#~ msgstr "Stânga Jos" - -#~ msgid "Bottom Center" -#~ msgstr "Centru Jos" - -#~ msgid "Bottom Right" -#~ msgstr "Drapta Jos" - -#~ msgid "Scroll Normally" -#~ msgstr "Glisare Normală" - -#~ msgid "Fixed in Place" -#~ msgstr "Loc Fix" - -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Italic" -#~ msgstr "Cursiv" - -#~ msgid "Bold" -#~ msgstr "Îngroșat" - -#~ msgid "Bold Italic" -#~ msgstr "Cursin Îngroșat" - -#~ msgid "Page %s" -#~ msgstr "Pagina %s" - -#~ msgid "Follow us on " -#~ msgstr "Urmărește-ne pe" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Documentație penrtu Sparkling" - -#~ msgid " Older posts" -#~ msgstr " Articole mai vechi" - -#~ msgid "Newer posts " -#~ msgstr "Articole mai noi " - -#~ msgid "Sparkling Categories" -#~ msgstr "Categorii \"Sparkling\"" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Componentă Sparkling \"Cele Mai Citite Articole\"" - -#~ msgid "Popular Posts" -#~ msgstr "Cele Mai Citite Articole" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Componentă Sparkling \"Socializare\"" - -#~ msgid "One" -#~ msgstr "Unu" - -#~ msgid "Two" -#~ msgstr "Doi" - -#~ msgid "Three" -#~ msgstr "Trei" - -#~ msgid "Four" -#~ msgstr "Patru" - -#~ msgid "Five" -#~ msgstr "Cinci" - -#~ msgid "French Toast" -#~ msgstr "Pâine Prăjită" - -#~ msgid "Pancake" -#~ msgstr "Clătită" - -#~ msgid "Omelette" -#~ msgstr "Omletă" - -#~ msgid "Crepe" -#~ msgstr "Clătite" - -#~ msgid "Waffle" -#~ msgstr "Vafă" - -#~ msgid "Main" -#~ msgstr "Principal" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Vrei să afișezi pe Prima Pagină imagini dinamice?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Bifează dacă vrei conținut dinamic" - -#~ msgid "Slider Category" -#~ msgstr "Categorie Conținut Dinamic" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "" -#~ "Alege o categorie pentru afișarea dinamică a articolelor recomandate" - -#~ msgid "Number of slide items" -#~ msgstr "Număr element conținut dinamic" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Introdu numărul de elemente dinamice" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "Alege bara din Stânga sau din Dreapta ca implicită" - -#~ msgid "Element color" -#~ msgstr "Culoare element" - -#~ msgid "Element color on hover" -#~ msgstr "Culoare element (mouse deasupra)" - -#~ msgid "Custom Favicon" -#~ msgstr "Pictograma mea" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "Încarcă o imagine de 32x32 pixeli, format PNG/GIF care să reprezinte " -#~ "pictograma site-ului" - -#~ msgid "Action Button" -#~ msgstr "Acțiunea Mea" - -#~ msgid "Call For Action Text" -#~ msgstr "Text \"Acțiunea mea\"" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Introdu textul pentru secțiunea \"Acțiunea mea\"" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Titlu buton \"Acțiunea mea\"" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Scrie titlul butonului \"Acțiunea mea\"" - -#~ msgid "CFA button link" -#~ msgstr "AM - legătură buton" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Introdu o legătură pentru butonul \"Acțiunea mea\"" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Culoare text \"Acțiunea mea\"" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Culoare fundal \"Acțiunea mea\"" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Culoare margine \"Acțiunea mea\"" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Culoare text buton \"Acțiunea mea\"" - -#~ msgid "Typography" -#~ msgstr "Scriere" - -#~ msgid "Main Body Text" -#~ msgstr "Text conținut principal" - -#~ msgid "Used in P tags" -#~ msgstr "Folosit in paragrafe P" - -#~ msgid "Heading Color" -#~ msgstr "Culoare antet" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Culoare pentru cap paragraf (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Culoare legătură" - -#~ msgid "Link:hover Color" -#~ msgstr "Culoare legătură (mouse deasupra)" - -#~ msgid "Header" -#~ msgstr "Antet" - -#~ msgid "Top nav background color" -#~ msgstr "Culoare meniu sus" - -#~ msgid "Top nav item color" -#~ msgstr "Culoare element meniu sus" - -#~ msgid "Link color" -#~ msgstr "Culoare legătură" - -#~ msgid "Top nav item hover color" -#~ msgstr "Culoare element meniu sus" - -#~ msgid "Link:hover color" -#~ msgstr "Culoare legătură (mouse deasupra)" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Culoare fundal submeniu sus" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Culoare fundal element submeniu sus" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Culoare element submeniu sus" - -#~ msgid "Dropdown item color" -#~ msgstr "Culoare element submeniu" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Culoare element submeniu sus (mouse deasupra)" - -#~ msgid "Dropdown item hover color" -#~ msgstr "Culoare element submeniu (mouse deasupra) " - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Culoare fundal element submeniu sus (mouse deasupra)" - -#~ msgid "Footer widget area background color" -#~ msgstr "Culoare fundal zonă componente în subsol" - -#~ msgid "Footer background color" -#~ msgstr "Culoare fundal subsol" - -#~ msgid "Footer text color" -#~ msgstr "Culoare text în subsol" - -#~ msgid "Footer link color" -#~ msgstr "Culoare \"legături\" în subsol" - -#~ msgid "Footer information" -#~ msgstr "Informații subsol" - -#~ msgid "Copyright text in footer" -#~ msgstr "Text \"drepturi de autor\" în subsol" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Culoare pictogramă rețea socializare (subsol)" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Culoare pictogramă rețea socializare (subsol)" - -#~ msgid "Social" -#~ msgstr "Rețele Socializare" - -#~ msgid "Footer social icon color" -#~ msgstr "Culoare pictogramă rețea socializare (subsol)" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Adaugă Legătură completă către profilele tale pe rețelele sociale" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "Flux RSS" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgid "Search..." -#~ msgstr "Caută..." diff --git a/languages/ru_RU.mo b/languages/ru_RU.mo deleted file mode 100644 index fbc8f99..0000000 Binary files a/languages/ru_RU.mo and /dev/null differ diff --git a/languages/ru_RU.po b/languages/ru_RU.po deleted file mode 100644 index 3b994df..0000000 --- a/languages/ru_RU.po +++ /dev/null @@ -1,962 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:37+0200\n" -"PO-Revision-Date: 2016-02-17 15:37+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \n" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Ой! К сожалению нет такой страницы." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Ничего не найдено. Попробуйте перейти по другой ссылке или воспользуйтесь " -"поиском?" - -#: ../404.php:25 -#, fuzzy -msgid "Recent Posts" -msgstr "Навигация по записям" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Самые популярные категории" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Поищите в архивах %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Архивы" - -#: ../404.php:58 -#, fuzzy -msgid "Tags" -msgstr "Используемый в тегах

      (абзац)" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Автор: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "День: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Месяц: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Год: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Боковые панели" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Галереи" - -#: ../archive.php:45 -msgid "Images" -msgstr "Фото" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Видео" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Цитаты" - -#: ../archive.php:54 -msgid "Links" -msgstr "Ссылки" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Статусы" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Аудио" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Чаты" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Навигация по комментариям" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Предыдущие комментарии" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Новые комментарии →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Комментарии закрыты" - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Правка" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Подробнее" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Страницы:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Ничего не найдено" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "Готовы опубликовать свою первую запись? Начнем." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Ни один результат не соответствует Вашему запросу. Пожалуйста, повторите " -"поиск, используя другие ключевые слова." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Похоже, мы не можем найти запрашиваемую Вами информацию. Попробуйте найти " -"через \"Поиск\"." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Оставить комментарий" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 комментарий" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% комментарии" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Основное меню" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Боковая панель" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Слева" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Справа" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "" -"Ничего не найдено. Попробуйте перейти по другой ссылке или воспользуйтесь " -"поиском?" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Предыдущий" - -#: ../image.php:23 -msgid "Next " -msgstr "Следующий " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Опции темы" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Отображается на Главной странице" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Варианты разметки сайта" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Если не выберите свой цвет, будет использовано стандартное значение" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Цвет иконки соц. сетей" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Нижний колонтитул" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Другие" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Пользовательский CSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "Дополнительный CSS" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Поддержка и Документация" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Чтобы связаться с нами по вопросам технической поддержки и отчетов " -"об ошибках, используйте" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Форум поддержки Colorlib" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "" -"Если вам понравилась эта тема, я был бы благодарен за любой из следующих " -"вариантов:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Оценить эту тему" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Поставить лайк на Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Читать Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Эта запись защищена паролем. Чтобы просмотреть эту запись, пожалуйста, " -"введите пароль:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Пароль:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Отправить" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Тема от %1$s. Работает на %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Навигация по записям" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Навигация записей" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Категории" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Название" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Лимит категорий" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Включить счётчик записей" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Название" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Ограничить количество записей" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Присоединяйтесь к нам" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Результаты поиска по: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "" -"Ничего не найдено. Попробуйте перейти по другой ссылке или воспользуйтесь " -"поиском?" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "" -"Ничего не найдено. Попробуйте перейти по другой ссылке или воспользуйтесь " -"поиском?" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "" -"Ничего не найдено. Попробуйте перейти по другой ссылке или воспользуйтесь " -"поиском?" - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Мета" - -#~ msgid "Footer Links" -#~ msgstr "Ссылки нижнего колонтитула" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Комментарий “%2$s”" -#~ msgstr[1] "%1$s Комментарии “%2$s”" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "1ый виджет на Главной странице" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Отображается на Главной странице" - -#~ msgid "Homepage Widget 2" -#~ msgstr "2ой виджет на Главной странице" - -#~ msgid "Homepage Widget 3" -#~ msgstr "3ий виджет на Главной странице" - -#~ msgid "Footer Widget 1" -#~ msgstr "1ый виджет нижнего колонтитула" - -#~ msgid "Used for footer widget area" -#~ msgstr "Использовано для области виджета футера" - -#~ msgid "Footer Widget 2" -#~ msgstr "2ой виджет нижнего колонтитула" - -#~ msgid "Footer Widget 3" -#~ msgstr "3ий виджет нижнего колонтитула" - -#~ msgid "Theme Options" -#~ msgstr "Опции темы" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "Нажмите OK чтобы сбросить. Все настройки темы будут утрачены!" - -#~ msgid "Default options restored." -#~ msgstr "Восстановлены настройки по умолчанию." - -#~ msgid "Options saved." -#~ msgstr "Опции сохранены." - -#~ msgid "No file chosen" -#~ msgstr "Файл не выбран" - -#~ msgid "Upload" -#~ msgstr "Загрузить" - -#~ msgid "Remove" -#~ msgstr "Удалить" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Обновите версию WordPress для полной поддержки Медиа." - -#~ msgid "View File" -#~ msgstr "Просмотреть файл" - -#~ msgid "No Repeat" -#~ msgstr "Не повторять" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Повторить горизонтально" - -#~ msgid "Repeat Vertically" -#~ msgstr "Повторить вертикально" - -#~ msgid "Repeat All" -#~ msgstr "Заполнить" - -#~ msgid "Top Left" -#~ msgstr "Вверху слева" - -#~ msgid "Top Center" -#~ msgstr "Вверху по центру" - -#~ msgid "Top Right" -#~ msgstr "Вверху справа" - -#~ msgid "Middle Left" -#~ msgstr "По середине слева" - -#~ msgid "Middle Center" -#~ msgstr "По середине по центру" - -#~ msgid "Middle Right" -#~ msgstr "По середине справа" - -#~ msgid "Bottom Left" -#~ msgstr "Снизу слева" - -#~ msgid "Bottom Center" -#~ msgstr "Снизу по центру" - -#~ msgid "Bottom Right" -#~ msgstr "Снизу справа" - -#~ msgid "Scroll Normally" -#~ msgstr "Обычная прокрутка" - -#~ msgid "Fixed in Place" -#~ msgstr "Зафиксировано на месте" - -#~ msgid "Normal" -#~ msgstr "Обычный" - -#~ msgid "Italic" -#~ msgstr "Курсив" - -#~ msgid "Bold" -#~ msgstr "Полужирный" - -#~ msgid "Bold Italic" -#~ msgstr "Полужирный курсив" - -#~ msgid "Page %s" -#~ msgstr "Страница %s" - -#~ msgid "Follow us on " -#~ msgstr "Мы в соц. сетях: " - -#~ msgid "Sparkling Documentation" -#~ msgstr "Документация Sparkling" - -#~ msgid " Older posts" -#~ msgstr " Показать еще" - -#~ msgid "Newer posts " -#~ msgstr "Новые записи " - -#~ msgid "Sparkling Categories" -#~ msgstr "(Sparkling) Категории" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "(Sparkling) Популярные записи" - -#~ msgid "Popular Posts" -#~ msgstr "Популярные записи" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "(Sparkling) Соц. сети" - -#~ msgid "One" -#~ msgstr "Один" - -#~ msgid "Two" -#~ msgstr "Два" - -#~ msgid "Three" -#~ msgstr "Три" - -#~ msgid "Four" -#~ msgstr "Четыре" - -#~ msgid "Five" -#~ msgstr "Пять" - -#~ msgid "French Toast" -#~ msgstr "Французский тост" - -#~ msgid "Pancake" -#~ msgstr "Блин" - -#~ msgid "Omelette" -#~ msgstr "Омлет" - -#~ msgid "Crepe" -#~ msgstr "Креп" - -#~ msgid "Waffle" -#~ msgstr "Вафли" - -#~ msgid "Main" -#~ msgstr "Главная" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Хотите ли Вы, чтобы на главной страницу отображался слайдер?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Включить слайдер" - -#~ msgid "Slider Category" -#~ msgstr "Категория для слайдера" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Выберите самую интересную категорию записей для слайдера" - -#~ msgid "Number of slide items" -#~ msgstr "Количество слайдов" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Введите количество слайдов" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "Выберите, где по умолчанию будет боковая панель: Слева или Справа?" - -#~ msgid "Element color" -#~ msgstr "Цвет элемента" - -#~ msgid "Element color on hover" -#~ msgstr "Цвет элемента при наведении" - -#~ msgid "Custom Favicon" -#~ msgstr "Своя Favicon" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "Загрузите PNG/GIF изображение размером 32px х 32px, которая будет " -#~ "символом Вашего сайта" - -#~ msgid "Action Button" -#~ msgstr "Call for Action" - -#~ msgid "Call For Action Text" -#~ msgstr "Текст Call for Action" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Введите текст для секции Call for Action" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Текст кнопки Call for Action" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Введите текст кнопки Call for Action" - -#~ msgid "CFA button link" -#~ msgstr "Ссылка кнопки Call for Action" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Введите адрес ссылки кнопки Call for Action" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Цвет текста Call for Action" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Цвет фона Call for Action" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Цвет границы кнопки Call for Action" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Цвет текста кнопки Call for Action" - -#~ msgid "Typography" -#~ msgstr "Типографика" - -#~ msgid "Main Body Text" -#~ msgstr "Основной шрифт" - -#~ msgid "Used in P tags" -#~ msgstr "Используемый в тегах

      (абзац)" - -#~ msgid "Heading Color" -#~ msgstr "Цвет заголовков" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Цвет для всех заголовков (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Цвет ссылок" - -#~ msgid "Link:hover Color" -#~ msgstr "Цвет ссылки при наведении" - -#~ msgid "Header" -#~ msgstr "Верхний колонтитул" - -#~ msgid "Top nav background color" -#~ msgstr "Цвет фона верхнего меню" - -#~ msgid "Top nav item color" -#~ msgstr "Цвет текста элемента списка верхнего меню" - -#~ msgid "Link color" -#~ msgstr "Цвет ссылки" - -#~ msgid "Top nav item hover color" -#~ msgstr "Цвет текста элемента списка верхнего меню при наведении" - -#~ msgid "Link:hover color" -#~ msgstr "Цвет ссылки при наведении" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Цвет фона выпадающего меню второго уровня" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Цвет фона элемента при наведении в выпадающем меню второго уровня" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Цвет элемента в выпадающем меню второго уровня" - -#~ msgid "Dropdown item color" -#~ msgstr "Цвет элемента" - -#, fuzzy -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Цвет текста элемента списка верхнего меню при наведении" - -#, fuzzy -#~ msgid "Dropdown item hover color" -#~ msgstr "Цвет фона элемента при наведении в выпадающем меню второго уровня" - -#, fuzzy -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Цвет фона элемента при наведении в выпадающем меню второго уровня" - -#~ msgid "Footer widget area background color" -#~ msgstr "Цвет фона области виджетов нижнего колонтитула" - -#~ msgid "Footer background color" -#~ msgstr "Цвет фона нижнего колонтитула" - -#~ msgid "Footer text color" -#~ msgstr "Цвет текста нижнего колонтитула" - -#~ msgid "Footer link color" -#~ msgstr "Цвет ссылок нижнего колонтитула" - -#~ msgid "Footer information" -#~ msgstr "Информация в нижнем колонтитуле" - -#~ msgid "Copyright text in footer" -#~ msgstr "Текст об авторских правах в нижнем колонтитуле" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Цвет иконки соц. сетей в нижнем колонтитуле" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Цвет иконки соц. сетей в нижнем колонтитуле" - -#~ msgid "Social" -#~ msgstr "Соц. сети" - -#~ msgid "Footer social icon color" -#~ msgstr "Цвет иконки соц. сетей в нижнем колонтитуле" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Добавьте полные URL профилей Вашего бренда в соц. сетях " - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#, fuzzy -#~ msgid "Search..." -#~ msgstr "" -#~ "Ничего не найдено. Попробуйте перейти по другой ссылке или воспользуйтесь " -#~ "поиском?" - -#~ msgid "Default used if no color is selected." -#~ msgstr "Если не выберите свой цвет, будет использовано стандартное значение" diff --git a/languages/tr_TR.mo b/languages/tr_TR.mo deleted file mode 100644 index 682e576..0000000 Binary files a/languages/tr_TR.mo and /dev/null differ diff --git a/languages/tr_TR.po b/languages/tr_TR.po deleted file mode 100644 index 26f6ef7..0000000 --- a/languages/tr_TR.po +++ /dev/null @@ -1,956 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:38+0200\n" -"PO-Revision-Date: 2016-02-17 15:38+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \n" -"Language: tr_TR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Hoop! Bu sayfa bulunamıyor." - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Görünen o'ki bu adreste bir şey bulunamadı. Belki aşağıdaki linklerden " -"birini denemek yada arama yapmak isteyebilirsiniz?" - -#: ../404.php:25 -msgid "Recent Posts" -msgstr "Son Mesajlar" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "En sık kullanılan kategoriler" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Aylık arşivlere bakmayı dene. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Arşivler" - -#: ../404.php:58 -msgid "Tags" -msgstr "Etiketler" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Yazar: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "Gün: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Ay: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Yıl: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Yan yorumlar" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Galeriler" - -#: ../archive.php:45 -msgid "Images" -msgstr "Görüntüler" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Videolar" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Alıntılar" - -#: ../archive.php:54 -msgid "Links" -msgstr "Bağlantılar" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Durumlar" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Sesler" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Sohbetler" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Yorum navigasyonu" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Daha Eski Yorumlar" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr " Daha Yeni Yorumlar →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Yorumlar Kapalıdır." - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Düzenle" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Fazlasını Oku" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Sayfalar:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Bir şey bulunamadı" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "" -"İlk mesajını yayınlamaya hazır mısın? Buradan başla." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Pardon, ama malesef arama terimlerinizle eşleşen bir şey bulunamadı. Lütfen " -"farklı anahtar kelimelerle tekrar deneyin." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Görünüyorki istediğinizi bulamadık. Muhtemelen arama yapmak yardımcı " -"olabilir." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Yorum Bırak" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 Yorum" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% yorum" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Birincil Menü" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Kenar çubuğu" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Sol Kenar Çubuğu" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Sağ Kenar Çubuğu" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Arama" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Önceki" - -#: ../image.php:23 -msgid "Next " -msgstr "Sonraki " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Tema Ayarları" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Ana sayfada gösterilir" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Website Düzen Ayarları" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "Ren seçilmediyse ön ayarlı renk kullanılır" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Sosyak ikon rengi" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Site altı(ayakçı)" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Diğer" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "Özel CSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "Fazladan CSS" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Destek ve Dökümanlar" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Bizimle temas kurmanın en iyi yolu destek soruları ve hata " -"raporları ile" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Colorlib destek forumu" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "" -"Eğer bu temayı sevdiysen, Takip edenlerden herhangi biri makbule geçer:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Temayı derecelendir" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Facebookda beğen" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr " Twitterda takip et" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Bu gönderi şifre korumalıdır. Görüntülemek için şifrenizi aşağıya girin:" - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Şifre:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Teslim et" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Temayı yapan %1$s Çalışmasını sağlayan %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Gönderiler navigasyonu" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Gönderi navigasyonu" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Bölümler" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Başlık" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Bölümleri Sınırla" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Gönderi Sayacını Aktifleştir" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Başlık" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Gönderi Sayısını Sınırla" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Bizi takip et" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr ": %s için arama sonuçları" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Ara..." - -#: ../searchform.php:12 -msgctxt "placeholder" -msgid "Search…" -msgstr "Ara …" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Ara..." - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "Sayfa Altı Bağlantıları" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "“%2$s” üzerine yorum" -#~ msgstr[1] "“%2$s” üzerine %1$s yorumlar" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Ana sayfa Widget 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Ana sayfada gösterilir" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Ana sayfa Widget 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Ana sayfa Widget 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "Sayfa Altı Widget 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "Sayfa altı widget alanı için kullanıldı" - -#~ msgid "Footer Widget 2" -#~ msgstr "Sayfa Altı Widget 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "Sayfa Altı Widget 3" - -#~ msgid "Theme Options" -#~ msgstr "Tema Ayarları" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Sıfırlamak (Reset) için tamama tıklayın. Bütün tema ayarları kaybolacak " -#~ "(sıfırlanacak)!" - -#~ msgid "Default options restored." -#~ msgstr "Öntanımlı ayarlara dönüldü." - -#~ msgid "Options saved." -#~ msgstr "Ayarlar kaydedildi" - -#~ msgid "No file chosen" -#~ msgstr "Dosya seçilmedi" - -#~ msgid "Upload" -#~ msgstr "Yükle" - -#~ msgid "Remove" -#~ msgstr "Kaldır" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Tam medya desteği için WordPress sürümünüzü yükseltin." - -#~ msgid "View File" -#~ msgstr "Dosyayı görüntüle" - -#~ msgid "No Repeat" -#~ msgstr "Tekrar yok" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Yatay Tekrar" - -#~ msgid "Repeat Vertically" -#~ msgstr "Dikey Tekrar" - -#~ msgid "Repeat All" -#~ msgstr "Hepsini Tekrarla" - -#~ msgid "Top Left" -#~ msgstr "Sol Üst" - -#~ msgid "Top Center" -#~ msgstr "Merkez Üst" - -#~ msgid "Top Right" -#~ msgstr "Sağ üst" - -#~ msgid "Middle Left" -#~ msgstr "Orta Sol" - -#~ msgid "Middle Center" -#~ msgstr "Orta Merkez" - -#~ msgid "Middle Right" -#~ msgstr "Orta Sağ" - -#~ msgid "Bottom Left" -#~ msgstr "Alt Sol" - -#~ msgid "Bottom Center" -#~ msgstr "Alt Merkez" - -#~ msgid "Bottom Right" -#~ msgstr "Alt Sağ" - -#~ msgid "Scroll Normally" -#~ msgstr "Normal Kaydır" - -#~ msgid "Fixed in Place" -#~ msgstr "Yerinde Sabit" - -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Italic" -#~ msgstr "İtalik" - -#~ msgid "Bold" -#~ msgstr "Kalın" - -#~ msgid "Bold Italic" -#~ msgstr "Kalın İtalik" - -#~ msgid "Page %s" -#~ msgstr "Sayfa %s" - -#~ msgid "Follow us on " -#~ msgstr "Bizi takip edin" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Sparkling Dökümanları" - -#~ msgid " Older posts" -#~ msgstr " Daha eski gönderiler" - -#~ msgid "Newer posts " -#~ msgstr "Daha yeni gönderiler " - -#~ msgid "Sparkling Categories" -#~ msgstr "Sparkling Bölümleri" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling Popüler Gönderiler Widget ı" - -#~ msgid "Popular Posts" -#~ msgstr "Pöpüler Gönderiler" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling Sosyal Widget ı" - -#~ msgid "One" -#~ msgstr "Bir" - -#~ msgid "Two" -#~ msgstr "İki" - -#~ msgid "Three" -#~ msgstr "Üç" - -#~ msgid "Four" -#~ msgstr "Dört" - -#~ msgid "Five" -#~ msgstr "Beş" - -#~ msgid "French Toast" -#~ msgstr "Fransız Tostu" - -#~ msgid "Pancake" -#~ msgstr "Pankek" - -#~ msgid "Omelette" -#~ msgstr "Omlet" - -#~ msgid "Crepe" -#~ msgstr "Krep" - -#~ msgid "Waffle" -#~ msgstr "Waffle" - -#~ msgid "Main" -#~ msgstr "Ana" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Ana Sayfada görüntü slaytçısının gözükmesini istiyorumusun?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Slaytçıyı aktive etmek için işaretle" - -#~ msgid "Slider Category" -#~ msgstr "Slaytçı bölümü" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "En son gönderi slaytçısı için bölüm seç" - -#~ msgid "Number of slide items" -#~ msgstr "Slayt nesnelerinin sayısı" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Slayt nesnelerinin sayısını gir" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "" -#~ "Sağ ve Sol kenar çubuğu arasından ön ayarlı olarak kullanılacağı seç" - -#~ msgid "Element color" -#~ msgstr "Element rengi" - -#~ msgid "Element color on hover" -#~ msgstr "Vurgulanmmış alanda element rengi" - -#~ msgid "Custom Favicon" -#~ msgstr "Özel Favicon" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "Websitenin faviconunu temsil edicek 32px x 32px PNG/GIF görselini yükle" - -#~ msgid "Action Button" -#~ msgstr "Eylem Butonu" - -#~ msgid "Call For Action Text" -#~ msgstr "Eylem yazısını cağır" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Eylem bölümümün çağırmak için gereken yazıyı gir" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Eylem çağırma butonu başlığı" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Eylem için çağır butonunun başlığını gir" - -#~ msgid "CFA button link" -#~ msgstr "Eylem için çağır butonu bağlantısı" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Eylem için çağır butonu bağlantısını gir" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Eylem için çağır yazı rengi" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Eylem için çağır arkaplan rengi" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Eylem için çağır butonu kenar rengi" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Eylem için çağır butonu yazı rengi" - -#~ msgid "Typography" -#~ msgstr "Basımcılık" - -#~ msgid "Main Body Text" -#~ msgstr "Ana gövde metni" - -#~ msgid "Used in P tags" -#~ msgstr "P etiketlerinde kullanılır" - -#~ msgid "Heading Color" -#~ msgstr "Heading rengi" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Bütün (h1-h6)headingler için renk" - -#~ msgid "Link Color" -#~ msgstr "Bağlantı rengi" - -#~ msgid "Link:hover Color" -#~ msgstr "Bağlantı:vurgulanmış rengi" - -#~ msgid "Header" -#~ msgstr "Header" - -#~ msgid "Top nav background color" -#~ msgstr "Üst navigason arkaplan rengi" - -#~ msgid "Top nav item color" -#~ msgstr "Üst navigasyon nesne rengi" - -#~ msgid "Link color" -#~ msgstr "Bağlantı rengi" - -#~ msgid "Top nav item hover color" -#~ msgstr "Üst navigasyon nesne vurgulanmış rengi" - -#~ msgid "Link:hover color" -#~ msgstr "Link:vurgulanmış rengi" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Üst navigasyon aşağı düşen arkaplan rengi" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Aşağı düşen nesnenin vurgulanmış arkaplan rengi" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Üst navigasyon nesne rengi" - -#~ msgid "Dropdown item color" -#~ msgstr "Aşağı düşen nesne rengi" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Üst navigasyon aşağı düşen vurgulanmış nesne rengi" - -#~ msgid "Dropdown item hover color" -#~ msgstr "Aşağı düşen vurgulanmış nesne rengi" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Üst navigasyon aşağı düşen vurgulanmış nesnenin arkaplan rengi" - -#~ msgid "Footer widget area background color" -#~ msgstr "Site altı widget alanı arkaplan rengi" - -#~ msgid "Footer background color" -#~ msgstr "Site altı arkaplan rengi" - -#~ msgid "Footer text color" -#~ msgstr "Site altı yazı rengi" - -#~ msgid "Footer link color" -#~ msgstr "Site altı bağlantı rengi" - -#~ msgid "Footer information" -#~ msgstr "Site altı bilgisi" - -#~ msgid "Copyright text in footer" -#~ msgstr "Site altındaki telif hakkı yazısı" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Site altı sosyal ikon rengi" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Site altı sosyal ikon rengi" - -#~ msgid "Social" -#~ msgstr "Sosyal" - -#~ msgid "Footer social icon color" -#~ msgstr "Site altı sosyal ikon rengi" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Sosyal ağ profillerinizin tam URL sini ekleyin" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Besleme" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgid "GitHub" -#~ msgstr "GitHub" - -#~ msgid "Spotify" -#~ msgstr "Spotify" diff --git a/languages/uk.mo b/languages/uk.mo deleted file mode 100644 index a649c5b..0000000 Binary files a/languages/uk.mo and /dev/null differ diff --git a/languages/uk.po b/languages/uk.po deleted file mode 100644 index e8dd136..0000000 --- a/languages/uk.po +++ /dev/null @@ -1,963 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:38+0200\n" -"PO-Revision-Date: 2016-02-17 15:38+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: colorlib \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "Перепрошую. Вказаної сторінки не існує. " - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "" -"Нічого не знайдено. Спробуйте використати один з наведених нижче посилань, " -"або скористайтесь форму пошуку." - -#: ../404.php:25 -msgid "Recent Posts" -msgstr "Нещодавні публікації" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "Найпопулярніші категорії" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "Пошукайте в архівах. %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "Архіви" - -#: ../404.php:58 -msgid "Tags" -msgstr "Теґи" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "Автор: %s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "День: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "Місяць: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "Рік: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "Бічні панелі" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "Галереї" - -#: ../archive.php:45 -msgid "Images" -msgstr "Світлини" - -#: ../archive.php:48 -msgid "Videos" -msgstr "Відеострічки" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Цитати" - -#: ../archive.php:54 -msgid "Links" -msgstr "Посилання" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "Статуси" - -#: ../archive.php:60 -msgid "Audios" -msgstr "Аудіо" - -#: ../archive.php:63 -msgid "Chats" -msgstr "Чати" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" -msgstr[1] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "Шляхівниця коментарів" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← Попередні коментарі" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "Нові комментарии →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "Публікація коментарів обмежена" - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "Редагувати" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "Детальніше" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "Сторінки:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "Нічого не знайдено" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "Чи готові Ви додати перший запис? Почнемо." - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "" -"Жодний результат не відповідає Вашому запиту. Будь ласка, спробуйте замінити " -"ключові слова." - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" -"Схоже, ми не можемо знайти інформацію згідно Вашого запиту. Спробуйте " -"використати \"Пошук\"." - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "Залишити коментар" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 коментар" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% коментарів" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "Головне меню" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "Бічна панель" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "Ліворуч" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "Праворуч" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "Результат пошуку за запитом: %s" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " Попередній" - -#: ../image.php:23 -msgid "Next " -msgstr "Наступний " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Налаштування теми" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "Відображається на Головній сторінці" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "Налаштування макету сторінки" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "" -"Якщо Ви не оберете свій колір, буде використано значення за замовчуванням" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "Колір піктограми соціальних мереж" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "Нижній колонтил (Footer)" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "Інші" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "CSS користувача" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "Додатковий CSS" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "Підтримка та Документація" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "" -"Щоб зв'язатись з питаннь технічної підтримки та звітів про " -"помилки, використайте" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Толока підтримки Colorlib" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "" -"Якщо Вам сподобалась ця тема, я був би вельми вдячний за будь-який наступний " -"варіант:" - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "Оцінити цю тему" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "Поставити вподобайку на Facebook" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "Читати Twitter" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "" -"

      Цей запис захищений гаслом. Аби подивитися цей запис, будь ласка, уведіть " -"гасло:

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "Гасло:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "Підтвердити" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Тема від %1$s. Працює на %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "Навігація записами" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "Навігація записами" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "Категорії" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "Назви" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "Обмеження категорій" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "Увімкнути лічильник записів" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "Назва" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "Увімкнути лічильник записів" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "Приєднуйтесь до нас" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "Результати пошуку за запитом: %s" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "Результат пошуку за запитом: %s" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "Результат пошуку за запитом: %s" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "Результат пошуку за запитом: %s" - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Мета" - -#~ msgid "Footer Links" -#~ msgstr "Посилання нижнього колонтитула" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "Коментарій “%2$s”" -#~ msgstr[1] "%1$s Коментарів “%2$s”" - -#~ msgid ", " -#~ msgstr "," - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "Перший застосунок на Головній сторінці" - -#~ msgid "Displays on the Home Page" -#~ msgstr "Відображається на Головній сторінці" - -#~ msgid "Homepage Widget 2" -#~ msgstr "Другий застосунок на Головній сторінці" - -#~ msgid "Homepage Widget 3" -#~ msgstr "Третій застосунок на Головній сторінці" - -#~ msgid "Footer Widget 1" -#~ msgstr "Перший застосунок нижнього колонтитула" - -#~ msgid "Used for footer widget area" -#~ msgstr "Використано для застосунка нижнього колонтитула" - -#~ msgid "Footer Widget 2" -#~ msgstr "Другий застосунок нижнього колонтитула" - -#~ msgid "Footer Widget 3" -#~ msgstr "Третій застосунок нижнього колонтитула" - -#~ msgid "Theme Options" -#~ msgstr "Налаштування теми" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "" -#~ "Натисність ОК для скидування налаштувань. Увага! Усі параментри будуть " -#~ "видалені!" - -#~ msgid "Default options restored." -#~ msgstr "Відновленні налаштування за замовчуванням." - -#~ msgid "Options saved." -#~ msgstr "Налаштування збережені." - -#~ msgid "No file chosen" -#~ msgstr "Файл не обраний" - -#~ msgid "Upload" -#~ msgstr "Завантажити" - -#~ msgid "Remove" -#~ msgstr "Видалити" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "Оновіть двигун WordPress для повної підтримки додатку \"Медіа\"." - -#~ msgid "View File" -#~ msgstr "Переглянути файл" - -#~ msgid "No Repeat" -#~ msgstr "Не повторювати\t" - -#~ msgid "Repeat Horizontally" -#~ msgstr "Повторити горизонтально" - -#~ msgid "Repeat Vertically" -#~ msgstr "Повторити вертикально" - -#~ msgid "Repeat All" -#~ msgstr "Заповнити" - -#~ msgid "Top Left" -#~ msgstr "Зверху ліворуч" - -#~ msgid "Top Center" -#~ msgstr "Зверху центрально" - -#~ msgid "Top Right" -#~ msgstr "Зверху праворуч" - -#~ msgid "Middle Left" -#~ msgstr "По середині ліворуч" - -#~ msgid "Middle Center" -#~ msgstr "По середині центрально" - -#~ msgid "Middle Right" -#~ msgstr "По середині праворуч" - -#~ msgid "Bottom Left" -#~ msgstr "Знизу ліворуч" - -#~ msgid "Bottom Center" -#~ msgstr "Знизу центрально" - -#~ msgid "Bottom Right" -#~ msgstr "Знизу праворуч" - -#~ msgid "Scroll Normally" -#~ msgstr "Звичайна прокручування" - -#~ msgid "Fixed in Place" -#~ msgstr "Зафіксовано на місці" - -#~ msgid "Normal" -#~ msgstr "Звичайний" - -#~ msgid "Italic" -#~ msgstr "Похилий" - -#~ msgid "Bold" -#~ msgstr "Напівжирний" - -#~ msgid "Bold Italic" -#~ msgstr "Напівширний похилий" - -#~ msgid "Page %s" -#~ msgstr "Сторінка %s" - -#~ msgid "Follow us on " -#~ msgstr "Приєднуйтесь до нас" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Документація Sparkling" - -#~ msgid " Older posts" -#~ msgstr " Показати ще" - -#~ msgid "Newer posts " -#~ msgstr "Нові записи " - -#~ msgid "Sparkling Categories" -#~ msgstr "(Sparkling) Категорії" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "(Sparkling) Популярні записи" - -#~ msgid "Popular Posts" -#~ msgstr "Популярні записи" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Соціальні мережі Sparkling" - -#~ msgid "One" -#~ msgstr "Один" - -#~ msgid "Two" -#~ msgstr "Два" - -#~ msgid "Three" -#~ msgstr "Три" - -#~ msgid "Four" -#~ msgstr "Чотири" - -#~ msgid "Five" -#~ msgstr "П'ять" - -#~ msgid "French Toast" -#~ msgstr "Французька грінківниця" - -#~ msgid "Pancake" -#~ msgstr "Млинець" - -#~ msgid "Omelette" -#~ msgstr "Омлет" - -#~ msgid "Crepe" -#~ msgstr "Креп" - -#~ msgid "Waffle" -#~ msgstr "Вафлі" - -#~ msgid "Main" -#~ msgstr "Головна" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "Чи бажаєте Ви бачити на головній сторінці повзунок?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "Увімкнити повзунок" - -#~ msgid "Slider Category" -#~ msgstr "Категорія для повзунка" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "Оберіть найцікавішу категорію для повзунка" - -#~ msgid "Number of slide items" -#~ msgstr "Кількість повзунків" - -#~ msgid "Enter the number of slide items" -#~ msgstr "Уведіть кількість повзунків" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "" -#~ "Оберіть, де за замовчуванням відображатиметься бічна панель: ліворуч чи " -#~ "праворуч? " - -#~ msgid "Element color" -#~ msgstr "Колір складника" - -#~ msgid "Element color on hover" -#~ msgstr "Колір сладника при наведенн" - -#~ msgid "Custom Favicon" -#~ msgstr "Власний ярличок сайту (Favicon)" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "" -#~ "Завантажте власний ярличок сайту (Favicon) - зображення розміром 32px х " -#~ "32px у форматі PNG/GIF." - -#~ msgid "Action Button" -#~ msgstr "Action Button" - -#~ msgid "Call For Action Text" -#~ msgstr "Текст Call for Action" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "Уведіть текст для розділу Call for Action" - -#~ msgid "Call For Action Button Title" -#~ msgstr "Текст кнопки Call for Action" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "Уведіть назву для розділу Call for Action" - -#~ msgid "CFA button link" -#~ msgstr "Посилання кнопки Call for Action" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "Уведіть адресу для кнопки Call for Action" - -#~ msgid "Call For Action Text Color" -#~ msgstr "Колір тексту Call for Action" - -#~ msgid "Call For Action Background Color" -#~ msgstr "Колір тла для Call for Action" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "Колір меж кнопки Call for Action" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "Колір текста кнопки Call for Action" - -#~ msgid "Typography" -#~ msgstr "Оформлення" - -#~ msgid "Main Body Text" -#~ msgstr "Основний шрифт" - -#~ msgid "Used in P tags" -#~ msgstr "Використаний у теґах

      (абзац)" - -#~ msgid "Heading Color" -#~ msgstr "Колір заголовку" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "Колір для усіх заголовків (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "Колір посилань" - -#~ msgid "Link:hover Color" -#~ msgstr "Колір посилань при наведенні" - -#~ msgid "Header" -#~ msgstr "Верхній колонтитул" - -#~ msgid "Top nav background color" -#~ msgstr "Колір тла верхнього меню" - -#~ msgid "Top nav item color" -#~ msgstr "Колір матеріалів складника меню" - -#~ msgid "Link color" -#~ msgstr "Колір посилання" - -#~ msgid "Top nav item hover color" -#~ msgstr "Колір текста складника мені під час наведення" - -#~ msgid "Link:hover color" -#~ msgstr "Колір посилання при наведенні" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "Колір тла меню другого рівня" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "Колір тла складника меню другого рівня під час наведення" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "Колір складника в меню другого рівня" - -#~ msgid "Dropdown item color" -#~ msgstr "Колір складника" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "Колір тексту меню другого рівня під час наведення" - -#~ msgid "Dropdown item hover color" -#~ msgstr "Колір тла складника в меню другого рівня" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "Колір тексту складника меню другого рівня під час наведення" - -#~ msgid "Footer widget area background color" -#~ msgstr "Колір фона тла стосунків нижнього колонтитулу" - -#~ msgid "Footer background color" -#~ msgstr "Колір тла нижнього колонтитула" - -#~ msgid "Footer text color" -#~ msgstr "Колір тексту нижнього колонтитула" - -#~ msgid "Footer link color" -#~ msgstr "Колір посилань нижнього колонтитула" - -#~ msgid "Footer information" -#~ msgstr "Інформація нижнього колонтутила" - -#~ msgid "Copyright text in footer" -#~ msgstr "Текст авторських прав у нижньому колонтитулі" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "Колір піктограми соціальних мереж у нижньому колонтитулі" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "Колір піктограми соціальних мереж у нижньому колонтитулі" - -#~ msgid "Social" -#~ msgstr "Соц. мережі" - -#~ msgid "Footer social icon color" -#~ msgstr "Колір піктограми соціальних мереж у нижньому колонтитулі" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "Додати повні посилання облікових записів у соціальних мережах" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgid "GitHub" -#~ msgstr "GitHub" - -#~ msgid "Search..." -#~ msgstr "Результат пошуку за запитом: %s" - -#~ msgid "Default used if no color is selected." -#~ msgstr "Если не выберите свой цвет, будет использовано стандартное значение" diff --git a/languages/zh_CN.mo b/languages/zh_CN.mo deleted file mode 100644 index 5e9d851..0000000 Binary files a/languages/zh_CN.mo and /dev/null differ diff --git a/languages/zh_CN.po b/languages/zh_CN.po deleted file mode 100644 index 5818808..0000000 --- a/languages/zh_CN.po +++ /dev/null @@ -1,941 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:38+0200\n" -"PO-Revision-Date: 2016-02-17 15:38+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: 神楽坂琴梨(Kagurazaka Kotori) \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 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "抱歉!找不到此页面" - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "这里好像什么都没有,请试试其他超链接或搜索" - -#: ../404.php:25 -msgid "Recent Posts" -msgstr "最新文章" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "常用分类" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "请查看文章月度归档 %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "归档" - -#: ../404.php:58 -msgid "Tags" -msgstr "标签" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "作者:%s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "日: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "月: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "年: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "边栏" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "相册" - -#: ../archive.php:45 -msgid "Images" -msgstr "图片" - -#: ../archive.php:48 -msgid "Videos" -msgstr "视频" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "引语" - -#: ../archive.php:54 -msgid "Links" -msgstr "链接" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "状态" - -#: ../archive.php:60 -msgid "Audios" -msgstr "音频" - -#: ../archive.php:63 -msgid "Chats" -msgstr "聊天" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "评论导航" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← 较旧的评论" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "较新的评论 →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "评论已关闭" - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "编辑" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "继续阅读" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "页面:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "找不到任何东西" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "准备好发表你的第一篇文章了吗? 按这里开始" - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "抱歉,没有符合的搜索结果,请尝试其他的关键词" - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "我们找不到你想要的东西,或许你可以尝试搜索下" - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "评论" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 条评论" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% 条评论" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "主菜单" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "侧边栏" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "左边栏" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "右边栏" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "搜索" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " 上一筆" - -#: ../image.php:23 -msgid "Next " -msgstr "下一筆 " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -msgid "Content Options" -msgstr "Sparkling 主题选项" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "显示文章摘要?" - -#: ../inc/customizer.php:85 -msgid "Display Comments on Static Pages?" -msgstr "在静态页面显示评论?" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "网站版式选项" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "若未选择颜色,则默认值将被使用" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "社交网站图标颜色" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "底部" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "其他" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "自定义CSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "附加CSS" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "帮助与支持文档" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "最好的联系我们的方式是通过支持问题报告bug" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Colorlib 支持论坛" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "感谢你对这个主题的喜爱,请..." - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "为这个主题评分" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "在Facebook上赞我们" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "在Twitter上关注我們" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "

      这篇文章被密码保护,请输入密码来浏览此文章

      " - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "密码:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "提交" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Theme by %1$s Powered by %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "文章导航" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "文章导航" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "分类目录" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "标题" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "最多显示分类目录数" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "启用文章计数" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "标题" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "最多显示文章数" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "关注我们" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "%s 的搜索结果:" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "搜索" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "搜索" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "搜索" - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "底部超链接" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "在 “%2$s” 上有 %1$s 条评论" - -#~ msgid ", " -#~ msgstr ", " - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "首页小工具 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "在首页显示" - -#~ msgid "Homepage Widget 2" -#~ msgstr "首页小工具 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "首页小工具 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "底部小工具 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "用于底部小工具" - -#~ msgid "Footer Widget 2" -#~ msgstr "底部小工具 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "底部小工具 3" - -#~ msgid "Theme Options" -#~ msgstr "Sparkling 主题选项" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "按下确定重设,目前所有的设置将会被清除" - -#~ msgid "Default options restored." -#~ msgstr "恢復成預設值" - -#~ msgid "Options saved." -#~ msgstr "已儲存" - -#~ msgid "No file chosen" -#~ msgstr "未选择文件" - -#~ msgid "Upload" -#~ msgstr "上传" - -#~ msgid "Remove" -#~ msgstr "删除" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "升級你的 WordPress 來獲得完整媒體支援" - -#~ msgid "View File" -#~ msgstr "查看文件" - -#~ msgid "No Repeat" -#~ msgstr "不重复" - -#~ msgid "Repeat Horizontally" -#~ msgstr "水平重复" - -#~ msgid "Repeat Vertically" -#~ msgstr "垂直重复" - -#~ msgid "Repeat All" -#~ msgstr "重复" - -#~ msgid "Top Left" -#~ msgstr "Top Left" - -#~ msgid "Top Center" -#~ msgstr "Top Center" - -#~ msgid "Top Right" -#~ msgstr "Top Right" - -#~ msgid "Middle Left" -#~ msgstr "Middle Left" - -#~ msgid "Middle Center" -#~ msgstr "Middle Center" - -#~ msgid "Middle Right" -#~ msgstr "Middle Right" - -#~ msgid "Bottom Left" -#~ msgstr "Bottom Left" - -#~ msgid "Bottom Center" -#~ msgstr "Bottom Center" - -#~ msgid "Bottom Right" -#~ msgstr "Bottom Right" - -#~ msgid "Scroll Normally" -#~ msgstr "滚动" - -#~ msgid "Fixed in Place" -#~ msgstr "固定位置" - -#~ msgid "Normal" -#~ msgstr "正常" - -#~ msgid "Italic" -#~ msgstr "斜体" - -#~ msgid "Bold" -#~ msgstr "粗体" - -#~ msgid "Bold Italic" -#~ msgstr "粗斜体" - -#~ msgid "Page %s" -#~ msgstr "Page %s" - -#~ msgid "Follow us on " -#~ msgstr "关注我们的" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Sparkling 文档" - -#~ msgid " Older posts" -#~ msgstr " 较旧的文章" - -#~ msgid "Newer posts " -#~ msgstr "较新的文章 " - -#~ msgid "Sparkling Categories" -#~ msgstr "Sparkling 分类目录" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling 热门文章小工具" - -#~ msgid "Popular Posts" -#~ msgstr "热门文章" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling 社交网络小工具" - -#~ msgid "One" -#~ msgstr "1" - -#~ msgid "Two" -#~ msgstr "2" - -#~ msgid "Three" -#~ msgstr "3" - -#~ msgid "Four" -#~ msgstr "4" - -#~ msgid "Five" -#~ msgstr "5" - -#~ msgid "French Toast" -#~ msgstr "French Toast" - -#~ msgid "Pancake" -#~ msgstr "Pancake" - -#~ msgid "Omelette" -#~ msgstr "Omelette" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Waffle" - -#~ msgid "Main" -#~ msgstr "主要" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "是否在首页显示图片轮播?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "显示图片轮播" - -#~ msgid "Slider Category" -#~ msgstr "图片轮播分类" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "为图片轮播选择文章分类" - -#~ msgid "Number of slide items" -#~ msgstr "图片数目" - -#~ msgid "Enter the number of slide items" -#~ msgstr "输入图片数目" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "Choose between Left and Right sidebar options to be used as default" - -#~ msgid "Element color" -#~ msgstr "元素颜色" - -#~ msgid "Element color on hover" -#~ msgstr "鼠标指针浮动于上时的元素颜色" - -#~ msgid "Custom Favicon" -#~ msgstr "自定义 Favicon" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "为网站上传 Favicon(32像素x32像素,PNG或GIF)" - -#~ msgid "Action Button" -#~ msgstr "动作按钮" - -#~ msgid "Call For Action Text" -#~ msgstr "动作文字" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "输入动作文字" - -#~ msgid "Call For Action Button Title" -#~ msgstr "动作按钮标题" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "输入动作按钮标题" - -#~ msgid "CFA button link" -#~ msgstr "动作按钮链接" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "输入动作按钮链接网址" - -#~ msgid "Call For Action Text Color" -#~ msgstr "动作按钮文字颜色" - -#~ msgid "Call For Action Background Color" -#~ msgstr "动作按钮背景颜色" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "动作按钮边框颜色" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "动作按钮文字颜色" - -#~ msgid "Typography" -#~ msgstr "字体" - -#~ msgid "Main Body Text" -#~ msgstr "主要文字颜色" - -#~ msgid "Used in P tags" -#~ msgstr "用于

      标签中" - -#~ msgid "Heading Color" -#~ msgstr "标题颜色" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "标题颜色 (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "链接颜色" - -#~ msgid "Link:hover Color" -#~ msgstr "链接颜色(鼠标指针浮动)" - -#~ msgid "Header" -#~ msgstr "顶部" - -#~ msgid "Top nav background color" -#~ msgstr "顶部导航条背景颜色" - -#~ msgid "Top nav item color" -#~ msgstr "顶部导航条项目颜色" - -#~ msgid "Link color" -#~ msgstr "链接颜色" - -#~ msgid "Top nav item hover color" -#~ msgstr "顶部导航条项目颜色(鼠标指针浮动)" - -#~ msgid "Link:hover color" -#~ msgstr "链接颜色(鼠标指针浮动)" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "顶部导航条下拉菜单背景颜色" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "下拉菜单项目背景颜色(鼠标指针浮动)" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "顶部导航条下拉菜单项目颜色" - -#~ msgid "Dropdown item color" -#~ msgstr "下拉菜单项目颜色" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "顶部导航条下拉菜单项目颜色(鼠标指针浮动)" - -#~ msgid "Dropdown item hover color" -#~ msgstr "下拉菜单项目颜色(鼠标指针浮动)" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "顶部导航条下拉菜单项目背景颜色(鼠标指针浮动)" - -#~ msgid "Footer widget area background color" -#~ msgstr "底部小工具背景颜色" - -#~ msgid "Footer background color" -#~ msgstr "底部背景颜色" - -#~ msgid "Footer text color" -#~ msgstr "底部文字颜色" - -#~ msgid "Footer link color" -#~ msgstr "底部链接颜色" - -#~ msgid "Footer information" -#~ msgstr "底部信息" - -#~ msgid "Copyright text in footer" -#~ msgstr "底部版权宣告文字" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "底部社交网站图标颜色" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "底部社交网站图标颜色" - -#~ msgid "Social" -#~ msgstr "社交网站" - -#~ msgid "Footer social icon color" -#~ msgstr "底部社交网站图标颜色" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "请输入您社交网站页面的完整地址" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgid "GitHub" -#~ msgstr "GitHub" - -#~ msgid "Spotify" -#~ msgstr "Spotify" - -#~ msgid "Search..." -#~ msgstr "搜索..." diff --git a/languages/zh_tw.mo b/languages/zh_tw.mo deleted file mode 100644 index 9908142..0000000 Binary files a/languages/zh_tw.mo and /dev/null differ diff --git a/languages/zh_tw.po b/languages/zh_tw.po deleted file mode 100644 index 270f943..0000000 --- a/languages/zh_tw.po +++ /dev/null @@ -1,940 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: aether Theme\n" -"POT-Creation-Date: 2016-02-17 15:38+0200\n" -"PO-Revision-Date: 2016-02-17 15:38+0200\n" -"Last-Translator: Aigars Silkalns \n" -"Language-Team: 楊舒淳 Chaneswin \n" -"Language: zh_TW\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7\n" -"X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Poedit-KeywordsList: _e;__;esc_attr__;esc_html__;esc_html_e;" -"esc_attr_x:1,2c;_nx:4c,1,2;_n:1,2\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPath-1: ..\n" - -#: ../404.php:15 -msgid "Oops! That page can’t be found." -msgstr "抱歉!找不到此頁面。" - -#: ../404.php:19 -msgid "" -"It looks like nothing was found at this location. Maybe try one of the links " -"below or a search?" -msgstr "這裡好像什麼都沒有,請試試其他超連結或搜尋" - -#: ../404.php:25 -msgid "Recent Posts" -msgstr "最新文章" - -#: ../404.php:31 -msgid "Most Used Categories" -msgstr "常用分類" - -#: ../404.php:52 -#, php-format -msgid "Try looking in the monthly archives. %1$s" -msgstr "請查看文章彙整 %1$s" - -#: ../404.php:53 ../archive.php:66 ../sidebar.php:31 -msgid "Archives" -msgstr "彙整" - -#: ../404.php:58 -msgid "Tags" -msgstr "標籤" - -#: ../archive.php:27 -#, php-format -msgid "Author: %s" -msgstr "作者:%s" - -#: ../archive.php:30 -#, php-format -msgid "Day: %s" -msgstr "日: %s" - -#: ../archive.php:33 -#, php-format -msgid "Month: %s" -msgstr "月: %s" - -#: ../archive.php:36 -#, php-format -msgid "Year: %s" -msgstr "年: %s" - -#: ../archive.php:39 -msgid "Asides" -msgstr "邊欄" - -#: ../archive.php:42 -msgid "Galleries" -msgstr "藝廊" - -#: ../archive.php:45 -msgid "Images" -msgstr "圖片" - -#: ../archive.php:48 -msgid "Videos" -msgstr "影片" - -#: ../archive.php:51 -msgid "Quotes" -msgstr "Quotes" - -#: ../archive.php:54 -msgid "Links" -msgstr "連結" - -#: ../archive.php:57 -msgid "Statuses" -msgstr "狀態" - -#: ../archive.php:60 -msgid "Audios" -msgstr "聲音" - -#: ../archive.php:63 -msgid "Chats" -msgstr "聊天" - -#: ../comments.php:28 -#, php-format -msgctxt "comments title" -msgid "1 Comment" -msgid_plural "%1$s Comment" -msgstr[0] "" - -#: ../comments.php:35 ../comments.php:54 -msgid "Comment navigation" -msgstr "留言導覽" - -#: ../comments.php:36 ../comments.php:55 -msgid "← Older Comments" -msgstr "← 較舊的留言" - -#: ../comments.php:37 ../comments.php:56 -msgid "Newer Comments →" -msgstr "較新的留言 →" - -#: ../comments.php:66 -msgid "Comments are closed." -msgstr "留言功能已關閉" - -#: ../comments.php:77 -msgid "Name" -msgstr "" - -#: ../comments.php:81 -msgid "Email" -msgstr "" - -#: ../comments.php:85 -msgid "Website" -msgstr "" - -#: ../comments.php:94 -msgid "Post Reply" -msgstr "" - -#: ../content-grid.php:16 ../content-page.php:32 ../inc/extras.php:252 -msgid "Edit" -msgstr "編輯" - -#: ../content-grid.php:28 ../content.php:41 ../content.php:67 -#: ../inc/extras.php:137 -msgid "Read More" -msgstr "繼續閱讀" - -#: ../content-grid.php:37 ../content-page.php:21 ../content-single.php:43 -#: ../content.php:56 ../image.php:79 -msgid "Pages:" -msgstr "頁面:" - -#: ../content-none.php:13 -msgid "Nothing Found" -msgstr "找不到東西" - -#: ../content-none.php:19 -#, php-format -msgid "" -"Ready to publish your first post? Get started here." -msgstr "準備好發表你的第一篇文章了嗎?按這裡開始" - -#: ../content-none.php:23 -msgid "" -"Sorry, but nothing matched your search terms. Please try again with some " -"different keywords." -msgstr "抱歉,沒有符合的搜尋結果,請試試不同的關鍵字" - -#: ../content-none.php:28 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "我們找不到你要的東西,請試試其他搜尋" - -#: ../content-single.php:21 ../content.php:22 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../content-single.php:55 ../content.php:73 -msgid "Leave a comment" -msgstr "留言" - -#: ../content-single.php:55 -msgid "Comment (1)" -msgstr "" - -#: ../content-single.php:55 -msgid "Comments (%)" -msgstr "" - -#: ../content.php:73 -msgid "1 Comment" -msgstr "1 Comment" - -#: ../content.php:73 -msgid "% Comments" -msgstr "% 筆留言" - -#: ../functions.php:71 -msgid "Primary Menu" -msgstr "主選單" - -#: ../functions.php:112 -msgid "Sidebar" -msgstr "側欄" - -#: ../functions.php:226 -msgid "Left Sidebar" -msgstr "左側邊欄" - -#: ../functions.php:226 -msgid "Right Sidebar" -msgstr "右側邊欄" - -#: ../functions.php:226 -msgid "No Sidebar" -msgstr "" - -#: ../functions.php:226 -msgid "Full Width" -msgstr "" - -#: ../functions.php:228 -msgid "Logo Only" -msgstr "" - -#: ../functions.php:229 -msgid "Logo + Tagline" -msgstr "" - -#: ../functions.php:230 -msgid "Title Only" -msgstr "" - -#: ../functions.php:231 -msgid "Title + Tagline" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -msgid "Search" -msgstr "" - -#: ../functions.php:266 ../searchform.php:14 -#, fuzzy -msgctxt "submit button" -msgid "Search" -msgstr "搜索" - -#: ../header.php:40 -msgid "Toggle navigation" -msgstr "" - -#: ../image.php:22 -msgid " Previous" -msgstr " 上一筆" - -#: ../image.php:23 -msgid "Next " -msgstr "下一筆 " - -#: ../inc/customizer.php:30 -msgid "Logo" -msgstr "" - -#: ../inc/customizer.php:44 -msgid "Show" -msgstr "" - -#: ../inc/customizer.php:53 -msgid "aether Options" -msgstr "" - -#: ../inc/customizer.php:54 -msgid "Panel to update aether theme options" -msgstr "" - -#: ../inc/customizer.php:60 -#, fuzzy -msgid "Content Options" -msgstr "Sparkling 佈景主題選項" - -#: ../inc/customizer.php:73 -msgid "Show post excerpts?" -msgstr "" - -#: ../inc/customizer.php:85 -#, fuzzy -msgid "Display Comments on Static Pages?" -msgstr "在首頁顯示" - -#: ../inc/customizer.php:94 -msgid "Slider Option" -msgstr "" - -#: ../inc/customizer.php:127 -msgid "Layout options" -msgstr "" - -#: ../inc/customizer.php:138 -msgid "Website Layout Options" -msgstr "網站版型選項" - -#: ../inc/customizer.php:141 -msgid "Choose between different layout options to be used as default" -msgstr "" - -#: ../inc/customizer.php:150 -msgid "Accent Color" -msgstr "" - -#: ../inc/customizer.php:151 ../inc/customizer.php:161 -#: ../inc/customizer.php:171 -msgid "Default used if no color is selected" -msgstr "沒有選擇顏色就使用預設值" - -#: ../inc/customizer.php:160 -msgid "Social icon color" -msgstr "社群圖示顏色" - -#: ../inc/customizer.php:170 -msgid "Social Icon:hover Color" -msgstr "" - -#: ../inc/customizer.php:177 -msgid "Footer" -msgstr "頁尾" - -#: ../inc/customizer.php:195 -msgid "Other" -msgstr "其他" - -#: ../inc/customizer.php:204 -msgid "Custom CSS" -msgstr "自訂CSS" - -#: ../inc/customizer.php:205 -msgid "Additional CSS" -msgstr "外加的CSS" - -#: ../inc/customizer.php:213 -msgid "Support and Documentation" -msgstr "支援與輔助文件" - -#: ../inc/customizer.php:356 -msgid "aether Documentation" -msgstr "" - -#: ../inc/customizer.php:357 -msgid "" -"The best way to contact us with support questions and bug reports is via" -msgstr "聯絡我們以回報問題與提問的最好方式是用" - -#: ../inc/customizer.php:357 -msgid "Colorlib support forum" -msgstr "Colorlib 支援論壇" - -#: ../inc/customizer.php:358 -msgid "If you like this theme, I'd appreciate any of the following:" -msgstr "謝謝你喜歡這個佈景主題,請..." - -#: ../inc/customizer.php:360 -msgid "Rate this Theme" -msgstr "為這個主題評分" - -#: ../inc/customizer.php:361 -msgid "Like on Facebook" -msgstr "在 Facebook 幫我們按讚" - -#: ../inc/customizer.php:362 -msgid "Follow on Twitter" -msgstr "在 Twitter 關注我們" - -#: ../inc/extras.php:54 -msgid "Untitled" -msgstr "" - -#: ../inc/extras.php:71 -msgid "" -"

      This post is password protected. To view it please enter your password " -"below:

      " -msgstr "請輸入密碼後才能觀看此文章" - -#: ../inc/extras.php:72 -msgid "Password:" -msgstr "密碼:" - -#: ../inc/extras.php:75 -msgid "Submit" -msgstr "送出" - -#: ../inc/extras.php:158 -#, php-format -msgid "Theme by %1$s Powered by %2$s" -msgstr "Theme by %1$s Powered by %2$s" - -#: ../inc/extras.php:246 -#, php-format -msgid "%s says:" -msgstr "" - -#: ../inc/extras.php:252 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: ../inc/extras.php:259 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: ../inc/metaboxes.php:16 -msgid "" -"Select layout for this specific Page only ( Note: This setting only reflects " -"if page Template is set as Default Template and Blog Type Templates.)" -msgstr "" - -#: ../inc/metaboxes.php:21 -msgid "Select layout for this specific Post only" -msgstr "" - -#: ../inc/metaboxes.php:28 -msgid "Select layout for this specific Product only" -msgstr "" - -#: ../inc/metaboxes.php:58 -msgid "Default" -msgstr "" - -#: ../inc/navwalker.php:196 -msgid "Add a menu" -msgstr "" - -#: ../inc/template-tags.php:23 -msgid "Posts navigation" -msgstr "文章導覽" - -#: ../inc/template-tags.php:27 -msgid "Older posts" -msgstr "" - -#: ../inc/template-tags.php:31 -msgid "Newer posts" -msgstr "" - -#: ../inc/template-tags.php:56 -msgid "Post navigation" -msgstr "文章導覽" - -#: ../inc/template-tags.php:86 -msgid "Posted on" -msgstr "" - -#: ../inc/widgets/widget-categories.php:11 -msgid "aether widget to display categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:12 -msgid "aether Categories" -msgstr "" - -#: ../inc/widgets/widget-categories.php:17 -#: ../inc/widgets/widget-categories.php:76 -msgid "Categories" -msgstr "分類" - -#: ../inc/widgets/widget-categories.php:83 ../inc/widgets/widget-social.php:49 -msgid "Title " -msgstr "標題" - -#: ../inc/widgets/widget-categories.php:91 -msgid "Limit Categories " -msgstr "最多顯示幾個分類?" - -#: ../inc/widgets/widget-categories.php:104 -msgid "Enable Posts Count" -msgstr "啟用文章計數" - -#: ../inc/widgets/widget-recent-posts.php:11 -msgid "aether recent posts widget with thumbnails" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:12 -msgid "aether Recent Posts Widget" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:17 -#: ../inc/widgets/widget-recent-posts.php:91 -msgid "recent Posts" -msgstr "" - -#: ../inc/widgets/widget-recent-posts.php:96 -msgid "Title" -msgstr "標題" - -#: ../inc/widgets/widget-recent-posts.php:104 -msgid "Limit Posts Number" -msgstr "最多顯示幾篇文章?" - -#: ../inc/widgets/widget-social.php:11 -msgid "aether theme widget to display social media icons" -msgstr "" - -#: ../inc/widgets/widget-social.php:12 -msgid "aether Social Widget" -msgstr "" - -#: ../inc/widgets/widget-social.php:17 ../inc/widgets/widget-social.php:46 -msgid "Follow us" -msgstr "關注我們" - -#: ../search.php:16 -#, php-format -msgid "Search Results for: %s" -msgstr "%s 的搜尋結果:" - -#: ../searchform.php:11 -#, fuzzy -msgid "Search for:" -msgstr "尋找..." - -#: ../searchform.php:12 -#, fuzzy -msgctxt "placeholder" -msgid "Search…" -msgstr "搜索" - -#: ../searchform.php:12 -#, fuzzy -msgctxt "label" -msgid "Search for:" -msgstr "尋找..." - -#: ../sidebar.php:38 -msgid "Meta" -msgstr "Meta" - -#~ msgid "Footer Links" -#~ msgstr "頁尾超連結" - -#~ msgctxt "comments title" -#~ msgid "One thought on “%2$s”" -#~ msgid_plural "%1$s thoughts on “%2$s”" -#~ msgstr[0] "在 “%2$s” 有 %1$s 則留言" - -#~ msgid ", " -#~ msgstr ", " - -#~ msgid " %1$s" -#~ msgstr " %1$s" - -#~ msgid "Homepage Widget 1" -#~ msgstr "首頁小工具 1" - -#~ msgid "Displays on the Home Page" -#~ msgstr "在首頁顯示" - -#~ msgid "Homepage Widget 2" -#~ msgstr "首頁小工具 2" - -#~ msgid "Homepage Widget 3" -#~ msgstr "首頁小工具 3" - -#~ msgid "Footer Widget 1" -#~ msgstr "頁尾小工具 1" - -#~ msgid "Used for footer widget area" -#~ msgstr "用於頁尾小工具" - -#~ msgid "Footer Widget 2" -#~ msgstr "頁尾小工具 2" - -#~ msgid "Footer Widget 3" -#~ msgstr "頁尾小工具 3" - -#~ msgid "Theme Options" -#~ msgstr "Sparkling 佈景主題選項" - -#~ msgid "Click OK to reset. Any theme settings will be lost!" -#~ msgstr "按下確定重設,現在的所有設定都會被清除" - -#~ msgid "Default options restored." -#~ msgstr "恢復成預設值" - -#~ msgid "Options saved." -#~ msgstr "已儲存" - -#~ msgid "No file chosen" -#~ msgstr "沒有選擇檔案" - -#~ msgid "Upload" -#~ msgstr "上傳" - -#~ msgid "Remove" -#~ msgstr "移除" - -#~ msgid "Upgrade your version of WordPress for full media support." -#~ msgstr "升級你的 WordPress 來獲得完整媒體支援" - -#~ msgid "View File" -#~ msgstr "查看檔案" - -#~ msgid "No Repeat" -#~ msgstr "不重複" - -#~ msgid "Repeat Horizontally" -#~ msgstr "水平重複" - -#~ msgid "Repeat Vertically" -#~ msgstr "垂直重複" - -#~ msgid "Repeat All" -#~ msgstr "重複" - -#~ msgid "Top Left" -#~ msgstr "Top Left" - -#~ msgid "Top Center" -#~ msgstr "Top Center" - -#~ msgid "Top Right" -#~ msgstr "Top Right" - -#~ msgid "Middle Left" -#~ msgstr "Middle Left" - -#~ msgid "Middle Center" -#~ msgstr "Middle Center" - -#~ msgid "Middle Right" -#~ msgstr "Middle Right" - -#~ msgid "Bottom Left" -#~ msgstr "Bottom Left" - -#~ msgid "Bottom Center" -#~ msgstr "Bottom Center" - -#~ msgid "Bottom Right" -#~ msgstr "Bottom Right" - -#~ msgid "Scroll Normally" -#~ msgstr "捲動" - -#~ msgid "Fixed in Place" -#~ msgstr "固定位置" - -#~ msgid "Normal" -#~ msgstr "正常" - -#~ msgid "Italic" -#~ msgstr "斜體" - -#~ msgid "Bold" -#~ msgstr "粗體" - -#~ msgid "Bold Italic" -#~ msgstr "粗斜體" - -#~ msgid "Page %s" -#~ msgstr "Page %s" - -#~ msgid "Follow us on " -#~ msgstr "關注我們的" - -#~ msgid "Sparkling Documentation" -#~ msgstr "Sparkling 輔助文件" - -#~ msgid " Older posts" -#~ msgstr " 較舊的文章" - -#~ msgid "Newer posts " -#~ msgstr "較新的文章 " - -#~ msgid "Sparkling Categories" -#~ msgstr "Sparkling 分類" - -#~ msgid "Sparkling Popular Posts Widget" -#~ msgstr "Sparkling 熱門文章小工具" - -#~ msgid "Popular Posts" -#~ msgstr "熱門文章" - -#~ msgid "Sparkling Social Widget" -#~ msgstr "Sparkling 社群小工具" - -#~ msgid "One" -#~ msgstr "1" - -#~ msgid "Two" -#~ msgstr "2" - -#~ msgid "Three" -#~ msgstr "3" - -#~ msgid "Four" -#~ msgstr "4" - -#~ msgid "Five" -#~ msgstr "5" - -#~ msgid "French Toast" -#~ msgstr "French Toast" - -#~ msgid "Pancake" -#~ msgstr "Pancake" - -#~ msgid "Omelette" -#~ msgstr "Omelette" - -#~ msgid "Crepe" -#~ msgstr "Crepe" - -#~ msgid "Waffle" -#~ msgstr "Waffle" - -#~ msgid "Main" -#~ msgstr "主要" - -#~ msgid "Do You want to display image slider on the Home Page?" -#~ msgstr "是否在首頁側欄顯示圖片?" - -#~ msgid "Check if you want to enable slider" -#~ msgstr "是否顯示側欄?" - -#~ msgid "Slider Category" -#~ msgstr "側欄分類" - -#~ msgid "Select a category for the featured post slider" -#~ msgstr "為特色文章秀選擇分類" - -#~ msgid "Number of slide items" -#~ msgstr "投影片數量" - -#~ msgid "Enter the number of slide items" -#~ msgstr "輸入投影片數量" - -#~ msgid "Choose between Left and Right sidebar options to be used as default" -#~ msgstr "Choose between Left and Right sidebar options to be used as default" - -#~ msgid "Element color" -#~ msgstr "元素顏色" - -#~ msgid "Element color on hover" -#~ msgstr "滑鼠滑入時的元素顏色" - -#~ msgid "Custom Favicon" -#~ msgstr "自訂 Favicon" - -#~ msgid "" -#~ "Upload a 32px x 32px PNG/GIF image that will represent your websites " -#~ "favicon" -#~ msgstr "為你的網站上傳 Favicon(32像素x32像素,PNG或GIF)" - -#~ msgid "Action Button" -#~ msgstr "呼籲行動按鈕" - -#~ msgid "Call For Action Text" -#~ msgstr "呼籲行動文字" - -#~ msgid "Enter the text for call for action section" -#~ msgstr "輸入呼籲行動文字" - -#~ msgid "Call For Action Button Title" -#~ msgstr "呼籲行動按鈕標題" - -#~ msgid "Enter the title for Call For Action button" -#~ msgstr "輸入呼籲行動按鈕標題" - -#~ msgid "CFA button link" -#~ msgstr "呼籲行動按鈕連結" - -#~ msgid "Enter the link for Call For Action button" -#~ msgstr "輸入呼籲行動按鈕連結網址" - -#~ msgid "Call For Action Text Color" -#~ msgstr "呼籲行動文字的顏色" - -#~ msgid "Call For Action Background Color" -#~ msgstr "呼籲行動的背景色" - -#~ msgid "Call For Action Button Border Color" -#~ msgstr "呼籲行動按鈕的邊框顏色" - -#~ msgid "Call For Action Button Text Color" -#~ msgstr "呼籲行動按鈕的文字顏色" - -#~ msgid "Typography" -#~ msgstr "Typography" - -#~ msgid "Main Body Text" -#~ msgstr "主要文字顏色" - -#~ msgid "Used in P tags" -#~ msgstr "用於

      段落標籤" - -#~ msgid "Heading Color" -#~ msgstr "標題顏色" - -#~ msgid "Color for all headings (h1-h6)" -#~ msgstr "標題顏色 (h1-h6)" - -#~ msgid "Link Color" -#~ msgstr "超連結顏色" - -#~ msgid "Link:hover Color" -#~ msgstr "超連結顏色(滑鼠滑入)" - -#~ msgid "Header" -#~ msgstr "頁首" - -#~ msgid "Top nav background color" -#~ msgstr "上方導覽列背景色" - -#~ msgid "Top nav item color" -#~ msgstr "上方導覽列項目顏色" - -#~ msgid "Link color" -#~ msgstr "超連結顏色" - -#~ msgid "Top nav item hover color" -#~ msgstr "上方導覽列項目顏色(滑鼠滑入)" - -#~ msgid "Link:hover color" -#~ msgstr "超連結顏色(滑鼠滑入)" - -#~ msgid "Top nav dropdown background color" -#~ msgstr "上方導覽列下拉式選單背景色" - -#~ msgid "Background of dropdown item hover color" -#~ msgstr "下拉式選單項目背景色(滑鼠滑入)" - -#~ msgid "Top nav dropdown item color" -#~ msgstr "上方導覽列下拉式選單項目顏色" - -#~ msgid "Dropdown item color" -#~ msgstr "下拉式選單項目色彩" - -#~ msgid "Top nav dropdown item hover color" -#~ msgstr "上方導覽列下拉式選單項目顏色(滑鼠滑入)" - -#~ msgid "Dropdown item hover color" -#~ msgstr "下拉式選單項目色彩(滑鼠滑入)" - -#~ msgid "Top nav dropdown item background hover color" -#~ msgstr "上方導覽列下拉式選單項目背景色(滑鼠滑入)" - -#~ msgid "Footer widget area background color" -#~ msgstr "頁尾 widget 背景色" - -#~ msgid "Footer background color" -#~ msgstr "頁尾背景色" - -#~ msgid "Footer text color" -#~ msgstr "頁尾文字顏色" - -#~ msgid "Footer link color" -#~ msgstr "頁尾超連結顏色" - -#~ msgid "Footer information" -#~ msgstr "頁尾資訊" - -#~ msgid "Copyright text in footer" -#~ msgstr "頁尾版權宣告文字" - -#, fuzzy -#~ msgid "Footer Social Icons" -#~ msgstr "頁尾社群圖示顏色" - -#, fuzzy -#~ msgid "Show/Hide social icons in footer" -#~ msgstr "頁尾社群圖示顏色" - -#~ msgid "Social" -#~ msgstr "社群" - -#~ msgid "Footer social icon color" -#~ msgstr "頁尾社群圖示顏色" - -#~ msgid "Add full URL for your social network profiles" -#~ msgstr "請輸入您社群頁面的完整網址" - -#~ msgid "Facebook" -#~ msgstr "Facebook" - -#~ msgid "Twitter" -#~ msgstr "Twitter" - -#~ msgid "Google+" -#~ msgstr "Google+" - -#~ msgid "Youtube" -#~ msgstr "Youtube" - -#~ msgid "Vimeo" -#~ msgstr "Vimeo" - -#~ msgid "LinkedIn" -#~ msgstr "LinkedIn" - -#~ msgid "Pinterest" -#~ msgstr "Pinterest" - -#~ msgid "RSS Feed" -#~ msgstr "RSS Feed" - -#~ msgid "Tumblr" -#~ msgstr "Tumblr" - -#~ msgid "Flickr" -#~ msgstr "Flickr" - -#~ msgid "Instagram" -#~ msgstr "Instagram" - -#~ msgid "Dribbble" -#~ msgstr "Dribbble" - -#~ msgid "Skype" -#~ msgstr "Skype" - -#~ msgid "Foursquare" -#~ msgstr "Foursquare" - -#~ msgid "SoundCloud" -#~ msgstr "SoundCloud" - -#~ msgid "GitHub" -#~ msgstr "GitHub" - -#~ msgid "Search..." -#~ msgstr "尋找..." diff --git a/inc/media/128x128.svg b/media/128x128.svg similarity index 91% rename from inc/media/128x128.svg rename to media/128x128.svg index 4cde045..0d6f2a2 100644 --- a/inc/media/128x128.svg +++ b/media/128x128.svg @@ -1,80 +1,80 @@ + inkscape:window-width="3840" + inkscape:window-height="2045" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1"> image/svg+xml - + diff --git a/inc/media/16x16.svg b/media/16x16.svg similarity index 96% rename from inc/media/16x16.svg rename to media/16x16.svg index def84a8..23c81ac 100644 --- a/inc/media/16x16.svg +++ b/media/16x16.svg @@ -1,80 +1,80 @@ image/svg+xml - + diff --git a/inc/media/180x180.png b/media/180x180.png similarity index 100% rename from inc/media/180x180.png rename to media/180x180.png diff --git a/inc/media/192x192.png b/media/192x192.png similarity index 100% rename from inc/media/192x192.png rename to media/192x192.png diff --git a/inc/media/24x24.svg b/media/24x24.svg similarity index 95% rename from inc/media/24x24.svg rename to media/24x24.svg index 4aaf156..9ae032f 100644 --- a/inc/media/24x24.svg +++ b/media/24x24.svg @@ -1,80 +1,80 @@ image/svg+xml - + diff --git a/inc/media/32x32.svg b/media/32x32.svg similarity index 95% rename from inc/media/32x32.svg rename to media/32x32.svg index 9d6e98a..b7c5145 100644 --- a/inc/media/32x32.svg +++ b/media/32x32.svg @@ -1,80 +1,80 @@ image/svg+xml - + diff --git a/inc/media/64x64.svg b/media/64x64.svg similarity index 95% rename from inc/media/64x64.svg rename to media/64x64.svg index 72e39b0..a7cfd92 100644 --- a/inc/media/64x64.svg +++ b/media/64x64.svg @@ -1,80 +1,80 @@ image/svg+xml - + diff --git a/media/background.svg b/media/background.svg new file mode 100644 index 0000000..49d3716 --- /dev/null +++ b/media/background.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/media/folder.svg b/media/folder.svg new file mode 100644 index 0000000..9b146fe --- /dev/null +++ b/media/folder.svg @@ -0,0 +1,256 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/media/patrons/blue-systems.svg b/media/patrons/blue-systems.svg new file mode 100644 index 0000000..542f282 --- /dev/null +++ b/media/patrons/blue-systems.svg @@ -0,0 +1,265 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/media/patrons/canonical.svg b/media/patrons/canonical.svg new file mode 100644 index 0000000..9391329 --- /dev/null +++ b/media/patrons/canonical.svg @@ -0,0 +1,3 @@ + + +image/svg+xml diff --git a/media/patrons/google.svg b/media/patrons/google.svg new file mode 100644 index 0000000..de15985 --- /dev/null +++ b/media/patrons/google.svg @@ -0,0 +1,3 @@ + + +image/svg+xml diff --git a/media/patrons/privateinternetaccess.svg b/media/patrons/privateinternetaccess.svg new file mode 100644 index 0000000..862e716 --- /dev/null +++ b/media/patrons/privateinternetaccess.svg @@ -0,0 +1,3 @@ + + +image/svg+xml diff --git a/media/patrons/qt-company.svg b/media/patrons/qt-company.svg new file mode 100644 index 0000000..d7e5856 --- /dev/null +++ b/media/patrons/qt-company.svg @@ -0,0 +1,173 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/media/patrons/suse.svg b/media/patrons/suse.svg new file mode 100644 index 0000000..4c91d9b --- /dev/null +++ b/media/patrons/suse.svg @@ -0,0 +1,3 @@ + + +image/svg+xml diff --git a/media/search.svg b/media/search.svg new file mode 100644 index 0000000..933d519 --- /dev/null +++ b/media/search.svg @@ -0,0 +1,280 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/x.svg b/media/x.svg new file mode 100644 index 0000000..1a778e8 --- /dev/null +++ b/media/x.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/page-fullwidth.php b/page-fullwidth.php deleted file mode 100644 index fb69648..0000000 --- a/page-fullwidth.php +++ /dev/null @@ -1,35 +0,0 @@ - - -

      - -
      - - - - - - - - - -
      - -
      - - diff --git a/page.php b/page.php index 99308c7..fdc2c49 100644 --- a/page.php +++ b/page.php @@ -1,38 +1,57 @@ -get_header(); ?> +
      > +

      +
      -
      + + get_template_part( 'parts/content-start' ); - +?> - +
      + + +
      +
      > +
      +
      +
      +
      + + + if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) { + comment_form(); + } + + endwhile; + +?> + +
      + -
      + get_template_part( 'parts/content-end' ); + get_footer(); - - diff --git a/parts/content-end.php b/parts/content-end.php new file mode 100644 index 0000000..195f553 --- /dev/null +++ b/parts/content-end.php @@ -0,0 +1,9 @@ +'; +} diff --git a/parts/content-start.php b/parts/content-start.php new file mode 100644 index 0000000..0d8436b --- /dev/null +++ b/parts/content-start.php @@ -0,0 +1,9 @@ +'; +} diff --git a/parts/list-excerpt.php b/parts/list-excerpt.php new file mode 100644 index 0000000..6e7d224 --- /dev/null +++ b/parts/list-excerpt.php @@ -0,0 +1,88 @@ + +
      > +

      +
      + +
      + + + +
      > +
      +
      +
      + +

      + + + + +
      + + + 'single-featured' )); ?> + + + +
      + +

      +
      + +
      + + + + '', + 'link_before' => '', + 'link_after' => '', + 'pagelink' => '%', + 'echo' => 1 + ) ); + ?> + + +
      + +
      + + + + + +
      + +
      +
      +
      + diff --git a/search-noresults.php b/search-noresults.php new file mode 100644 index 0000000..6cb33c7 --- /dev/null +++ b/search-noresults.php @@ -0,0 +1,24 @@ + + +
      +
      + +

      +
      +
      + + diff --git a/search-resultlist.php b/search-resultlist.php new file mode 100644 index 0000000..9cd5c4f --- /dev/null +++ b/search-resultlist.php @@ -0,0 +1,47 @@ + + +
      + +
      + +
      + + __( 'Previous page', 'aether' ), + 'next_text' => __( 'Next page', 'aether' ), + 'show_all' => true, + ) ); +?> + +
      + + - -
      -
      - - - - - - - - - - - - - - - - - - - - -
      -
      - - - + + ae_use_custom_content_bookends(); + get_header(); + + if (have_posts()) { + get_template_part( 'search-resultlist' ); + } + else { + get_template_part( 'search-noresults' ); + } + + get_footer(); diff --git a/searchform.php b/searchform.php index 843a3f6..93ccde9 100644 --- a/searchform.php +++ b/searchform.php @@ -1,17 +1,30 @@ - diff --git a/sidebar.php b/sidebar.php index e492f09..ce4d761 100644 --- a/sidebar.php +++ b/sidebar.php @@ -1,46 +1,40 @@ - - - ID, 'site_layout', true) ) ){ - if( get_post_meta($post->ID, 'site_layout', true) == 'no-sidebar' || get_post_meta($post->ID, 'site_layout', true) == 'full-width' ) { - $show_sidebar = false; - } - } - elseif( get_theme_mod( 'aether_sidebar_position' ) == "no-sidebar" || get_theme_mod( 'aether_sidebar_position' ) == "full-width" ) { - $show_sidebar = false; - } ?> - - - + + + diff --git a/single-post.php b/single-post.php new file mode 100644 index 0000000..ece1c5a --- /dev/null +++ b/single-post.php @@ -0,0 +1,66 @@ + + +
      > +

      + +
      + + + +
      + + + +
      +
      > +
      + +
      + +
      + +
      +
      +
      + + + +
      + -get_header(); ?> +
      > +

      + +
      -
      -
      + + get_template_part( 'parts/content-start' ); - +?> - +
      +
      +
      -
      + - - + + + +
      + +
      + + + + + + + + + + + + + p:first-child { margin-top: 0; } * > p:last-child { margin-bottom: 0; } blockquote { position: relative; border: 0; padding: 0 0 0 50px; font-style: italic; line-height: 1.6; } blockquote:before { content: "\201D"; color: #4080FF; font-size: 80px; position: absolute; left: 5px; top: 0; line-height: 1; } blockquote p { margin: 0; } img { height: auto; /* Make sure images are scaled correctly. */ max-width: 100%; /* Adhere to container width. */ } button, input, select, textarea { font-family: 'Noto Sans', sans-serif; font-size: 100%; /* Corrects font size not being inherited in all browsers */ margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */ vertical-align: baseline; /* Improves appearance and consistency in all browsers */ *vertical-align: middle; /* Improves appearance and consistency in all browsers */ } input[type="checkbox"], input[type="radio"] { padding: 0; /* Addresses excess padding in IE8/9 */ } input[type="search"] { -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */ -webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */ -moz-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */ -webkit-appearance: none; } button::-moz-focus-inner, input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */ border: 0; padding: 0; } input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="search"], textarea { color: #666; border: 1px solid #E8E8E8; border-radius: 3px; } input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, textarea:focus { color: #111; } textarea { overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */ padding-left: 3px; vertical-align: top; /* Improves readability and alignment in all browsers */ width: 100%; } /* Alignment */ .alignleft { display: inline; float: left; margin-right: 1.5em; } .alignright { display: inline; float: right; margin-left: 1.5em; } .aligncenter { clear: both; display: block; margin: 0 auto; } /* Text meant only for screen readers */ .screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; } .screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus { background-color: #f1f1f1; border-radius: 3px; box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); clip: auto !important; color: #4080FF; display: block; font-size: 14px; font-weight: bold; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; /* Above WP toolbar */ } /* Clearing floats */ .clear:before, .clear:after, .gallery:before, .gallery:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after, .home-widget-area:before { content: ''; display: table; } .clear:after, .entry-content:after, .gallery:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after, .home-widget-area:before { clear: both; } /* =Content ----------------------------------------------- */ .sticky { } .hentry { margin: 0; } .byline, .updated { display: none; } .single .byline, .group-blog .byline { display: inline; margin-right: 0; } .single article.post { margin-bottom: 50px; } .page-content, .entry-content, .entry-summary { margin: 20px 0 0; } .page-links { clear: both; margin: 0 0 1.5em; } .main-content-area { margin-top: 40px; margin-bottom: 40px; } /* =Post styling ----------------------------------------------- */ .entry-meta a { font-size: 13px; color: #6B6B6B; } .entry-meta { margin-bottom: 20px; } footer.entry-meta { margin-bottom: 0; } .page-header { margin-top: 0; border-bottom: 0; padding-bottom: 0; } .entry-meta .fa { font-size: 14px; margin-right: 3px; } .entry-meta span { margin-right: 10px; } .entry-title { color: #444; margin-bottom: 30px; } .page .entry-title { margin-bottom: 30px; } .entry-title a { color: #444; } hr.section-divider { border-color: #E8E8E8; margin-top: 50px; margin-bottom: 50px; } /* author */ .author-bio { clear: both; width: 100%; padding-top: 35px; padding-bottom: 35px; } .author-bio .avatar { float: left; } .author-bio-content h4 { font-size: 14px; margin-top: 0; } .author-bio .author-bio-content { margin-left: 74px; } .secondary-content-box { padding-top: 0; padding-bottom: 0; } .single-view, .blog-item-wrap { } .post-inner-content { /*border-bottom: 1px solid #dedede;*/ padding: 50px 0; } .archive .post-inner-content { margin-bottom: 50px; } .page .post-inner-content { border: 0; padding: 0; } article.post:first-child .post-inner-content { padding-top: 0; } .entry-header { text-align: center; } .entry-title { font-size: 24px; margin-top: 0; margin-bottom: 15px; } .entry-footer { margin-top: 20px; text-align: center; } .entry-footer > *, .entry-footer a { color: #696969; margin: 0 6px; } .more-link, .says { display: none; } .read-more { text-align: center; } .read-more a { border-left: 2px solid #696969; border-right: 2px solid #696969; color: #696969; font-weight: 700; line-height: 1.2; letter-spacing: 1px; display: inline-block; padding: 0 10px; text-transform: uppercase; } .comment-author .fn, .author-bio h4, .comment-reply-title { text-transform: uppercase; font-weight: 700; } .comment-author .fn { letter-spacing: 2px; font-style: normal; } .cat-title { border-bottom: 1px solid #dedede; margin: -30px 0 50px 0; padding-bottom: 20px; text-align: center; } .cat-title ul { margin: 0; padding: 0; list-style: none; } .cat-title ul li { display: inline; } .cat-title a { color: #4080FF; text-transform: uppercase; } article.post .post-categories, .post-inner-content .cat-item { position: relative; font-size: 12px; margin: 0 0 15px 0; padding: 0 0 8px 0; list-style: none; } article.post .post-categories:after, .post-inner-content .cat-item:after { content: ""; position: absolute; bottom: 0; left: 50%; height: 2px; width: 40px; margin-left: -20px; background:#4080FF; } article.post .post-categories a, .post-inner-content .cat-item a{ color: #696969; letter-spacing: 1px; text-transform: uppercase; } article.post { width: 100%; margin: 0; padding-right: 10px; } article.grid { padding: 0; width: 325px; } article.grid .post-inner-content { border: 0; padding-bottom: 0; } article.grid iframe { max-width: 325px; max-height: 164px; width: 100%; } /* Masonary style */ @media (min-width: 768px) { .article-container{ overflow: hidden; } .blog.home article.post { width: 50%; margin: 0; padding-right: 10px; display: inline-block; float: left; } .blog.home article.post .read-more, .blog.home article.post .entry-footer{ display: none; } .blog.home article.post .post-inner-content{ border: 0; padding: 0 0 30px; } .blog.home .page-1 article.post:first-child, .blog.home .page-1 article.post:nth-child(2) { width: 100%; padding: 0!important; } .blog.home .page-1 article.post:first-child .post-inner-content, .blog.home .page-1 article.post:nth-child(2) .post-inner-content{ border-bottom: 1px solid #dedede; } .blog.home .page-1 article.post:first-child .post-inner-content{ padding: 0 0 50px; } .blog.home .page-1 article.post:nth-child(2) .post-inner-content{ padding: 50px 0; margin-bottom: 30px; } .blog.home .page-1 article.post:first-child .read-more, .blog.home .page-1 article.post:nth-child(2) .read-more, .blog.home .page-1 article.post:first-child .entry-footer, .blog.home .page-1 article.post:nth-child(2) .entry-footer{ display: block; } .blog.home article.post:nth-child(odd){ clear: left; padding-right: 25px; } .blog.home article.post:nth-child(even){ padding-left: 25px; } } .site-main { max-width: 100%; } @media (max-width: 767px) { .site-main { width: 100% !important; } .post-inner-content { padding-left: 0 !important; padding-right: 0 !important; } #secondary { padding: 30px 15px 0!important; } } /* =Singe Post/Page Pagination ----------------------------------------------- */ .page-links span { display: inline-block; color: #fff; background-color:#4080FF; border-radius: 4px; padding: 2px 10px; margin-left: 2px; } .page-links a span { background-color: #f2f2f2; border: none; color: #696962; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; } .page-links a:hover span { background-color:#4080FF; border: none; color: #fff; } .pagination .fa-chevron-left, .pagination .fa-chevron-right { font-size: 12px; } .pagination li a { color: #4080FF; } .pagination li:hover a { color: #4080FF; } .pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus { color: #FFF; background-color:#4080FF; border-color: #4080FF; } .pagination>li>a, .pagination>li>span { padding: 9px 14px; border-color: #dadada; } .bottom-pagination { text-align: center; } /* =Asides ----------------------------------------------- */ .blog .format-aside .entry-title, .archive .format-aside .entry-title { display: none; } /* =Media ----------------------------------------------- */ .page-content img.wp-smiley, .entry-content img.wp-smiley, .comment-content img.wp-smiley { border: none; margin-bottom: 0; margin-top: 0; padding: 0; } .single-featured { -webkit-transition: opacity 0.3s linear; -moz-transition: opacity 0.3s linear; -o-transition: opacity 0.3s linear; transition: opacity 0.3s linear; display: block; margin: auto; } .single-featured:hover { opacity: 0.8; } .wp-caption { border: 1px solid #ddd; margin-bottom: 1.5em; max-width: 100%; } .thumbnail .caption { color: #696969; } .wp-caption img[class*="wp-image-"] { display: block; } .wp-caption-text { text-align: center; } .wp-caption .wp-caption-text { margin: 0.8075em 0; } /* Make sure embeds and iframes fit their containers */ embed, iframe, object { max-width: 100%; } /* =Widgets ----------------------------------------------- */ /* Make sure select elements fit in widgets */ .widget select { max-width: 100%; } /* Search widget */ .widget_search .search-submit { display: none; } .widget ul li { list-style: none; border-bottom: 1px solid #F2F2F2; margin-bottom: 10px; padding-bottom: 10px; } .widget ul { padding: 0; line-height: 18px; font-size: 14px; } .widget ul.nav.nav-tabs { padding: 0; } #secondary .widget { margin-bottom: 50px; overflow: hidden; } #secondary .widget:last-child { margin-bottom: 0px; } .tab-content ul li { list-style: none; } #secondary .widget > h3 { font-size: 14px; text-transform: uppercase; margin-bottom: 25px; margin-top: 0; color: #636467; } #secondary .widget-title { position: relative; padding-bottom: 15px; margin-bottom: 15px; } #secondary .widget-title:after { position: absolute; content: ""; bottom: 0; left: 0; height: 2px; width: 40px; background: #4080FF; } .widget ul ul { padding: 10px; } .widget #social ul li { border-bottom: 0; } .not-found-widget { margin-top: 30px; } @media (max-width: 767px) { #secondary { clear: both; } } ul#menu-social-items, #secondary .widget .social-icons { margin-bottom: 0; } /* Custom Category Widget */ .cats-widget ul li span { float: right; } /* Recent Post widgets */ .recent-posts-wrapper .post { float: left; clear: both; margin-bottom: 20px; } .recent-posts-wrapper .post .post-image { width: 80px; height: 80px; float: left; display: block; background-color: #DADADA; background-position: center center; background-repeat: no-repeat; overflow: hidden; } .recent-posts-wrapper .post .post-image img:hover { opacity: 0.6 !important; } .recent-posts-wrapper .post .post-content { margin-left: 100px; } .widget .post-content > span { display: block; } #secondary .widget .post-content a { font-style: italic; font-size: 16px; } #secondary .widget .post-content a:hover { } .widget .post-content span { font-size: 12px; } .tagcloud { margin-top: 25px; } .tagcloud a { padding: 6px 8px; margin-right: 0; margin-bottom: 4px; line-height: 100%; display: inline-block; background-color: #f2f2f2; letter-spacing: 1px; font-size: 10px !important; text-transform: uppercase; } .tagcloud a:hover { color: #ffffff!important; background-color: #4080FF; border-color: #4080FF; } #instafeed { margin: -5px; } #instafeed a { float: left; margin: 5px; height: 80px; width: 80px; } /* =Buttons ----------------------------------------------- */ .btn-default, .label-default, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .btn.btn-default, button, .input-group-btn:last-child>.btn, input[type=submit] { background: #f2f2f2; border-color: transparent; color: #696969; display: inline-block; font-size: 12px; text-transform: uppercase; -webkit-transition: background-color 0.3s linear; -moz-transition: background-color 0.3s linear; -o-transition: background-color 0.3s linear; transition: background-color 0.3s linear; } .btn-default:hover, .label-default[href]:hover, .label-default[href]:focus, .btn-default:hover, .btn-default:focus, .btn-default:active, #image-navigation .nav-previous a:hover, #image-navigation .nav-next a:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, button:hover, .input-group-btn:last-child>.btn:hover, input[type=submit]:hover { background-color: #4080FF; border-color: transparent; color: #fff; } .input-group-btn:last-child>.btn { font-size: 12px; opacity: 1; padding: 8px 20px; line-height: 16px; } #subscription-toggle { float: right; } .woocommerce a.button, .woocommerce input.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce input.button.alt { width: 100%; text-align: center; line-height: 20px; } .woocommerce #respond input#submit, .woocommerce button.button.alt, .woocommerce button.button, input[type=submit] { padding: 0 80px; text-align: center; line-height: 35px; } /* =Infinite Scroll ----------------------------------------------- */ /* Globally hidden elements when Infinite Scroll is supported and in use. */ .infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */ .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */ display: none; } /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */ .infinity-end.neverending .site-footer { display: block; } #infinite-handle span { display: block; text-align: center; text-transform: uppercase; margin-bottom: 10px; border-radius: 4px; padding: 20px; background: transparent; border: 1px solid #DADADA; background: #fff; color: #4080FF; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; } #infinite-handle span:hover { background-color:#4080FF; color: #fff; } /* =Custom Styles ----------------------------------------------- */ #logo { padding: 50px 0 45px 0; text-align: center; } #line { border-bottom: 1px solid #ddd; margin-bottom: 10px; } .tagline { color: #1c202a; margin-top: 10px; letter-spacing: 1px; } .site-branding { margin-top: 20px; margin-bottom: 20px; } .site-description { color: #777; font-weight: 200; font-size: 16px; } .page-template-page-homepage-php .carousel { margin-top: -20px; margin-bottom: 20px; } @media (max-width: 768px) { .pull-right { float: none !important; } .pull-left { float: none !important; } .flex-caption { display: none; } } button, html input[type=button], input[type=reset], input[type=submit], .comment-form #submit { -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; } article.post .post-categories a:hover, .entry-title a:hover, .entry-meta a:hover, .entry-footer a:hover, .read-more a:hover, .flex-caption .post-categories a:hover, .flex-caption .read-more a:hover, .flex-caption h2:hover, .comment-meta.commentmetadata a:hover, .post-inner-content .cat-item a:hover { color: #4080FF; } button, html input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover, .comment-form #submit:hover { background: #4080FF; color: #fff; } /* =Navigation ----------------------------------------------- */ .post-navigation a, .paging-navigation a { font-size: 12px; display: block; letter-spacing: 1px; text-transform: uppercase; } .post-navigation a:hover, .paging-navigation a:hover { text-decoration: none; } .paging-navigation { margin-top: 1.5em; text-transform: uppercase; } .post-navigation .nav-previous, .paging-navigation .nav-previous { float: left; } .post-navigation .nav-next, .paging-navigation .nav-next { float: right; text-align: right; } .more-link { float: right; margin: 10px 0; } .single .nav-links { margin-top: 30px; } .nav>li>a { text-transform: uppercase; } .navbar.navbar-default { background-color: #F2F2F2; margin-bottom: 0; font-weight: 400; height: 100px; min-height: auto; padding: 0; box-shadow: 0 0 2px #e3e3e3; } .navbar-default .navbar-nav > li > a { color: #1c202a; text-transform: uppercase; font-size: 12px; font-weight: bold; padding: 20px 0; margin-right: 25px; line-height: 2.6; letter-spacing: 1px; } .site-name { display: inline-block; } .navbar-brand { display: inline-block; float: none; color: #DADADA; font-size: 30px; height: auto; line-height: 1; margin: 0; padding: 0; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { border-right: none; border-left: none; } .navbar { border-radius: 0; } .navbar-default { border: none; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #4080FF; background-color: transparent; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #fff; background-color: #4080FF; } .navbar-collapse { float: left; margin-left: 18%; padding: 0; } .nav-search { float: right; padding: 18px 0; } .nav-search input { border: 0; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover { color: #fff; background-color: #4080FF; } .navbar-collapse { background: #ffffff; float: none; position: absolute; top: 70px; left: 0; padding: 0 15px; width: 100% !important; z-index: 999; } .navbar-nav { margin: 0; } } .dropdown-menu { box-shadow: none; border: 1px solid #eeeeee !important; font-size: 13px; } .navbar-default .navbar-nav .current-menu-ancestor a.dropdown-toggle { color: #4080FF; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > li.active > a { color: #fff; } .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #DADADA; } @media (min-width: 979px) { ul.nav li.dropdown:hover > ul.dropdown-menu { display: block; } } .dropdown-menu > li > a { padding: 10px 15px; color: #636467; border-bottom: 1px solid #eeeeee; } .dropdown-menu, .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { border: none; } .dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus { background-color: #4080FF; color: #fff; } .dropdown-menu .divider { background-color: rgba(0, 0, 0, 0.1); } .navbar-nav > li > .dropdown-menu { padding: 0; } .navbar-nav > li > a { padding-top: 18px; padding-bottom: 18px; } .navbar-default .navbar-toggle { float: left; margin-top: 18px; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: transparent; } .nav.navbar-nav { float: left; } @media (max-width: 767px) { .nav.navbar-nav { float: none; } .navbar > .container .navbar-brand { margin: 0; } .navbar-default .navbar-nav > li > a { line-height: 20px; padding-top: 10px; padding-bottom: 10px; } .navbar-header { float: left; } .navbar-toggle { border: 0; border-radius: 0; margin: 0; } } /* =Featured Posts ----------------------------------------------- */ .flexslider { background-color: #f5f5f5; } .flexslider ul { margin: 0; padding: 0; list-style: none; } .flex-caption h2 { -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } /* =Comments ----------------------------------------------- */ .comment-content { margin-top: 10px; } .comment-content a { word-wrap: break-word; } .bypostauthor { } #respond { background-color: transparent !important; box-shadow: none !important; padding: 0px !important; } #respond > p, #respond p.comment-notes, p.logged-in-as { margin-bottom: 10px; } p.logged-in-as { padding-bottom: 0px; } .comment-list { margin-bottom: 40px !important; margin-left: 0px !important; padding-left: 0; } .comment-list li .comment-body { position: relative; } .comment-list li .comment-body:after { content: ""; position: absolute; left: 50%; bottom: 0; height: 2px; width: 40px; background: #4080FF; margin-left: -20px; } .comment-list > li:last-child .comment-body:after { content: none; } .comment-list, .comment-list .children { list-style: none; } .comment .comment-body { background-color: #ffffff; margin: 0; overflow: hidden; margin-top: 2em; padding-left: 100px; position: relative; min-height: 100px; } .comment-list .children { margin-left: 0px!important; padding-left: 55px; background-repeat: no-repeat; background-position: left 20px; } .comments-title, .comment-reply-title { font-size: 12px; margin: 0 0 50px 0; padding-bottom: 10px; letter-spacing: 2px; text-transform: uppercase; text-align: center; } .comment-author.vcard { font-size: 12px; margin-bottom: 10px; } .vcard .avatar { border-radius: 50%; position: absolute; left: 0; top: 0; } .comment-metadata { display: none; font-size: 11px; line-height: 16px; margin-bottom: 10px; } .comment-reply-link { background: #f2f2f2; border-radius: 2px; color: #000000; font-size: 10px; margin-left: 20px; display: inline-block; padding: 4px 10px; text-transform: uppercase; } .form-allowed-tags code { word-wrap: break-word; white-space: inherit; } .comment-respond label { display: block; font-weight: normal; } .comment-respond .required { color: #C7254E; } #submit { font-size: 12px; } .comment-navigation, .single .nav-links { overflow: hidden; margin-top: 30px; } .comment-form input[type="text"] { border: 1px solid #eeeeee; border-radius: 0; height: 35px; margin-bottom: 30px; padding: 0 10px; width: 100%; } .comment-form textarea { border: 1px solid #eeeeee; border-radius: 0; padding: 10px; margin-bottom: 30px; min-height: 100px; } .comment-form #submit { height: 35px; background: #f2f2f2; border: 0; border-radius: 0; padding: 0 80px; text-transform: uppercase; } .comment-form .form-submit { margin: 0; } .comment-meta.commentmetadata a { color: #999; font-style: italic; } @media(max-width:767px){ .post-inner-content { padding: 20px 25px; } .comment-list .children { padding-left: 10px; } } /* =Attachment styling ----------------------------------------------- */ #image-navigation .nav-previous a, #image-navigation .nav-next a{ padding: 5px 20px; border: 1px solid #E8E8E8; border-radius: 4px; display: block; } #image-navigation .nav-previous a:hover, #image-navigation .nav-next a:hover{ background-color: #4080FF; color: #fff; } #image-navigation .nav-previous, #image-navigation .nav-next { margin: 10px 0; } #image-navigation .nav-previous a { float: left; } #image-navigation .nav-next a { float: right; } /* =Gallery -------------------------------------------------------------- */ .gallery { margin-bottom: 20px; } .gallery-item { float: left; margin: 0 4px 4px 0; overflow: hidden; position: relative; } .gallery-columns-1 .gallery-item { max-width: 100%; } .gallery-columns-2 .gallery-item { max-width: 48%; max-width: -webkit-calc(50% - 4px); max-width: calc(50% - 4px); } .gallery-columns-3 .gallery-item { max-width: 32%; max-width: -webkit-calc(33.3% - 4px); max-width: calc(33.3% - 4px); } .gallery-columns-4 .gallery-item { max-width: 23%; max-width: -webkit-calc(25% - 4px); max-width: calc(25% - 4px); } .gallery-columns-5 .gallery-item { max-width: 19%; max-width: -webkit-calc(20% - 4px); max-width: calc(20% - 4px); } .gallery-columns-6 .gallery-item { max-width: 15%; max-width: -webkit-calc(16.7% - 4px); max-width: calc(16.7% - 4px); } .gallery-columns-7 .gallery-item { max-width: 13%; max-width: -webkit-calc(14.28% - 4px); max-width: calc(14.28% - 4px); } .gallery-columns-8 .gallery-item { max-width: 11%; max-width: -webkit-calc(12.5% - 4px); max-width: calc(12.5% - 4px); } .gallery-columns-9 .gallery-item { max-width: 9%; max-width: -webkit-calc(11.1% - 4px); max-width: calc(11.1% - 4px); } .gallery-columns-1 .gallery-item:nth-of-type(1n), .gallery-columns-2 .gallery-item:nth-of-type(2n), .gallery-columns-3 .gallery-item:nth-of-type(3n), .gallery-columns-4 .gallery-item:nth-of-type(4n), .gallery-columns-5 .gallery-item:nth-of-type(5n), .gallery-columns-6 .gallery-item:nth-of-type(6n), .gallery-columns-7 .gallery-item:nth-of-type(7n), .gallery-columns-8 .gallery-item:nth-of-type(8n), .gallery-columns-9 .gallery-item:nth-of-type(9n) { margin-right: 0; } .gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1), .gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1), .gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1), .gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) { clear: left; } .gallery-caption { background-color: rgba(0, 0, 0, 0.7); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; color: #fff; font-size: 12px; line-height: 1.5; margin: 0; max-height: 50%; opacity: 0; padding: 6px 8px; position: absolute; bottom: 0; left: 0; text-align: left; width: 100%; } .gallery-caption:before { content: ""; height: 100%; min-height: 49px; position: absolute; top: 0; left: 0; width: 100%; } .gallery-item:hover .gallery-caption { opacity: 1; } .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption { display: none; } /* =Footer ----------------------------------------------- */ #footer-area { background-color: #4F4F4F; color: #E5E5E5; } #footer-area .footer-widget-area { padding: 40px 0 20px 0; overflow: hidden; } #footer-area ul li { border-bottom: 1px solid #444; } #footer-area .site-info nav ul li { border-bottom: none; } .widgettitle { font-size: 14px; text-transform: uppercase; margin-bottom: 25px; margin-top: 0; color: inherit; } #footer-area .widget ul li { list-style: none; } .footer-nav.nav > li { position: relative; display: inline-block; } .footer-nav.nav { float: left; margin-bottom: 2px; } .footer-widget { overflow: hidden; } .copyright { margin-top: 10px; } .copyright, .copyright a { color: #9c9c9c; } #colophon { padding: 50px 0; text-align: center; } .site-info a { color: #777; } .site-info a:hover { color: #4080FF; } .site-info { color: #999; font-size: 12px; } .footer-nav.nav > li > a:hover { background-color: transparent; } .scroll-to-top { background: #363636; background: rgba(100, 100, 100, 0.4); color: #FFF; bottom: 4%; cursor: pointer; display: none; position: fixed; right: 20px; z-index: 999; font-size: 16px; text-align: center; line-height: 35px; width: 35px; border-radius: 50%; -webkit-transition: background-color 0.3s linear; -moz-transition: background-color 0.3s linear; -o-transition: background-color 0.3s linear; transition: background-color 0.3s linear; } .scroll-to-top:hover { background: #4080FF; opacity: .8; } @media (max-width: 768px) { .site-info, .copyright { text-align: center; } .footer-nav.nav, .copyright { float: none; } } /* =Social icons ----------------------------------------------- */ #secondary .widget .social-icons a { margin-right: 20px; } .social-icons { position: relative; margin-bottom: 20px; text-align: center; } #secondary .widget .social-icons { text-align: left; } #social a { color: #696969; display: inline-block; font-size: 18px; list-style: none; text-align: center; } .header-search-icon { -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; } #social a:hover { color: #4080FF; } .header-search-icon { background: transparent; color: #696969; } .header-search-icon:hover { background: transparent; color: #4080FF; } #social li a span { display: none; } #footer-area #social a { margin: 0 15px; } @media (max-width: 992px) { .site-branding { text-align: center; } .main-content-inner{ margin-bottom: 30px; } } /* =Elements when no javaScript is present ----------------------------------------------- */ .widget_rss ul, .postform, table#wp-calendar { display: none; } .no-js .widget_rss ul, .no-js .postform, .no-js table#wp-calendar { display: block; } /* =Contact form 7 ----------------------------------------------- */ .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea { border-radius: 0; border: 1px solid #eeeeee; height: 35px; padding: 0 10px; width: 100%; } .wpcf7 textarea { min-height: 200px; padding: 10px; } .wpcf7 .wpcf7-form-control-wrap { display: block; margin-bottom: 30px; } .wpcf7 .wpcf7-submit { height: 35px; background: #f2f2f2; border: 0; border-radius: 0; font-size: 12px; padding: 0 80px; text-transform: uppercase; } .wpcf7 p { margin: 0; } /* Woocommerce */ .woocommerce .woocommerce-info { border-top-color: #4080FF; } .woocommerce .woocommerce-info:before { color: #4080FF; } /* Layout */ .has-sidebar-left #secondary { padding-right: 40px; } .no-sidebar { float: none; margin: 0 auto; } .full-width { width: 100%; } /*--TERCER NIVEL DE MENU--*/ ul.nav ul ul { margin: -40px 150px; background-color:#F2F2F2; height: auto; margin-left: 100%; } /* SOPORTE PARA SUBMENU DE DOS NIVELES DE PROFUNDIDAD */ .navbar-toggle { visibility: hidden; } .klogo { margin-top: 5px; width: 50px; height: 50px; margin-left: -60px; } /*@media (max-width: 768px) { --PARA FACILITAR EL TRABAJO ESTOS AJUSTES QUEDAN DEFINIDOS EN EL PANEL DE CONTROL, SECCION PLUGINS, WP RESPONSIVE MENU- .klogo { display: none; margin-top: 5px; width: 50px; height: 50px; } }*/ .navbar-collapse { margin-top: -60px; } /*@media (max-width: 768px) { --PARA FACILITAR EL TRABAJO ESTOS AJUSTES QUEDAN DEFINIDOS EN EL PANEL DE CONTROL, SECCION PLUGINS, WP RESPONSIVE MENU-- .navbar.navbar-default { display:none; } }*/ .navbar.navbar-default { height: 60px; } .dropdown-menu > li > a { background-color: #F2F2F2; } .kbgindex { background-image: url(background.jpg); background-size: cover; background-position: center; margin-top: 5px; width: auto; height: 300px; margin-top: -23px; } .ktextbienv { text-align: center; color: #F2F2F2; padding-top: 40px; } .ktextbienv a { color: #F2F2F2; } .ktextp1 { text-align: center; color: #F2F2F2; padding-top: 5px; } .ktextp1 a { color: #F2F2F2; } .ktextp2 { text-align: center; color: #F2F2F2; padding-top: 1px; padding-bottom: 30px; } .ktextp3 { text-align: center; color: #F2F2F2; } @media (max-width: 768px) { .ktextp3 { display: none; } } diff --git a/style.css b/style.css index 55e6c14..837b549 100644 --- a/style.css +++ b/style.css @@ -1,1852 +1,129 @@ /* -Theme Name: KDE Aether -Original Theme URI: https://colorlib.com/wp/themes/activello/ -Original Author: Colorlib -Fork Authors: Alejandro Moreno, Jonathan Riddell, Ken Vermette +Theme Name: KDE Æther +Author: The KDE Community Author URI: https://kde.org -Description: Aether is a heavily modified fork of Activello (v1.0.2) for web pages related to the KDE ecosystem +Description: Æther design for the KDE community and associated websites Version: 1.0.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Text Domain: aether Domain Path: /languages/ Tags: kde, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, photoblogging, left-sidebar, translation-ready, custom-background, custom-colors, custom-menu, featured-images, full-width-template, post-formats, theme-options, threaded-comments - -This theme, like WordPress, is licensed under the GPL. - - +Contributors: + - Ken Vermette + - Jonthan Riddell + - Alejandro Moreno + - Colorlib */ -/* Table of content ------------------------------------------------ -1. Global -2. Content -3. Post styling -4. Singe Post/Page Pagination -5. Media -6. Widgets -7. Buttons -8. Infinite Scroll -8. Custom Styles -9. Navigation -10. Comments -11. Attachment styling -12. Gallery -13. Footer -14. Social icons -15. Call For Action -*/ -/* =Global +/* Global ----------------------------------------------- */ + @font-face { - font-family: 'Noto Sans'; + font-family: 'Noto Sans', sans-serif; font-weight: 400; font-style: normal; - src: url('/Noto-Sans-regular/Noto-Sans-regular.eot'); - src: url('/Noto-Sans-regular/Noto-Sans-regular.eot?#iefix') format('embedded-opentype'), - local('Noto Sans'), + src: local('Noto Sans'), local('Noto-Sans-regular'), url('/Noto-Sans-regular/Noto-Sans-regular.woff2') format('woff2'), url('/Noto-Sans-regular/Noto-Sans-regular.woff') format('woff'), url('/Noto-Sans-regular/Noto-Sans-regular.ttf') format('truetype'), url('/Noto-Sans-regular/Noto-Sans-regular.svg#NotoSans') format('svg'); } + @font-face { - font-family: 'Noto Sans'; + font-family: 'Noto Sans', sans-serif; font-weight: 700; font-style: normal; - src: url('/Noto-Sans-700/Noto-Sans-700.eot'); - src: url('/Noto-Sans-700/Noto-Sans-700.eot?#iefix') format('embedded-opentype'), - local('Noto Sans Bold'), + src: local('Noto Sans Bold'), local('Noto-Sans-700'), url('/Noto-Sans-700/Noto-Sans-700.woff2') format('woff2'), url('/Noto-Sans-700/Noto-Sans-700.woff') format('woff'), url('/Noto-Sans-700/Noto-Sans-700.ttf') format('truetype'), url('/Noto-Sans-700/Noto-Sans-700.svg#NotoSans') format('svg'); } + body { color: #696969; - background-color: #FFFFFF; word-wrap: break-word; font-family: 'Noto Sans', sans-serif; - line-height: 2; + line-height: 150%; font-size: 14px; + + background-color: #fafafa; + background: linear-gradient(to bottom, #e7e5e5 0%, #fafafa 500px); + background-image: url("media/background.svg"), linear-gradient(to bottom, #e7e5e5 0%, #fafafa 50%); + background-repeat: no-repeat,no-repeat; + background-size: 100% 500px, auto; + background-position: top center, auto; } -a { - color: #393939; - text-decoration: none; - -webkit-transition: all 0.3s; - -moz-transition: all 0.3s; - -o-transition: all 0.3s; - transition: all 0.3s; -} -a:hover, -a:focus { - color: #4080FF; - text-decoration: none; -} - -a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -.single .entry-content a{ - color: #4080FF; -} -.single .entry-content a:hover{ - background: #4080FF; - color: #fff; -} - -h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { - color: #696969; - font-weight: 400; - margin: 30px 0; -} - -.container { - max-width: 1090px; -} - -h1, -.h1 { - font-size: 28px; -} - -h2, -.h2 { - font-size: 24px; -} - -h3, -.h3 { - font-size: 20px; -} -h4, -.h4 { - font-size: 16px; -} +main.container > section { + margin-top: 20px; + margin-bottom: 20px; + border: solid 1px rgba(0,0,0,.2); + background-color: #FAFAFA; + border-radius: 4px; + box-shadow: 0px 2px 3px rgba(0,0,0,.1); + color: #343031; -h5, -.h5 { - font-size: 14px; } -h6, -.h6 { - font-size: 13px; -} - -p { - margin: 15px 0; -} -* > p:first-child { - margin-top: 0; +.post-inner-content img { + max-width: 100%; + height: auto; } -* > p:last-child { - margin-bottom: 0; -} - -blockquote { - position: relative; - border: 0; - padding: 0 0 0 50px; - font-style: italic; - line-height: 1.6; -} -blockquote:before { - content: "\201D"; - color: #4080FF; - font-size: 80px; - position: absolute; - left: 5px; - top: 0; - line-height: 1; -} -blockquote p { - margin: 0; +.alignleft { + float: left; } -img { - height: auto; /* Make sure images are scaled correctly. */ - max-width: 100%; /* Adhere to container width. */ -} -button, -input, -select, -textarea { - font-family: 'Noto Sans', sans-serif; - font-size: 100%; /* Corrects font size not being inherited in all browsers */ - margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */ - vertical-align: baseline; /* Improves appearance and consistency in all browsers */ - *vertical-align: middle; /* Improves appearance and consistency in all browsers */ -} -input[type="checkbox"], -input[type="radio"] { - padding: 0; /* Addresses excess padding in IE8/9 */ -} -input[type="search"] { - -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */ - -webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */ - -moz-box-sizing: content-box; - box-sizing: content-box; -} -input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */ - -webkit-appearance: none; -} -button::-moz-focus-inner, -input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */ - border: 0; - padding: 0; -} -input[type="text"], -input[type="email"], -input[type="tel"], -input[type="url"], -input[type="password"], -input[type="search"], -textarea { - color: #666; - border: 1px solid #E8E8E8; - border-radius: 3px; -} -input[type="text"]:focus, -input[type="email"]:focus, -input[type="tel"]:focus, -input[type="url"]:focus, -input[type="password"]:focus, -input[type="search"]:focus, -textarea:focus { - color: #111; -} -textarea { - overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */ - padding-left: 3px; - vertical-align: top; /* Improves readability and alignment in all browsers */ - width: 100%; +.alignright { + float: right; } -/* Alignment */ -.alignleft { - display: inline; - float: left; - margin-right: 1.5em; -} -.alignright { - display: inline; - float: right; - margin-left: 1.5em; -} .aligncenter { - clear: both; - display: block; - margin: 0 auto; + display: block; + margin: 0px auto; } -/* Text meant only for screen readers */ -.screen-reader-text { - clip: rect(1px, 1px, 1px, 1px); - position: absolute !important; +.alignleft, .alignright { + margin: 10px 20px; } -.screen-reader-text:hover, -.screen-reader-text:active, -.screen-reader-text:focus { - background-color: #f1f1f1; - border-radius: 3px; - box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); - clip: auto !important; - color: #4080FF; - display: block; - font-size: 14px; - font-weight: bold; - height: auto; - left: 5px; - line-height: normal; - padding: 15px 23px 14px; - text-decoration: none; - top: 5px; - width: auto; - z-index: 100000; /* Above WP toolbar */ +.entry-content:after { + content: ""; + display: block; + clear: both; + margin: 0px; } -/* Clearing floats */ -.clear:before, -.clear:after, -.gallery:before, -.gallery:after, -.entry-content:before, -.entry-content:after, -.comment-content:before, -.comment-content:after, -.site-header:before, -.site-header:after, -.site-content:before, -.site-content:after, -.site-footer:before, -.site-footer:after, -.home-widget-area:before { - content: ''; - display: table; +.entry-content :last-child { + margin-bottom: 0px; } -.clear:after, -.entry-content:after, -.gallery:after, -.comment-content:after, -.site-header:after, -.site-content:after, -.site-footer:after, -.home-widget-area:before { - clear: both; +.entry-content :first-child { + margin-top: 0px; } -/* =Content ------------------------------------------------ */ - -.sticky { -} -.hentry { - margin: 0; -} -.byline, -.updated { - display: none; -} -.single .byline, -.group-blog .byline { - display: inline; - margin-right: 0; -} -.single article.post { - margin-bottom: 50px; -} -.page-content, -.entry-content, -.entry-summary { - margin: 20px 0 0; -} -.page-links { - clear: both; - margin: 0 0 1.5em; -} -.main-content-area { - margin-top: 40px; - margin-bottom: 40px; -} -/* =Post styling ------------------------------------------------ */ -.entry-meta a { - font-size: 13px; - color: #6B6B6B; -} -.entry-meta { - margin-bottom: 20px; -} -footer.entry-meta { - margin-bottom: 0; -} -.page-header { - margin-top: 0; - border-bottom: 0; - padding-bottom: 0; -} -.entry-meta .fa { - font-size: 14px; - margin-right: 3px; -} -.entry-meta span { - margin-right: 10px; -} -.entry-title { - color: #444; - margin-bottom: 30px; -} -.page .entry-title { - margin-bottom: 30px; -} -.entry-title a { - color: #444; -} -hr.section-divider { - border-color: #E8E8E8; - margin-top: 50px; - margin-bottom: 50px; -} -/* author */ -.author-bio { - clear: both; - width: 100%; - padding-top: 35px; - padding-bottom: 35px; -} -.author-bio .avatar { - float: left; -} -.author-bio-content h4 { - font-size: 14px; - margin-top: 0; -} -.author-bio .author-bio-content { - margin-left: 74px; -} -.secondary-content-box { - padding-top: 0; - padding-bottom: 0; -} -.single-view, -.blog-item-wrap { - -} -.post-inner-content { - /*border-bottom: 1px solid #dedede;*/ - padding: 50px 0; -} -.archive .post-inner-content { - margin-bottom: 50px; -} -.page .post-inner-content { - border: 0; - padding: 0; -} -article.post:first-child .post-inner-content { - padding-top: 0; -} -.entry-header { - text-align: center; -} -.entry-title { - font-size: 24px; - margin-top: 0; - margin-bottom: 15px; -} .entry-footer { - margin-top: 20px; - text-align: center; -} -.entry-footer > *, -.entry-footer a { - color: #696969; - margin: 0 6px; -} -.more-link, -.says { - display: none; -} -.read-more { - text-align: center; -} -.read-more a { - border-left: 2px solid #696969; - border-right: 2px solid #696969; - color: #696969; - font-weight: 700; - line-height: 1.2; - letter-spacing: 1px; - display: inline-block; - padding: 0 10px; - text-transform: uppercase; -} -.comment-author .fn, -.author-bio h4, -.comment-reply-title { - text-transform: uppercase; - font-weight: 700; -} -.comment-author .fn { - letter-spacing: 2px; - font-style: normal; -} -.cat-title { - border-bottom: 1px solid #dedede; - margin: -30px 0 50px 0; - padding-bottom: 20px; - text-align: center; -} -.cat-title ul { - margin: 0; - padding: 0; - list-style: none; -} -.cat-title ul li { - display: inline; -} -.cat-title a { - color: #4080FF; - text-transform: uppercase; -} -article.post .post-categories, .post-inner-content .cat-item { - position: relative; - font-size: 12px; - margin: 0 0 15px 0; - padding: 0 0 8px 0; - list-style: none; -} -article.post .post-categories:after, -.post-inner-content .cat-item:after { - content: ""; - position: absolute; - bottom: 0; - left: 50%; - height: 2px; - width: 40px; - margin-left: -20px; - background:#4080FF; -} -article.post .post-categories a, .post-inner-content .cat-item a{ - color: #696969; - letter-spacing: 1px; - text-transform: uppercase; -} -article.post { - width: 100%; - margin: 0; - padding-right: 10px; -} -article.grid { - padding: 0; - width: 325px; -} -article.grid .post-inner-content { - border: 0; - padding-bottom: 0; -} -article.grid iframe { - max-width: 325px; - max-height: 164px; - width: 100%; -} -/* Masonary style */ -@media (min-width: 768px) { - .article-container{ - overflow: hidden; - } - .blog.home article.post { - width: 50%; - margin: 0; - padding-right: 10px; - display: inline-block; - float: left; - } - .blog.home article.post .read-more, .blog.home article.post .entry-footer{ - display: none; - } - .blog.home article.post .post-inner-content{ - border: 0; - padding: 0 0 30px; - } - .blog.home .page-1 article.post:first-child, .blog.home .page-1 article.post:nth-child(2) { - width: 100%; - padding: 0!important; - } - .blog.home .page-1 article.post:first-child .post-inner-content, .blog.home .page-1 article.post:nth-child(2) .post-inner-content{ - border-bottom: 1px solid #dedede; - } - .blog.home .page-1 article.post:first-child .post-inner-content{ - padding: 0 0 50px; - } - .blog.home .page-1 article.post:nth-child(2) .post-inner-content{ - padding: 50px 0; - margin-bottom: 30px; - } - .blog.home .page-1 article.post:first-child .read-more, .blog.home .page-1 article.post:nth-child(2) .read-more, - .blog.home .page-1 article.post:first-child .entry-footer, .blog.home .page-1 article.post:nth-child(2) .entry-footer{ - display: block; - } - .blog.home article.post:nth-child(odd){ - clear: left; - padding-right: 25px; - } - .blog.home article.post:nth-child(even){ - padding-left: 25px; - } -} -.site-main { - max-width: 100%; -} - -@media (max-width: 767px) { - .site-main { - width: 100% !important; - } - .post-inner-content { - padding-left: 0 !important; - padding-right: 0 !important; - } - #secondary { - padding: 30px 15px 0!important; - } -} - -/* =Singe Post/Page Pagination ------------------------------------------------ */ -.page-links span { - display: inline-block; - color: #fff; - background-color:#4080FF; - border-radius: 4px; - padding: 2px 10px; - margin-left: 2px; -} -.page-links a span { - background-color: #f2f2f2; - border: none; - color: #696962; - -webkit-transition: all 0.5s; - -moz-transition: all 0.5s; - -o-transition: all 0.5s; - transition: all 0.5s; -} -.page-links a:hover span { - background-color:#4080FF; - border: none; - color: #fff; -} -.pagination .fa-chevron-left, -.pagination .fa-chevron-right { - font-size: 12px; -} -.pagination li a { - color: #4080FF; -} -.pagination li:hover a { - color: #4080FF; -} -.pagination>.active>a, -.pagination>.active>span, -.pagination>.active>a:hover, -.pagination>.active>span:hover, -.pagination>.active>a:focus, -.pagination>.active>span:focus { - color: #FFF; - background-color:#4080FF; - border-color: #4080FF; -} -.pagination>li>a, -.pagination>li>span { - padding: 9px 14px; - border-color: #dadada; -} -.bottom-pagination { - text-align: center; -} - -/* =Asides ------------------------------------------------ */ - -.blog .format-aside .entry-title, -.archive .format-aside .entry-title { - display: none; -} - -/* =Media ------------------------------------------------ */ - -.page-content img.wp-smiley, -.entry-content img.wp-smiley, -.comment-content img.wp-smiley { - border: none; - margin-bottom: 0; - margin-top: 0; - padding: 0; -} -.single-featured { - -webkit-transition: opacity 0.3s linear; - -moz-transition: opacity 0.3s linear; - -o-transition: opacity 0.3s linear; - transition: opacity 0.3s linear; - display: block; - margin: auto; -} -.single-featured:hover { - opacity: 0.8; -} -.wp-caption { - border: 1px solid #ddd; - margin-bottom: 1.5em; - max-width: 100%; -} -.thumbnail .caption { - color: #696969; -} -.wp-caption img[class*="wp-image-"] { - display: block; -} -.wp-caption-text { - text-align: center; -} -.wp-caption .wp-caption-text { - margin: 0.8075em 0; -} - -/* Make sure embeds and iframes fit their containers */ -embed, -iframe, -object { - max-width: 100%; -} - -/* =Widgets ------------------------------------------------ */ - -/* Make sure select elements fit in widgets */ -.widget select { - max-width: 100%; -} -/* Search widget */ -.widget_search .search-submit { - display: none; -} -.widget ul li { - list-style: none; - border-bottom: 1px solid #F2F2F2; - margin-bottom: 10px; - padding-bottom: 10px; -} -.widget ul { - padding: 0; - line-height: 18px; - font-size: 14px; -} -.widget ul.nav.nav-tabs { - padding: 0; -} - -#secondary .widget { - margin-bottom: 50px; - overflow: hidden; -} -#secondary .widget:last-child { - margin-bottom: 0px; -} -.tab-content ul li { - list-style: none; -} -#secondary .widget > h3 { - font-size: 14px; - text-transform: uppercase; - margin-bottom: 25px; - margin-top: 0; - color: #636467; -} -#secondary .widget-title { - position: relative; - padding-bottom: 15px; - margin-bottom: 15px; -} -#secondary .widget-title:after { - position: absolute; - content: ""; - bottom: 0; - left: 0; - height: 2px; - width: 40px; - background: #4080FF; -} -.widget ul ul { - padding: 10px; -} -.widget #social ul li { - border-bottom: 0; -} -.not-found-widget { - margin-top: 30px; -} -@media (max-width: 767px) { - #secondary { - clear: both; - } -} -ul#menu-social-items, -#secondary .widget .social-icons { - margin-bottom: 0; -} -/* Custom Category Widget */ -.cats-widget ul li span { - float: right; -} -/* Recent Post widgets */ -.recent-posts-wrapper .post { - float: left; - clear: both; - margin-bottom: 20px; -} -.recent-posts-wrapper .post .post-image { - width: 80px; - height: 80px; - float: left; - display: block; - background-color: #DADADA; - background-position: center center; - background-repeat: no-repeat; - overflow: hidden; -} -.recent-posts-wrapper .post .post-image img:hover { - opacity: 0.6 !important; -} -.recent-posts-wrapper .post .post-content { - margin-left: 100px; -} -.widget .post-content > span { - display: block; -} -#secondary .widget .post-content a { - font-style: italic; - font-size: 16px; -} -#secondary .widget .post-content a:hover { - -} -.widget .post-content span { - font-size: 12px; -} -.tagcloud { - margin-top: 25px; -} -.tagcloud a { - padding: 6px 8px; - margin-right: 0; - margin-bottom: 4px; - line-height: 100%; - display: inline-block; - background-color: #f2f2f2; - letter-spacing: 1px; - font-size: 10px !important; - text-transform: uppercase; -} -.tagcloud a:hover { - color: #ffffff!important; - background-color: #4080FF; - border-color: #4080FF; -} -#instafeed { - margin: -5px; -} -#instafeed a { - float: left; - margin: 5px; - height: 80px; - width: 80px; -} - -/* =Buttons ------------------------------------------------ */ -.btn-default, .label-default, -.woocommerce #respond input#submit, -.woocommerce a.button, .woocommerce button.button, -.woocommerce input.button, -.woocommerce #respond input#submit.alt, -.woocommerce a.button.alt, .woocommerce button.button.alt, -.woocommerce input.button.alt, .btn.btn-default, button, -.input-group-btn:last-child>.btn, -input[type=submit] { - background: #f2f2f2; - border-color: transparent; - color: #696969; - display: inline-block; - font-size: 12px; - text-transform: uppercase; - -webkit-transition: background-color 0.3s linear; - -moz-transition: background-color 0.3s linear; - -o-transition: background-color 0.3s linear; - transition: background-color 0.3s linear; -} -.btn-default:hover, -.label-default[href]:hover, -.label-default[href]:focus, -.btn-default:hover, .btn-default:focus, -.btn-default:active, -#image-navigation .nav-previous a:hover, -#image-navigation .nav-next a:hover, -.woocommerce #respond input#submit:hover, -.woocommerce a.button:hover, .woocommerce button.button:hover, -.woocommerce input.button:hover, -.woocommerce #respond input#submit.alt:hover, -.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, -.woocommerce input.button.alt:hover, button:hover, -.input-group-btn:last-child>.btn:hover, -input[type=submit]:hover { - background-color: #4080FF; - border-color: transparent; - color: #fff; -} -.input-group-btn:last-child>.btn { - font-size: 12px; - opacity: 1; - padding: 8px 20px; - line-height: 16px; -} -#subscription-toggle { - float: right; -} -.woocommerce a.button, -.woocommerce input.button, -.woocommerce #respond input#submit.alt, -.woocommerce a.button.alt, -.woocommerce input.button.alt { - width: 100%; - text-align: center; - line-height: 20px; -} -.woocommerce #respond input#submit, -.woocommerce button.button.alt, -.woocommerce button.button, -input[type=submit] { - padding: 0 80px; - text-align: center; - line-height: 35px; -} -/* =Infinite Scroll ------------------------------------------------ */ - -/* Globally hidden elements when Infinite Scroll is supported and in use. */ -.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */ -.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */ - display: none; -} - -/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */ -.infinity-end.neverending .site-footer { - display: block; -} -#infinite-handle span { - display: block; - text-align: center; - text-transform: uppercase; - margin-bottom: 10px; - border-radius: 4px; - padding: 20px; - background: transparent; - border: 1px solid #DADADA; - background: #fff; - color: #4080FF; - -webkit-transition: all 0.5s; - -moz-transition: all 0.5s; - -o-transition: all 0.5s; - transition: all 0.5s; -} -#infinite-handle span:hover { - background-color:#4080FF; - color: #fff; -} -/* =Custom Styles ------------------------------------------------ */ -#logo { - padding: 50px 0 45px 0; - text-align: center; -} -#line { - border-bottom: 1px solid #ddd; - margin-bottom: 10px; -} -.tagline { - color: #1c202a; - margin-top: 10px; - letter-spacing: 1px; -} -.site-branding { - margin-top: 20px; - margin-bottom: 20px; -} -.site-description { - color: #777; - font-weight: 200; - font-size: 16px; -} -.page-template-page-homepage-php .carousel { - margin-top: -20px; - margin-bottom: 20px; -} - -@media (max-width: 768px) { - .pull-right { - float: none !important; - } - .pull-left { - float: none !important; - } - .flex-caption { - display: none; - } + clear: both; } -button, html input[type=button], -input[type=reset], -input[type=submit], -.comment-form #submit { - -webkit-transition: all 0.5s; - -moz-transition: all 0.5s; - -o-transition: all 0.5s; - transition: all 0.5s; -} - -article.post .post-categories a:hover, -.entry-title a:hover, -.entry-meta a:hover, -.entry-footer a:hover, -.read-more a:hover, -.flex-caption .post-categories a:hover, -.flex-caption .read-more a:hover, -.flex-caption h2:hover, -.comment-meta.commentmetadata a:hover, -.post-inner-content .cat-item a:hover { - color: #4080FF; -} - -button, html input[type=button]:hover, -input[type=reset]:hover, -input[type=submit]:hover, -.comment-form #submit:hover { - background: #4080FF; - color: #fff; -} - -/* =Navigation ------------------------------------------------ */ - -.post-navigation a, -.paging-navigation a { - font-size: 12px; - display: block; - letter-spacing: 1px; - text-transform: uppercase; -} -.post-navigation a:hover, -.paging-navigation a:hover { - text-decoration: none; -} -.paging-navigation { - margin-top: 1.5em; - text-transform: uppercase; -} -.post-navigation .nav-previous, -.paging-navigation .nav-previous { - float: left; -} -.post-navigation .nav-next, -.paging-navigation .nav-next { - float: right; - text-align: right; -} -.more-link { - float: right; - margin: 10px 0; -} -.single .nav-links { - margin-top: 30px; -} -.nav>li>a { - text-transform: uppercase; -} -.navbar.navbar-default { - background-color: #F2F2F2; - margin-bottom: 0; - font-weight: 400; - height: 100px; - min-height: auto; - padding: 0; - box-shadow: 0 0 2px #e3e3e3; -} -.navbar-default .navbar-nav > li > a { - color: #1c202a; - text-transform: uppercase; - font-size: 12px; - font-weight: bold; -padding: 20px 0; -margin-right: 25px; -line-height: 2.6; -letter-spacing: 1px; -} -.site-name { - display: inline-block; -} -.navbar-brand { - display: inline-block; - float: none; - color: #DADADA; - font-size: 30px; - height: auto; - line-height: 1; - margin: 0; - padding: 0; -} -.navbar-default .navbar-nav > .open > a, -.navbar-default .navbar-nav > .open > a:hover, -.navbar-default .navbar-nav > .open > a:focus { - border-right: none; - border-left: none; -} -.navbar { - border-radius: 0; -} -.navbar-default { - border: none; -} -.navbar-default .navbar-nav > .active > a, -.navbar-default .navbar-nav > .active > a:hover, -.navbar-default .navbar-nav > .active > a:focus, -.navbar-default .navbar-nav > li > a:hover, -.navbar-default .navbar-nav > li > a:focus, -.navbar-default .navbar-nav > .open > a, -.navbar-default .navbar-nav > .open > a:hover, -.navbar-default .navbar-nav > .open > a:focus { - color: #4080FF; - background-color: transparent; -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus, -.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, -.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: #4080FF; -} -.navbar-collapse { - float: left; - margin-left: 18%; - - padding: 0; -} -.nav-search { - float: right; - padding: 18px 0; -} -.nav-search input { - border: 0; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu>.active>a, - .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus, - .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover { - color: #fff; - background-color: #4080FF; - } - .navbar-collapse { - background: #ffffff; - float: none; - position: absolute; - top: 70px; - left: 0; - padding: 0 15px; - width: 100% !important; - z-index: 999; - } - .navbar-nav { - margin: 0; - } -} -.dropdown-menu { - box-shadow: none; - border: 1px solid #eeeeee !important; - font-size: 13px; -} -.navbar-default .navbar-nav .current-menu-ancestor a.dropdown-toggle { - color: #4080FF; - background-color: transparent; -} -.navbar-default .navbar-nav .open .dropdown-menu > li.active > a { - color: #fff; -} -.navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #DADADA; -} -@media (min-width: 979px) { - ul.nav li.dropdown:hover > ul.dropdown-menu { - display: block; - } -} -.dropdown-menu > li > a { - padding: 10px 15px; - color: #636467; - border-bottom: 1px solid #eeeeee; -} -.dropdown-menu, -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - border: none; -} -.dropdown-menu>.active>a, -.dropdown-menu>.active>a:hover, -.dropdown-menu>.active>a:focus { - background-color: #4080FF; - color: #fff; -} -.dropdown-menu .divider { - background-color: rgba(0, 0, 0, 0.1); -} -.navbar-nav > li > .dropdown-menu { - padding: 0; -} -.navbar-nav > li > a { - padding-top: 18px; - padding-bottom: 18px; -} -.navbar-default .navbar-toggle { - float: left; - margin-top: 18px; -} -.navbar-default .navbar-toggle:hover, -.navbar-default .navbar-toggle:focus { - background-color: transparent; -} -.nav.navbar-nav { - float: left; -} -@media (max-width: 767px) { - .nav.navbar-nav { - float: none; - } - .navbar > .container .navbar-brand { - margin: 0; - } - .navbar-default .navbar-nav > li > a { - line-height: 20px; - padding-top: 10px; - padding-bottom: 10px; - } - .navbar-header { - float: left; - } - .navbar-toggle { - border: 0; - border-radius: 0; - margin: 0; - } -} - -/* =Featured Posts ------------------------------------------------ */ - -.flexslider { - background-color: #f5f5f5; -} - -.flexslider ul { - margin: 0; - padding: 0; - list-style: none; -} -.flex-caption h2 { - -webkit-transition: all 0.3s; - -moz-transition: all 0.3s; - -o-transition: all 0.3s; - transition: all 0.3s; -} - -/* =Comments ------------------------------------------------ */ - -.comment-content { - margin-top: 10px; -} -.comment-content a { - word-wrap: break-word; -} -.bypostauthor { -} -#respond { - background-color: transparent !important; - box-shadow: none !important; - padding: 0px !important; -} -#respond > p, #respond p.comment-notes, p.logged-in-as { - margin-bottom: 10px; -} - -p.logged-in-as { - padding-bottom: 0px; -} -.comment-list { - margin-bottom: 40px !important; - margin-left: 0px !important; - padding-left: 0; -} -.comment-list li .comment-body { - position: relative; -} -.comment-list li .comment-body:after { - content: ""; - position: absolute; - left: 50%; - bottom: 0; - height: 2px; - width: 40px; - background: #4080FF; - margin-left: -20px; -} -.comment-list > li:last-child .comment-body:after { - content: none; -} -.comment-list, -.comment-list .children { - list-style: none; -} -.comment .comment-body { - background-color: #ffffff; - margin: 0; - overflow: hidden; - margin-top: 2em; - padding-left: 100px; - position: relative; - min-height: 100px; -} -.comment-list .children { - margin-left: 0px!important; - padding-left: 55px; - background-repeat: no-repeat; - background-position: left 20px; -} - -.comments-title, -.comment-reply-title { - font-size: 12px; - margin: 0 0 50px 0; - padding-bottom: 10px; - letter-spacing: 2px; - text-transform: uppercase; - text-align: center; -} -.comment-author.vcard { - font-size: 12px; - margin-bottom: 10px; -} -.vcard .avatar { - border-radius: 50%; - position: absolute; - left: 0; - top: 0; -} -.comment-metadata { - display: none; - font-size: 11px; - line-height: 16px; - margin-bottom: 10px; -} -.comment-reply-link { - background: #f2f2f2; - border-radius: 2px; - color: #000000; - font-size: 10px; - margin-left: 20px; - display: inline-block; - padding: 4px 10px; - text-transform: uppercase; -} -.form-allowed-tags code { - word-wrap: break-word; - white-space: inherit; -} -.comment-respond label { - display: block; - font-weight: normal; -} -.comment-respond .required { - color: #C7254E; -} -#submit { - font-size: 12px; -} -.comment-navigation, -.single .nav-links { - overflow: hidden; - margin-top: 30px; -} -.comment-form input[type="text"] { - border: 1px solid #eeeeee; - border-radius: 0; - height: 35px; - margin-bottom: 30px; - padding: 0 10px; - width: 100%; -} -.comment-form textarea { - border: 1px solid #eeeeee; - border-radius: 0; - padding: 10px; - margin-bottom: 30px; - min-height: 100px; -} -.comment-form #submit { - height: 35px; - background: #f2f2f2; - border: 0; - border-radius: 0; - padding: 0 80px; - text-transform: uppercase; -} -.comment-form .form-submit { - margin: 0; -} - -.comment-meta.commentmetadata a { - color: #999; - font-style: italic; -} - -@media(max-width:767px){ - .post-inner-content { - padding: 20px 25px; - } - .comment-list .children { - padding-left: 10px; - } -} -/* =Attachment styling ------------------------------------------------ */ -#image-navigation .nav-previous a, -#image-navigation .nav-next a{ - padding: 5px 20px; - border: 1px solid #E8E8E8; - border-radius: 4px; - display: block; -} -#image-navigation .nav-previous a:hover, -#image-navigation .nav-next a:hover{ - background-color: #4080FF; - color: #fff; -} -#image-navigation .nav-previous, -#image-navigation .nav-next { - margin: 10px 0; -} -#image-navigation .nav-previous a { - float: left; -} -#image-navigation .nav-next a { - float: right; -} - -/* =Gallery --------------------------------------------------------------- */ -.gallery { - margin-bottom: 20px; -} -.gallery-item { - float: left; - margin: 0 4px 4px 0; - overflow: hidden; - position: relative; -} -.gallery-columns-1 .gallery-item { - max-width: 100%; -} -.gallery-columns-2 .gallery-item { - max-width: 48%; - max-width: -webkit-calc(50% - 4px); - max-width: calc(50% - 4px); -} -.gallery-columns-3 .gallery-item { - max-width: 32%; - max-width: -webkit-calc(33.3% - 4px); - max-width: calc(33.3% - 4px); -} -.gallery-columns-4 .gallery-item { - max-width: 23%; - max-width: -webkit-calc(25% - 4px); - max-width: calc(25% - 4px); -} -.gallery-columns-5 .gallery-item { - max-width: 19%; - max-width: -webkit-calc(20% - 4px); - max-width: calc(20% - 4px); -} -.gallery-columns-6 .gallery-item { - max-width: 15%; - max-width: -webkit-calc(16.7% - 4px); - max-width: calc(16.7% - 4px); -} -.gallery-columns-7 .gallery-item { - max-width: 13%; - max-width: -webkit-calc(14.28% - 4px); - max-width: calc(14.28% - 4px); -} -.gallery-columns-8 .gallery-item { - max-width: 11%; - max-width: -webkit-calc(12.5% - 4px); - max-width: calc(12.5% - 4px); -} -.gallery-columns-9 .gallery-item { - max-width: 9%; - max-width: -webkit-calc(11.1% - 4px); - max-width: calc(11.1% - 4px); -} -.gallery-columns-1 .gallery-item:nth-of-type(1n), -.gallery-columns-2 .gallery-item:nth-of-type(2n), -.gallery-columns-3 .gallery-item:nth-of-type(3n), -.gallery-columns-4 .gallery-item:nth-of-type(4n), -.gallery-columns-5 .gallery-item:nth-of-type(5n), -.gallery-columns-6 .gallery-item:nth-of-type(6n), -.gallery-columns-7 .gallery-item:nth-of-type(7n), -.gallery-columns-8 .gallery-item:nth-of-type(8n), -.gallery-columns-9 .gallery-item:nth-of-type(9n) { - margin-right: 0; -} -.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1), -.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1), -.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1), -.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) { - clear: left; -} -.gallery-caption { - background-color: rgba(0, 0, 0, 0.7); - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - color: #fff; - font-size: 12px; - line-height: 1.5; - margin: 0; - max-height: 50%; - opacity: 0; - padding: 6px 8px; - position: absolute; - bottom: 0; - left: 0; - text-align: left; - width: 100%; -} -.gallery-caption:before { - content: ""; - height: 100%; - min-height: 49px; - position: absolute; - top: 0; - left: 0; - width: 100%; -} -.gallery-item:hover .gallery-caption { - opacity: 1; -} -.gallery-columns-7 .gallery-caption, -.gallery-columns-8 .gallery-caption, -.gallery-columns-9 .gallery-caption { - display: none; -} - -/* =Footer ------------------------------------------------ */ - -#footer-area { - background-color: #4F4F4F; - color: #E5E5E5; -} -#footer-area .footer-widget-area { - padding: 40px 0 20px 0; - overflow: hidden; -} -#footer-area ul li { - border-bottom: 1px solid #444; -} -#footer-area .site-info nav ul li { - border-bottom: none; -} -.widgettitle { - font-size: 14px; - text-transform: uppercase; - margin-bottom: 25px; - margin-top: 0; - color: inherit; -} -#footer-area .widget ul li { - list-style: none; -} -.footer-nav.nav > li { - position: relative; - display: inline-block; -} -.footer-nav.nav { - float: left; - margin-bottom: 2px; -} -.footer-widget { - overflow: hidden; -} -.copyright { - margin-top: 10px; -} -.copyright, -.copyright a { - color: #9c9c9c; -} -#colophon { - padding: 50px 0; - text-align: center; -} -.site-info a { - color: #777; -} -.site-info a:hover { - color: #4080FF; -} -.site-info { - color: #999; - font-size: 12px; -} -.footer-nav.nav > li > a:hover { - background-color: transparent; -} -.scroll-to-top { - background: #363636; - background: rgba(100, 100, 100, 0.4); - color: #FFF; - bottom: 4%; - cursor: pointer; - display: none; - position: fixed; - right: 20px; - z-index: 999; - font-size: 16px; - text-align: center; - line-height: 35px; - width: 35px; - border-radius: 50%; - -webkit-transition: background-color 0.3s linear; - -moz-transition: background-color 0.3s linear; - -o-transition: background-color 0.3s linear; - transition: background-color 0.3s linear; -} -.scroll-to-top:hover { - background: #4080FF; - opacity: .8; -} - -@media (max-width: 768px) { - .site-info, .copyright { - text-align: center; - } - .footer-nav.nav, .copyright { - float: none; - } -} - -/* =Social icons ------------------------------------------------ */ -#secondary .widget .social-icons a { - margin-right: 20px; -} -.social-icons { - position: relative; - margin-bottom: 20px; - text-align: center; -} -#secondary .widget .social-icons { - text-align: left; -} -#social a { - color: #696969; - display: inline-block; - font-size: 18px; - list-style: none; - text-align: center; -} -.header-search-icon { - -webkit-transition: all 0.3s; - -moz-transition: all 0.3s; - -o-transition: all 0.3s; - transition: all 0.3s; -} -#social a:hover { - color: #4080FF; -} -.header-search-icon { - background: transparent; - color: #696969; -} -.header-search-icon:hover { - background: transparent; - color: #4080FF; -} -#social li a span { - display: none; -} -#footer-area #social a { - margin: 0 15px; -} - -@media (max-width: 992px) { - .site-branding { - text-align: center; - } - .main-content-inner{ - margin-bottom: 30px; - } +.primary-main img { + max-width: 100%; + height: auto; } -/* =Elements when no javaScript is present +/* End of File ----------------------------------------------- */ -.widget_rss ul, -.postform, -table#wp-calendar { - display: none; -} -.no-js .widget_rss ul, -.no-js .postform, -.no-js table#wp-calendar { - display: block; -} - -/* =Contact form 7 ------------------------------------------------ */ -.wpcf7 input[type="text"], -.wpcf7 input[type="email"], -.wpcf7 textarea { - border-radius: 0; - border: 1px solid #eeeeee; - height: 35px; - padding: 0 10px; - width: 100%; -} -.wpcf7 textarea { - min-height: 200px; - padding: 10px; -} -.wpcf7 .wpcf7-form-control-wrap { - display: block; - margin-bottom: 30px; -} -.wpcf7 .wpcf7-submit { - height: 35px; - background: #f2f2f2; - border: 0; - border-radius: 0; - font-size: 12px; - padding: 0 80px; - text-transform: uppercase; -} -.wpcf7 p { - margin: 0; -} - -/* Woocommerce */ -.woocommerce .woocommerce-info { - border-top-color: #4080FF; -} -.woocommerce .woocommerce-info:before { - color: #4080FF; -} - -/* Layout */ - -.has-sidebar-left #secondary { - padding-right: 40px; -} -.no-sidebar { - float: none; - margin: 0 auto; -} -.full-width { - width: 100%; -} - -/*--TERCER NIVEL DE MENU--*/ -ul.nav ul ul { -margin: -40px 150px; -background-color:#F2F2F2; -height: auto; -margin-left: 100%; - -} - -/* SOPORTE PARA SUBMENU DE DOS NIVELES DE PROFUNDIDAD */ -.navbar-toggle { -visibility: hidden; -} - -.klogo { - - margin-top: 5px; - width: 50px; - height: 50px; - margin-left: -60px; -} - -/*@media (max-width: 768px) { --PARA FACILITAR EL TRABAJO ESTOS AJUSTES QUEDAN DEFINIDOS EN EL PANEL DE CONTROL, SECCION PLUGINS, WP RESPONSIVE MENU- - .klogo { - display: none; - margin-top: 5px; - width: 50px; - height: 50px; -} - -}*/ - -.navbar-collapse { - margin-top: -60px; -} - -/*@media (max-width: 768px) { --PARA FACILITAR EL TRABAJO ESTOS AJUSTES QUEDAN DEFINIDOS EN EL PANEL DE CONTROL, SECCION PLUGINS, WP RESPONSIVE MENU-- - .navbar.navbar-default { - display:none; - } -}*/ - -.navbar.navbar-default { - height: 60px; -} - -.dropdown-menu > li > a { - background-color: #F2F2F2; -} - -.kbgindex { - background-image: url(background.jpg); - background-size: cover; - background-position: center; - margin-top: 5px; - width: auto; - height: 300px; - margin-top: -23px; -} - - -.ktextbienv { - text-align: center; - color: #F2F2F2; - padding-top: 40px; -} - -.ktextbienv a { - color: #F2F2F2; -} - -.ktextp1 { - text-align: center; - color: #F2F2F2; - padding-top: 5px; -} - -.ktextp1 a { - color: #F2F2F2; -} - -.ktextp2 { - text-align: center; - color: #F2F2F2; - padding-top: 1px; - padding-bottom: 30px; -} - -.ktextp3 { - text-align: center; - color: #F2F2F2; -} - -@media (max-width: 768px) { - .ktextp3 { - display: none; - } -}