Skip to content

Commit

Permalink
Theme Sniffer: Strings must be translatable (empty description fields…
Browse files Browse the repository at this point in the history
… removed)
  • Loading branch information
AlxMedia committed Jul 20, 2018
1 parent e5ca84e commit 249b124
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions functions/theme-options.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,57 +15,48 @@
Kirki::add_panel( 'options', array(
'priority' => 10,
'title' => esc_attr__( 'Theme Options', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
) );

/* Add Sections
/* ------------------------------------ */
Kirki::add_section( 'general', array(
'priority' => 10,
'title' => esc_attr__( 'General', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'panel' => 'options',
) );
Kirki::add_section( 'blog', array(
'priority' => 20,
'title' => esc_attr__( 'Blog', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'panel' => 'options',
) );
Kirki::add_section( 'header', array(
'priority' => 30,
'title' => esc_attr__( 'Header', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'panel' => 'options',
) );
Kirki::add_section( 'footer', array(
'priority' => 40,
'title' => esc_attr__( 'Footer', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'panel' => 'options',
) );
Kirki::add_section( 'layout', array(
'priority' => 50,
'title' => esc_attr__( 'Layout', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'panel' => 'options',
) );
Kirki::add_section( 'sidebars', array(
'priority' => 60,
'title' => esc_attr__( 'Sidebars', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'panel' => 'options',
) );
Kirki::add_section( 'social', array(
'priority' => 70,
'title' => esc_attr__( 'Social Links', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'panel' => 'options',
) );
Kirki::add_section( 'styling', array(
'priority' => 80,
'title' => esc_attr__( 'Styling', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'panel' => 'options',
) );

Expand Down Expand Up @@ -113,7 +104,6 @@
'type' => 'radio',
'settings' => 'blog-layout',
'label' => esc_attr__( 'Blog Layout', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'section' => 'blog',
'default' => 'blog-standard',
'choices' => array(
Expand Down Expand Up @@ -655,7 +645,6 @@ function blogline_kirki_sidebars_select() {
'social-target' => array(
'type' => 'checkbox',
'label' => esc_attr__( 'Open in new window', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'default' => false,
),
)
Expand Down Expand Up @@ -723,7 +712,6 @@ function blogline_kirki_sidebars_select() {
'type' => 'color',
'settings' => 'color-1',
'label' => esc_attr__( 'Primary Color', 'blogline' ),
'description' => esc_attr__( '', 'blogline' ),
'section' => 'styling',
'default' => '#55acee',
) );
Expand Down

0 comments on commit 249b124

Please sign in to comment.