/
var
/
www
/
barefootlaw.org
/
wp-content
/
themes
/
barefoot
/
inc
/
vc
/
Upload File
HOME
<?php /** * Custom Settings For Visual Composer Elements * * @package Aisconverse * @subpackage Covercase * @since Covercase 1.0 */ if ( ! function_exists( 'covercase_vc_after_init_actions' ) ) { /** * VC after init actions * * @since Covercase 1.0 */ function covercase_vc_after_init_actions() { if ( ! class_exists( 'WPBMap' ) ) { return; } $vc_shortcodes = array( 'vc_btn' => array( 'color', 'i_type', 'gradient_color_1', 'gradient_color_2', 'style' ), 'vc_icon' => array( 'type', 'color', 'size', 'align' ), 'vc_row' => array( 'gap' ), 'vc_tta_accordion' => array( 'c_icon', 'color' ), 'vc_tta_section' => array( 'i_type' ), 'vc_message' => array( 'color', 'message_box_color', 'icon_type' ), 'vc_progress_bar' => array( 'bgcolor' ) ); foreach ( $vc_shortcodes as $key => $value ) { foreach ( $value as $param_value ) { $param = WPBMap::getParam( $key, $param_value ); switch ( $key ) { case 'vc_tta_accordion' : if ( $param_value === 'color' ) { $param['value'] = array(); $param['value'][ __( 'Black', 'covercase' ) ] = 'black'; $param['value'][ __( 'Grey', 'covercase' ) ] = 'grey'; $param['std'] = 'grey'; } else { $param['value'][ __( 'Arrow', 'covercase' ) ] = 'arrow'; } break; case 'vc_progress_bar' : $param['std'] = 'bar_blue'; break; case 'vc_message' : if ( $param_value === 'color' ) { $param['options'] = array( array( 'label' => __( 'Custom', 'covercase' ), 'value' => '', 'params' => array(), ), array( 'label' => __( 'Informational', 'covercase' ), 'value' => 'info', 'params' => array( 'message_box_color' => 'info', 'icon_type' => 'feather', 'icon_feather' => 'icon-bell', ), ), array( 'label' => __( 'Warning', 'covercase' ), 'value' => 'warning', 'params' => array( 'message_box_color' => 'warning', 'icon_type' => 'feather', 'icon_feather' => 'icon-flag', ), ), array( 'label' => __( 'Success', 'covercase' ), 'value' => 'success', 'params' => array( 'message_box_color' => 'success', 'icon_type' => 'feather', 'icon_feather' => 'icon-circle-check', ), ), array( 'label' => __( 'Error', 'covercase' ), 'value' => 'danger', 'params' => array( 'message_box_color' => 'danger', 'icon_type' => 'feather', 'icon_feather' => 'icon-circle-cross', ), ), ); } elseif ( $param_value === 'icon_type' ) { $param['value'][ __( 'Feather', 'covercase' ) ] = 'feather'; $param['value'][ __( 'Bootstrap', 'covercase' ) ] = 'bootstrap_font'; $param['value'][ __( 'Aisconverse', 'covercase' ) ] = 'aisconverse_font'; $param['value'][ __( 'Theme', 'covercase' ) ] = 'theme_font'; } else { if ( function_exists( 'getVcShared' ) ) { $custom_colors = array( __( 'Informational', 'covercase' ) => 'info', __( 'Warning', 'covercase' ) => 'warning', __( 'Success', 'covercase' ) => 'success', __( 'Error', 'covercase' ) => 'danger' ); $param['value'] = $custom_colors + getVcShared( 'colors' ); } } break; case 'vc_row' : $gap_i = 30; while ( $gap_i <= 200 ) { $gap = $gap_i * 2; $gap_i += 10; $param['value'][ $gap . 'px' ] = $gap; } break; case 'vc_tta_section' : case 'vc_btn' : if ( $param_value === 'style' ) { $param['value'] = array( __( 'Flat', 'covercase' ) => 'flat', __( 'Modern', 'covercase' ) => 'modern', __( 'Underlined', 'covercase' ) => 'underlined', __( 'Classic', 'covercase' ) => 'classic', __( 'Outline', 'covercase' ) => 'outline', __( '3d', 'covercase' ) => '3d', __( 'Custom', 'covercase' ) => 'custom', __( 'Outline custom', 'covercase' ) => 'outline-custom', __( 'Gradient', 'covercase' ) => 'gradient', __( 'Gradient Custom', 'covercase' ) => 'gradient-custom', ); } else { if ( $param_value !== 'i_type' ) { if ( $key === 'vc_btn' ) { $param['value'] = array( // Btn1 Colors __( 'Default', 'covercase' ) => 'primary', __( 'Primary', 'covercase' ) => 'inverse', __( 'Success', 'covercase' ) => 'success', __( 'Warning', 'covercase' ) => 'warning', __( 'Info', 'covercase' ) => 'info', __( 'Danger', 'covercase' ) => 'danger', __( 'Classic Grey', 'covercase' ) => 'default', __( 'Blue', 'covercase' ) => 'blue', __( 'Turquoise', 'covercase' ) => 'turquoise', __( 'Pink', 'covercase' ) => 'pink', __( 'Violet', 'covercase' ) => 'violet', __( 'Peacoc', 'covercase' ) => 'peacoc', __( 'Chino', 'covercase' ) => 'chino', __( 'Mulled Wine', 'covercase' ) => 'mulled-wine', __( 'Vista Blue', 'covercase' ) => 'vista-blue', __( 'Black', 'covercase' ) => 'black', __( 'Grey', 'covercase' ) => 'grey', __( 'Orange', 'covercase' ) => 'orange', __( 'Sky', 'covercase' ) => 'sky', __( 'Green', 'covercase' ) => 'green', __( 'Juicy pink', 'covercase' ) => 'juicy-pink', __( 'Sandy brown', 'covercase' ) => 'sandy-brown', __( 'Purple', 'covercase' ) => 'purple', __( 'White', 'covercase' ) => 'white', ); $param['std'] = 'inverse'; } } else { $param['value'][ __( 'Feather', 'covercase' ) ] = 'feather'; $param['value'][ __( 'Bootstrap', 'covercase' ) ] = 'bootstrap_font'; $param['value'][ __( 'Aisconverse', 'covercase' ) ] = 'aisconverse_font'; $param['value'][ __( 'Theme', 'covercase' ) ] = 'theme_font'; #$param['weight'] = 90; } } break; /*case 'vc_separator' : if ($param_value === 'color') { $param['value'][ __( 'Light gray', 'covercase' ) ] = 'light_gray'; $param['value'][ __( 'Dark gray', 'covercase' ) ] = 'dark_gray'; } break;*/ case 'vc_icon' : if ( $param_value === 'type' ) { $param['value'][ __( 'Feather', 'covercase' ) ] = 'feather'; $param['value'][ __( 'Bootstrap', 'covercase' ) ] = 'bootstrap_font'; $param['value'][ __( 'Aisconverse', 'covercase' ) ] = 'aisconverse_font'; $param['value'][ __( 'Theme', 'covercase' ) ] = 'theme_font'; $param['value'][ __( 'Sharpicons', 'covercase' ) ] = 'sharpicons'; $param['weight'] = 90; } elseif ( $param_value === 'color' ) { $param['std'] = 'black'; } elseif ( $param_value === 'size' ) { $param['std'] = 'xl'; } elseif ( $param_value === 'align' ) { $param['std'] = 'center'; } break; } if ( function_exists( 'vc_update_shortcode_param' ) ) { vc_update_shortcode_param( $key, $param ); } } } /* * WooCommerce Remove Params */ if ( function_exists( 'vc_remove_param' ) ) { vc_remove_param( 'recent_products', 'columns' ); vc_remove_param( 'featured_products', 'columns' ); vc_remove_param( 'products', 'columns' ); vc_remove_param( 'product_category', 'columns' ); vc_remove_param( 'product_categories', 'columns' ); vc_remove_param( 'sale_products', 'columns' ); vc_remove_param( 'best_selling_products', 'columns' ); vc_remove_param( 'top_rated_products', 'columns' ); } /*Messages*/ if ( function_exists( 'vc_remove_param' ) ) { vc_remove_param( "vc_message", "css_animation" ); vc_remove_param( "vc_message", "content" ); vc_remove_param( "vc_message", "el_class" ); vc_remove_param( "vc_message", "css" ); } vc_add_params( 'vc_message', array( array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'icon_feather', 'value' => "icon-eye", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 131, 'type' => 'feather' ), 'dependency' => array( 'element' => 'icon_type', 'value' => 'feather', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'icon_bootstrap_font', 'value' => "glyphicon glyphicon-asterisk", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'bootstrap_font' ), 'dependency' => array( 'element' => 'icon_type', 'value' => 'bootstrap_font', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'icon_aisconverse_font', 'value' => "aisconverse_icon armchair_chair_streamline", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'aisconverse_font' ), 'dependency' => array( 'element' => 'icon_type', 'value' => 'aisconverse_font', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'icon_theme_font', 'value' => "icond-thin-0310-support-help-talk-call", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'theme_font' ), 'dependency' => array( 'element' => 'icon_type', 'value' => 'theme_font', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'textarea_html', 'holder' => 'div', 'class' => 'messagebox_text', 'heading' => __( 'Message text', 'covercase' ), 'param_name' => 'content', 'value' => __( '<p>I am message box. Click edit button to change this text.</p>', 'covercase' ), ), vc_map_add_css_animation( false ), array( 'type' => 'textfield', 'heading' => __( 'Extra class name', 'covercase' ), 'param_name' => 'el_class', 'description' => __( 'Style particular content element differently - add a class name and refer to it in custom CSS.', 'covercase' ), ), array( 'type' => 'css_editor', 'heading' => __( 'CSS box', 'covercase' ), 'param_name' => 'css', 'group' => __( 'Design Options', 'covercase' ), ) ) ); /*Tabs*/ if ( function_exists( 'vc_remove_param' ) ) { vc_remove_param( "vc_tta_section", "el_class" ); } vc_add_params( 'vc_tta_section', array( array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'i_icon_feather', 'value' => "icon-eye", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 131, 'type' => 'feather' ), 'dependency' => array( 'element' => 'i_type', 'value' => 'feather', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'i_icon_bootstrap_font', 'value' => "glyphicon glyphicon-asterisk", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'bootstrap_font' ), 'dependency' => array( 'element' => 'i_type', 'value' => 'bootstrap_font', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'i_icon_aisconverse_font', 'value' => "aisconverse_icon armchair_chair_streamline", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'aisconverse_font' ), 'dependency' => array( 'element' => 'i_type', 'value' => 'aisconverse_font', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'i_icon_theme_font', 'value' => "icond-thin-0310-support-help-talk-call", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'theme_font' ), 'dependency' => array( 'element' => 'i_type', 'value' => 'theme_font', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'textfield', 'heading' => __( 'Extra class name', 'covercase' ), 'param_name' => 'el_class', 'description' => __( 'Style particular content element differently - add a class name and refer to it in custom CSS.', 'covercase' ), ) ) ); /*Single Image params*/ vc_add_params( 'vc_single_image', array( array( 'type' => 'dropdown', 'heading' => __( 'On hover action', 'covercase' ), 'param_name' => 'onhover', 'weight' => 10, 'value' => array( __( 'None', 'covercase' ) => '', __( 'Scroll image', 'covercase' ) => 'img_scroll' ), 'description' => __( 'Select action for hover action.', 'covercase' ), 'std' => '' ), array( 'type' => 'textfield', 'heading' => __( 'Label', 'covercase' ), 'param_name' => 'label', 'weight' => 9, 'description' => __( 'Sets the label for the image.', 'covercase' ) ), array( 'type' => 'textfield', 'heading' => __( 'Height', 'covercase' ), 'param_name' => 'height', 'weight' => 8, 'description' => __( 'Sets the height of the container around the image in px.', 'covercase' ) ) ) ); /*Button params*/ if ( function_exists( 'vc_remove_param' ) ) { vc_remove_param( "vc_btn", "css_animation" ); vc_remove_param( "vc_btn", "el_class" ); vc_remove_param( "vc_btn", "custom_onclick" ); vc_remove_param( "vc_btn", "custom_onclick_code" ); vc_remove_param( "vc_btn", "css" ); } vc_add_params( 'vc_btn', array( array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'i_icon_feather', 'value' => "icon-eye", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 131, 'type' => 'feather' ), 'dependency' => array( 'element' => 'i_type', 'value' => 'feather', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'i_icon_bootstrap_font', 'value' => "glyphicon glyphicon-asterisk", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'bootstrap_font' ), 'dependency' => array( 'element' => 'i_type', 'value' => 'bootstrap_font', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'i_icon_aisconverse_font', 'value' => "aisconverse_icon armchair_chair_streamline", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'aisconverse_font' ), 'dependency' => array( 'element' => 'i_type', 'value' => 'aisconverse_font', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'i_icon_theme_font', 'value' => "icond-thin-0310-support-help-talk-call", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'theme_font' ), 'dependency' => array( 'element' => 'i_type', 'value' => 'theme_font', ), 'description' => __( 'Select icon from library.', 'covercase' ), 'integrated_shortcode' => 'vc_icon', 'integrated_shortcode_field' => 'i_' ), vc_map_add_css_animation( true ), array( 'type' => 'textfield', 'heading' => __( 'Extra class name', 'covercase' ), 'param_name' => 'el_class', 'description' => __( 'Style particular content element differently - add a class name and refer to it in custom CSS.', 'covercase' ), ), array( 'type' => 'checkbox', 'heading' => __( 'Advanced on click action', 'covercase' ), 'param_name' => 'custom_onclick', 'description' => __( 'Insert inline onclick javascript action.', 'covercase' ), ), array( 'type' => 'textfield', 'heading' => __( 'On click code', 'covercase' ), 'param_name' => 'custom_onclick_code', 'description' => __( 'Enter onclick action code.', 'covercase' ), 'dependency' => array( 'element' => 'custom_onclick', 'not_empty' => true, ), ), array( 'type' => 'css_editor', 'heading' => __( 'CSS box', 'covercase' ), 'param_name' => 'css', 'group' => __( 'Design Options', 'covercase' ), ) ) ); /*Icon params*/ $vc_icon_params = array( array( 'type' => 'dropdown', 'heading' => __( 'Display Type', 'covercase' ), 'param_name' => 'display', 'value' => array( __( 'Block', 'covercase' ) => '', __( 'Inline', 'covercase' ) => 'inline' ), 'description' => __( 'Select the icon display type.', 'covercase' ), ), array( 'type' => 'dropdown', 'heading' => __( 'Vertical align', 'covercase' ), 'param_name' => 'vertical_align', 'value' => array( __( 'Top', 'covercase' ) => 'top', __( 'Middle', 'covercase' ) => 'middle', __( 'Bottom', 'covercase' ) => 'bottom', __( 'Baseline', 'covercase' ) => 'baseline', __( 'Super', 'covercase' ) => 'super', __( 'Sub', 'covercase' ) => 'sub', __( 'Text top', 'covercase' ) => 'text-top', __( 'Text bottom', 'covercase' ) => 'text-bottom', __( 'Inherit', 'covercase' ) => 'inherit' ), 'description' => __( 'Sets the vertical alignment of the elements relative to each other.', 'covercase' ), ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'icon_feather', 'value' => "icon-eye", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 131, 'type' => 'feather' ), 'weight' => 80, 'dependency' => array( 'element' => 'type', 'value' => 'feather', ), 'description' => __( 'Select icon from library.', 'covercase' ) ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'icon_bootstrap_font', 'value' => "glyphicon glyphicon-asterisk", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'bootstrap_font' ), 'weight' => 81, 'dependency' => array( 'element' => 'type', 'value' => 'bootstrap_font', ), 'description' => __( 'Select icon from library.', 'covercase' ) ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'icon_aisconverse_font', 'value' => "aisconverse_icon armchair_chair_streamline", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'aisconverse_font' ), 'weight' => 82, 'dependency' => array( 'element' => 'type', 'value' => 'aisconverse_font', ), 'description' => __( 'Select icon from library.', 'covercase' ) ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'icon_theme_font', 'value' => "icond-thin-0310-support-help-talk-call", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 500, 'type' => 'theme_font' ), 'weight' => 83, 'dependency' => array( 'element' => 'type', 'value' => 'theme_font', ), 'description' => __( 'Select icon from library.', 'covercase' ) ), array( 'type' => 'iconpicker', 'heading' => __( 'Icon', 'covercase' ), 'param_name' => 'icon_sharpicons', 'value' => "si-music-add-mic", 'settings' => array( 'emptyIcon' => false, 'iconsPerPage' => 90, 'type' => 'sharpicons' ), 'weight' => 84, 'dependency' => array( 'element' => 'type', 'value' => 'sharpicons', ), 'description' => __( 'Select icon from library.', 'covercase' ) ) ); vc_add_params( 'vc_icon', $vc_icon_params ); } add_action( 'vc_after_init', 'covercase_vc_after_init_actions', 999 ); } if ( ! function_exists( 'covercase_vc_iconpicker_type_bootstrap_font' ) ) { /** * Bootstrap font for VC icon_picker * * @since Covercase 1.0 */ function covercase_vc_iconpicker_type_bootstrap_font( $icons ) { return array( array( 'glyphicon glyphicon-asterisk' => __( 'Asterisk', 'covercase' ) ), array( 'glyphicon glyphicon-plus' => __( 'Plus', 'covercase' ) ), array( 'glyphicon glyphicon-euro' => __( 'Euro', 'covercase' ) ), array( 'glyphicon-eur' => __( 'Eur', 'covercase' ) ), array( 'glyphicon glyphicon-minus' => __( 'Minus', 'covercase' ) ), array( 'glyphicon glyphicon-cloud' => __( 'Cloud', 'covercase' ) ), array( 'glyphicon glyphicon-envelope' => __( 'Envelope', 'covercase' ) ), array( 'glyphicon glyphicon-pencil' => __( 'Pencil', 'covercase' ) ), array( 'glyphicon glyphicon-glass' => __( 'Glass', 'covercase' ) ), array( 'glyphicon glyphicon-music' => __( 'Music', 'covercase' ) ), array( 'glyphicon glyphicon-search' => __( 'Search', 'covercase' ) ), array( 'glyphicon glyphicon-heart' => __( 'Heart', 'covercase' ) ), array( 'glyphicon glyphicon-star' => __( 'Star', 'covercase' ) ), array( 'glyphicon glyphicon-star-empty' => __( 'Star empty', 'covercase' ) ), array( 'glyphicon glyphicon-user' => __( 'User', 'covercase' ) ), array( 'glyphicon glyphicon-film' => __( 'Film', 'covercase' ) ), array( 'glyphicon glyphicon-th-large' => __( 'Th large', 'covercase' ) ), array( 'glyphicon glyphicon-th' => __( 'Th', 'covercase' ) ), array( 'glyphicon glyphicon-th-list' => __( 'Th list', 'covercase' ) ), array( 'glyphicon glyphicon-ok' => __( 'Ok', 'covercase' ) ), array( 'glyphicon glyphicon-remove' => __( 'Remove', 'covercase' ) ), array( 'glyphicon glyphicon-zoom-in' => __( 'Zoom in', 'covercase' ) ), array( 'glyphicon glyphicon-zoom-out' => __( 'Zoom out', 'covercase' ) ), array( 'glyphicon glyphicon-off' => __( 'Off', 'covercase' ) ), array( 'glyphicon glyphicon-signal' => __( 'Signal', 'covercase' ) ), array( 'glyphicon glyphicon-cog' => __( 'Cog', 'covercase' ) ), array( 'glyphicon glyphicon-trash' => __( 'Trash', 'covercase' ) ), array( 'glyphicon glyphicon-home' => __( 'Home', 'covercase' ) ), array( 'glyphicon glyphicon-file' => __( 'File', 'covercase' ) ), array( 'glyphicon glyphicon-time' => __( 'Time', 'covercase' ) ), array( 'glyphicon glyphicon-road' => __( 'Road', 'covercase' ) ), array( 'glyphicon glyphicon-download-alt' => __( 'Download alt', 'covercase' ) ), array( 'glyphicon glyphicon-download' => __( 'Download', 'covercase' ) ), array( 'glyphicon glyphicon-upload' => __( 'Upload', 'covercase' ) ), array( 'glyphicon glyphicon-inbox' => __( 'Inbox', 'covercase' ) ), array( 'glyphicon glyphicon-play-circle' => __( 'Play circle', 'covercase' ) ), array( 'glyphicon glyphicon-repeat' => __( 'Repeat', 'covercase' ) ), array( 'glyphicon glyphicon-refresh' => __( 'Refresh', 'covercase' ) ), array( 'glyphicon glyphicon-list-alt' => __( 'List alt', 'covercase' ) ), array( 'glyphicon glyphicon-lock' => __( 'Lock', 'covercase' ) ), array( 'glyphicon glyphicon-flag' => __( 'Flag', 'covercase' ) ), array( 'glyphicon glyphicon-headphones' => __( 'Headphones', 'covercase' ) ), array( 'glyphicon glyphicon-volume-off' => __( 'Volume off', 'covercase' ) ), array( 'glyphicon glyphicon-volume-down' => __( 'Volume down', 'covercase' ) ), array( 'glyphicon glyphicon-volume-up' => __( 'Volume up', 'covercase' ) ), array( 'glyphicon glyphicon-qrcode' => __( 'Qrcode', 'covercase' ) ), array( 'glyphicon glyphicon-barcode' => __( 'Barcode', 'covercase' ) ), array( 'glyphicon glyphicon-tag' => __( 'Tag', 'covercase' ) ), array( 'glyphicon glyphicon-tags' => __( 'Tags', 'covercase' ) ), array( 'glyphicon glyphicon-book' => __( 'Book', 'covercase' ) ), array( 'glyphicon glyphicon-bookmark' => __( 'Bookmark', 'covercase' ) ), array( 'glyphicon glyphicon-print' => __( 'Print', 'covercase' ) ), array( 'glyphicon glyphicon-camera' => __( 'Camera', 'covercase' ) ), array( 'glyphicon glyphicon-font' => __( 'Font', 'covercase' ) ), array( 'glyphicon glyphicon-bold' => __( 'Bold', 'covercase' ) ), array( 'glyphicon glyphicon-italic' => __( 'Italic', 'covercase' ) ), array( 'glyphicon glyphicon-text-height' => __( 'Text height', 'covercase' ) ), array( 'glyphicon glyphicon-text-width' => __( 'Text width', 'covercase' ) ), array( 'glyphicon glyphicon-align-left' => __( 'Align left', 'covercase' ) ), array( 'glyphicon glyphicon-align-center' => __( 'Align center', 'covercase' ) ), array( 'glyphicon glyphicon-align-right' => __( 'Align right', 'covercase' ) ), array( 'glyphicon glyphicon-align-justify' => __( 'Align justify', 'covercase' ) ), array( 'glyphicon glyphicon-list' => __( 'List', 'covercase' ) ), array( 'glyphicon glyphicon-indent-left' => __( 'Indent left', 'covercase' ) ), array( 'glyphicon glyphicon-indent-right' => __( 'Indent right', 'covercase' ) ), array( 'glyphicon glyphicon-facetime-video' => __( 'Facetime video', 'covercase' ) ), array( 'glyphicon glyphicon-picture' => __( 'Picture', 'covercase' ) ), array( 'glyphicon glyphicon-map-marker' => __( 'Map marker', 'covercase' ) ), array( 'glyphicon glyphicon-adjust' => __( 'Adjust', 'covercase' ) ), array( 'glyphicon glyphicon-tint' => __( 'Tint', 'covercase' ) ), array( 'glyphicon glyphicon-edit' => __( 'Edit', 'covercase' ) ), array( 'glyphicon glyphicon-share' => __( 'Share', 'covercase' ) ), array( 'glyphicon glyphicon-check' => __( 'Check', 'covercase' ) ), array( 'glyphicon glyphicon-move' => __( 'Move', 'covercase' ) ), array( 'glyphicon glyphicon-step-backward' => __( 'Step backward', 'covercase' ) ), array( 'glyphicon glyphicon-fast-backward' => __( 'Fast backward', 'covercase' ) ), array( 'glyphicon glyphicon-backward' => __( 'Backward', 'covercase' ) ), array( 'glyphicon glyphicon-play' => __( 'Play', 'covercase' ) ), array( 'glyphicon glyphicon-pause' => __( 'Pause', 'covercase' ) ), array( 'glyphicon glyphicon-stop' => __( 'Stop', 'covercase' ) ), array( 'glyphicon glyphicon-forward' => __( 'Forward', 'covercase' ) ), array( 'glyphicon glyphicon-fast-forward' => __( 'Fast forward', 'covercase' ) ), array( 'glyphicon glyphicon-step-forward' => __( 'Step forward', 'covercase' ) ), array( 'glyphicon glyphicon-eject' => __( 'Eject', 'covercase' ) ), array( 'glyphicon glyphicon-chevron-left' => __( 'Chevron left', 'covercase' ) ), array( 'glyphicon glyphicon-chevron-right' => __( 'Chevron right', 'covercase' ) ), array( 'glyphicon glyphicon-plus-sign' => __( 'Plus sign', 'covercase' ) ), array( 'glyphicon glyphicon-minus-sign' => __( 'Minus sign', 'covercase' ) ), array( 'glyphicon glyphicon-remove-sign' => __( 'Remove sign', 'covercase' ) ), array( 'glyphicon glyphicon-ok-sign' => __( 'Ok sign', 'covercase' ) ), array( 'glyphicon glyphicon-question-sign' => __( 'Question sign', 'covercase' ) ), array( 'glyphicon glyphicon-info-sign' => __( 'Info sign', 'covercase' ) ), array( 'glyphicon glyphicon-screenshot' => __( 'Screenshot', 'covercase' ) ), array( 'glyphicon glyphicon-remove-circle' => __( 'Remove circle', 'covercase' ) ), array( 'glyphicon glyphicon-ok-circle' => __( 'Ok circle', 'covercase' ) ), array( 'glyphicon glyphicon-ban-circle' => __( 'Ban circle', 'covercase' ) ), array( 'glyphicon glyphicon-arrow-left' => __( 'Arrow left', 'covercase' ) ), array( 'glyphicon glyphicon-arrow-right' => __( 'Arrow right', 'covercase' ) ), array( 'glyphicon glyphicon-arrow-up' => __( 'Arrow up', 'covercase' ) ), array( 'glyphicon glyphicon-arrow-down' => __( 'Arrow down', 'covercase' ) ), array( 'glyphicon glyphicon-share-alt' => __( 'Share alt', 'covercase' ) ), array( 'glyphicon glyphicon-resize-full' => __( 'Resize full', 'covercase' ) ), array( 'glyphicon glyphicon-resize-small' => __( 'Resize small', 'covercase' ) ), array( 'glyphicon glyphicon-exclamation-sign' => __( 'Exclamation sign', 'covercase' ) ), array( 'glyphicon glyphicon-gift' => __( 'Gift', 'covercase' ) ), array( 'glyphicon glyphicon-leaf' => __( 'Leaf', 'covercase' ) ), array( 'glyphicon glyphicon-fire' => __( 'Fire', 'covercase' ) ), array( 'glyphicon glyphicon-eye-open' => __( 'Eye open', 'covercase' ) ), array( 'glyphicon glyphicon-eye-close' => __( 'Eye close', 'covercase' ) ), array( 'glyphicon glyphicon-warning-sign' => __( 'Warning sign', 'covercase' ) ), array( 'glyphicon glyphicon-plane' => __( 'Plane', 'covercase' ) ), array( 'glyphicon glyphicon-calendar' => __( 'Calendar', 'covercase' ) ), array( 'glyphicon glyphicon-random' => __( 'Random', 'covercase' ) ), array( 'glyphicon glyphicon-comment' => __( 'Comment', 'covercase' ) ), array( 'glyphicon glyphicon-magnet' => __( 'Magnet', 'covercase' ) ), array( 'glyphicon glyphicon-chevron-up' => __( 'Chevron up', 'covercase' ) ), array( 'glyphicon glyphicon-chevron-down' => __( 'Chevron down', 'covercase' ) ), array( 'glyphicon glyphicon-retweet' => __( 'Retweet', 'covercase' ) ), array( 'glyphicon glyphicon-shopping-cart' => __( 'Shopping cart', 'covercase' ) ), array( 'glyphicon glyphicon-folder-close' => __( 'Folder close', 'covercase' ) ), array( 'glyphicon glyphicon-folder-open' => __( 'Folder open', 'covercase' ) ), array( 'glyphicon glyphicon-resize-vertical' => __( 'Resize vertical', 'covercase' ) ), array( 'glyphicon glyphicon-resize-horizontal' => __( 'Resize horizontal', 'covercase' ) ), array( 'glyphicon glyphicon-hdd' => __( 'Hdd', 'covercase' ) ), array( 'glyphicon glyphicon-bullhorn' => __( 'Bullhorn', 'covercase' ) ), array( 'glyphicon glyphicon-bell' => __( 'Bell', 'covercase' ) ), array( 'glyphicon glyphicon-certificate' => __( 'Certificate', 'covercase' ) ), array( 'glyphicon glyphicon-thumbs-up' => __( 'Thumbs up', 'covercase' ) ), array( 'glyphicon glyphicon-thumbs-down' => __( 'Thumbs down', 'covercase' ) ), array( 'glyphicon glyphicon-hand-right' => __( 'Hand right', 'covercase' ) ), array( 'glyphicon glyphicon-hand-left' => __( 'Hand left', 'covercase' ) ), array( 'glyphicon glyphicon-hand-up' => __( 'Hand up', 'covercase' ) ), array( 'glyphicon glyphicon-hand-down' => __( 'Hand down', 'covercase' ) ), array( 'glyphicon glyphicon-circle-arrow-right' => __( 'Circle arrow-right', 'covercase' ) ), array( 'glyphicon glyphicon-circle-arrow-left' => __( 'Circle arrow-left', 'covercase' ) ), array( 'glyphicon glyphicon-circle-arrow-up' => __( 'Circle arrow-up', 'covercase' ) ), array( 'glyphicon glyphicon-circle-arrow-down' => __( 'Circle arrow-down', 'covercase' ) ), array( 'glyphicon glyphicon-globe' => __( 'Globe', 'covercase' ) ), array( 'glyphicon glyphicon-wrench' => __( 'Wrench', 'covercase' ) ), array( 'glyphicon glyphicon-tasks' => __( 'Tasks', 'covercase' ) ), array( 'glyphicon glyphicon-filter' => __( 'Filter', 'covercase' ) ), array( 'glyphicon glyphicon-briefcase' => __( 'Briefcase', 'covercase' ) ), array( 'glyphicon glyphicon-fullscreen' => __( 'Fullscreen', 'covercase' ) ), array( 'glyphicon glyphicon-dashboard' => __( 'Dashboard', 'covercase' ) ), array( 'glyphicon glyphicon-paperclip' => __( 'Paperclip', 'covercase' ) ), array( 'glyphicon glyphicon-heart-empty' => __( 'Heart empty', 'covercase' ) ), array( 'glyphicon glyphicon-link' => __( 'Link', 'covercase' ) ), array( 'glyphicon glyphicon-phone' => __( 'Phone', 'covercase' ) ), array( 'glyphicon glyphicon-pushpin' => __( 'Pushpin', 'covercase' ) ), array( 'glyphicon glyphicon-usd' => __( 'Usd', 'covercase' ) ), array( 'glyphicon glyphicon-gbp' => __( 'Gbp', 'covercase' ) ), array( 'glyphicon glyphicon-sort' => __( 'Sort', 'covercase' ) ), array( 'glyphicon glyphicon-sort-by-alphabet' => __( 'Sort by-alphabet', 'covercase' ) ), array( 'glyphicon glyphicon-sort-by-alphabet-alt' => __( 'Sort by-alphabet-alt', 'covercase' ) ), array( 'glyphicon glyphicon-sort-by-order' => __( 'Sort by-order', 'covercase' ) ), array( 'glyphicon glyphicon-sort-by-order-alt' => __( 'Sort by-order-alt', 'covercase' ) ), array( 'glyphicon glyphicon-sort-by-attributes' => __( 'Sort by-attributes', 'covercase' ) ), array( 'glyphicon glyphicon-sort-by-attributes-alt' => __( 'Sort by-attributes-alt', 'covercase' ) ), array( 'glyphicon glyphicon-unchecked' => __( 'Unchecked', 'covercase' ) ), array( 'glyphicon glyphicon-expand' => __( 'Expand', 'covercase' ) ), array( 'glyphicon glyphicon-collapse-down' => __( 'Collapse down', 'covercase' ) ), array( 'glyphicon glyphicon-collapse-up' => __( 'Collapse up', 'covercase' ) ), array( 'glyphicon glyphicon-log-in' => __( 'Log in', 'covercase' ) ), array( 'glyphicon glyphicon-flash' => __( 'Flash', 'covercase' ) ), array( 'glyphicon glyphicon-log-out' => __( 'Log out', 'covercase' ) ), array( 'glyphicon glyphicon-new-window' => __( 'New window', 'covercase' ) ), array( 'glyphicon glyphicon-record' => __( 'Record', 'covercase' ) ), array( 'glyphicon glyphicon-save' => __( 'Save', 'covercase' ) ), array( 'glyphicon glyphicon-open' => __( 'Open', 'covercase' ) ), array( 'glyphicon glyphicon-saved' => __( 'Saved', 'covercase' ) ), array( 'glyphicon glyphicon-import' => __( 'Import', 'covercase' ) ), array( 'glyphicon glyphicon-export' => __( 'Export', 'covercase' ) ), array( 'glyphicon glyphicon-send' => __( 'Send', 'covercase' ) ), array( 'glyphicon glyphicon-floppy-disk' => __( 'Floppy disk', 'covercase' ) ), array( 'glyphicon glyphicon-floppy-saved' => __( 'Floppy saved', 'covercase' ) ), array( 'glyphicon glyphicon-floppy-remove' => __( 'Floppy remove', 'covercase' ) ), array( 'glyphicon glyphicon-floppy-save' => __( 'Floppy save', 'covercase' ) ), array( 'glyphicon glyphicon-floppy-open' => __( 'Floppy open', 'covercase' ) ), array( 'glyphicon glyphicon-credit-card' => __( 'Credit card', 'covercase' ) ), array( 'glyphicon glyphicon-transfer' => __( 'Transfer', 'covercase' ) ), array( 'glyphicon glyphicon-cutlery' => __( 'Cutlery', 'covercase' ) ), array( 'glyphicon glyphicon-header' => __( 'Header', 'covercase' ) ), array( 'glyphicon glyphicon-compressed' => __( 'Compressed', 'covercase' ) ), array( 'glyphicon glyphicon-earphone' => __( 'Earphone', 'covercase' ) ), array( 'glyphicon glyphicon-phone-alt' => __( 'Phone alt', 'covercase' ) ), array( 'glyphicon glyphicon-tower' => __( 'Tower', 'covercase' ) ), array( 'glyphicon glyphicon-stats' => __( 'Stats', 'covercase' ) ), array( 'glyphicon glyphicon-sd-video' => __( 'Sd video', 'covercase' ) ), array( 'glyphicon glyphicon-hd-video' => __( 'Hd video', 'covercase' ) ), array( 'glyphicon glyphicon-subtitles' => __( 'Subtitles', 'covercase' ) ), array( 'glyphicon glyphicon-sound-stereo' => __( 'Sound stereo', 'covercase' ) ), array( 'glyphicon glyphicon-sound-dolby' => __( 'Sound dolby', 'covercase' ) ), array( 'glyphicon glyphicon-sound-5-1' => __( 'Sound 5-1', 'covercase' ) ), array( 'glyphicon glyphicon-sound-6-1' => __( 'Sound 6-1', 'covercase' ) ), array( 'glyphicon glyphicon-sound-7-1' => __( 'Sound 7-1', 'covercase' ) ), array( 'glyphicon glyphicon-copyright-mark' => __( 'Copyright mark', 'covercase' ) ), array( 'glyphicon glyphicon-registration-mark' => __( 'Registration mark', 'covercase' ) ), array( 'glyphicon glyphicon-cloud-download' => __( 'Cloud download', 'covercase' ) ), array( 'glyphicon glyphicon-cloud-upload' => __( 'Cloud upload', 'covercase' ) ), array( 'glyphicon glyphicon-tree-conifer' => __( 'Tree conifer', 'covercase' ) ), array( 'glyphicon glyphicon-tree-deciduous' => __( 'Tree deciduous', 'covercase' ) ), array( 'glyphicon glyphicon-cd' => __( 'Cd', 'covercase' ) ), array( 'glyphicon glyphicon-save-file' => __( 'Save file', 'covercase' ) ), array( 'glyphicon glyphicon-open-file' => __( 'Open file', 'covercase' ) ), array( 'glyphicon glyphicon-level-up' => __( 'Level up', 'covercase' ) ), array( 'glyphicon glyphicon-copy' => __( 'Copy', 'covercase' ) ), array( 'glyphicon glyphicon-paste' => __( 'Paste', 'covercase' ) ), array( 'glyphicon glyphicon-alert' => __( 'Alert', 'covercase' ) ), array( 'glyphicon glyphicon-equalizer' => __( 'Equalizer', 'covercase' ) ), array( 'glyphicon glyphicon-king' => __( 'King', 'covercase' ) ), array( 'glyphicon glyphicon-queen' => __( 'Queen', 'covercase' ) ), array( 'glyphicon glyphicon-pawn' => __( 'Pawn', 'covercase' ) ), array( 'glyphicon glyphicon-bishop' => __( 'Bishop', 'covercase' ) ), array( 'glyphicon glyphicon-knight' => __( 'Knight', 'covercase' ) ), array( 'glyphicon glyphicon-baby-formula' => __( 'Baby formula', 'covercase' ) ), array( 'glyphicon glyphicon-tent' => __( 'Tent', 'covercase' ) ), array( 'glyphicon glyphicon-blackboard' => __( 'Blackboard', 'covercase' ) ), array( 'glyphicon glyphicon-bed' => __( 'Bed', 'covercase' ) ), array( 'glyphicon glyphicon-apple' => __( 'Apple', 'covercase' ) ), array( 'glyphicon glyphicon-erase' => __( 'Erase', 'covercase' ) ), array( 'glyphicon glyphicon-hourglass' => __( 'Hourglass', 'covercase' ) ), array( 'glyphicon glyphicon-lamp' => __( 'Lamp', 'covercase' ) ), array( 'glyphicon glyphicon-duplicate' => __( 'Duplicate', 'covercase' ) ), array( 'glyphicon glyphicon-piggy-bank' => __( 'Piggy bank', 'covercase' ) ), array( 'glyphicon glyphicon-scissors' => __( 'Scissors', 'covercase' ) ), array( 'glyphicon glyphicon-bitcoin' => __( 'Bitcoin', 'covercase' ) ), array( 'glyphicon glyphicon-btc' => __( 'Btc', 'covercase' ) ), array( 'glyphicon glyphicon-xbt' => __( 'Xbt', 'covercase' ) ), array( 'glyphicon glyphicon-yen' => __( 'Yen', 'covercase' ) ), array( 'glyphicon glyphicon-jpy' => __( 'Jpy', 'covercase' ) ), array( 'glyphicon glyphicon-ruble' => __( 'Ruble', 'covercase' ) ), array( 'glyphicon glyphicon-rub' => __( 'Rub', 'covercase' ) ), array( 'glyphicon glyphicon-scale' => __( 'Scale', 'covercase' ) ), array( 'glyphicon glyphicon-ice-lolly' => __( 'Ice lolly', 'covercase' ) ), array( 'glyphicon glyphicon-ice-lolly-tasted' => __( 'Ice lolly-tasted', 'covercase' ) ), array( 'glyphicon glyphicon-education' => __( 'Education', 'covercase' ) ), array( 'glyphicon glyphicon-option-horizontal' => __( 'Option horizontal', 'covercase' ) ), array( 'glyphicon glyphicon-option-vertical' => __( 'Option vertical', 'covercase' ) ), array( 'glyphicon glyphicon-menu-hamburger' => __( 'Menu hamburger', 'covercase' ) ), array( 'glyphicon glyphicon-modal-window' => __( 'Modal window', 'covercase' ) ), array( 'glyphicon glyphicon-oil' => __( 'Oil', 'covercase' ) ), array( 'glyphicon glyphicon-grain' => __( 'Grain', 'covercase' ) ), array( 'glyphicon glyphicon-sunglasses' => __( 'Sunglasses', 'covercase' ) ), array( 'glyphicon glyphicon-text-size' => __( 'Text size', 'covercase' ) ), array( 'glyphicon glyphicon-text-color' => __( 'Text color', 'covercase' ) ), array( 'glyphicon glyphicon-text-background' => __( 'Text background', 'covercase' ) ), array( 'glyphicon glyphicon-object-align-top' => __( 'Object align-top', 'covercase' ) ), array( 'glyphicon glyphicon-object-align-bottom' => __( 'Object align-bottom', 'covercase' ) ), array( 'glyphicon glyphicon-object-align-horizontal' => __( 'Object align-horizontal', 'covercase' ) ), array( 'glyphicon glyphicon-object-align-left' => __( 'Object align-left', 'covercase' ) ), array( 'glyphicon glyphicon-object-align-vertical' => __( 'Object align-vertical', 'covercase' ) ), array( 'glyphicon glyphicon-object-align-right' => __( 'Object align-right', 'covercase' ) ), array( 'glyphicon glyphicon-triangle-right' => __( 'Triangle right', 'covercase' ) ), array( 'glyphicon glyphicon-triangle-left' => __( 'Triangle left', 'covercase' ) ), array( 'glyphicon glyphicon-triangle-bottom' => __( 'Triangle bottom', 'covercase' ) ), array( 'glyphicon glyphicon-triangle-top' => __( 'Triangle top', 'covercase' ) ), array( 'glyphicon glyphicon-console' => __( 'Console', 'covercase' ) ), array( 'glyphicon glyphicon-superscript' => __( 'Superscript', 'covercase' ) ), array( 'glyphicon glyphicon-subscript' => __( 'Subscript', 'covercase' ) ), array( 'glyphicon glyphicon-menu-left' => __( 'Menu left', 'covercase' ) ), array( 'glyphicon glyphicon-menu-right' => __( 'Menu right', 'covercase' ) ), array( 'glyphicon glyphicon-menu-down' => __( 'Menu down', 'covercase' ) ), array( 'glyphicon glyphicon-menu-up' => __( 'Menu up', 'covercase' ) ) ); } add_filter( 'vc_iconpicker-type-bootstrap_font', 'covercase_vc_iconpicker_type_bootstrap_font', 999 ); } if ( ! function_exists( 'covercase_vc_iconpicker_type_feather' ) ) { /** * Feather font for VC icon_picker * * @since Covercase 1.0 */ function covercase_vc_iconpicker_type_feather( $icons ) { return array( array( 'icon-eye' => __( 'Eye', 'covercase' ) ), array( 'icon-paper-clip' => __( 'Paper clip', 'covercase' ) ), array( 'icon-mail' => __( 'Mail', 'covercase' ) ), array( 'icon-toggle' => __( 'Toggle', 'covercase' ) ), array( 'icon-layout' => __( 'Layout', 'covercase' ) ), array( 'icon-link' => __( 'Link', 'covercase' ) ), array( 'icon-bell' => __( 'Bell', 'covercase' ) ), array( 'icon-lock' => __( 'Lock', 'covercase' ) ), array( 'icon-unlock' => __( 'Unlock', 'covercase' ) ), array( 'icon-ribbon' => __( 'Ribbon', 'covercase' ) ), array( 'icon-image' => __( 'Image', 'covercase' ) ), array( 'icon-signal' => __( 'Signal', 'covercase' ) ), array( 'icon-target' => __( 'Target', 'covercase' ) ), array( 'icon-clipboard' => __( 'Clipboard', 'covercase' ) ), array( 'icon-clock' => __( 'Clock', 'covercase' ) ), array( 'icon-clock' => __( 'Clock', 'covercase' ) ), array( 'icon-watch' => __( 'Watch', 'covercase' ) ), array( 'icon-air-play' => __( 'Air play', 'covercase' ) ), array( 'icon-camera' => __( 'Camera', 'covercase' ) ), array( 'icon-video' => __( 'Video', 'covercase' ) ), array( 'icon-disc' => __( 'Disc', 'covercase' ) ), array( 'icon-printer' => __( 'Printer', 'covercase' ) ), array( 'icon-monitor' => __( 'Monitor', 'covercase' ) ), array( 'icon-server' => __( 'Server', 'covercase' ) ), array( 'icon-cog' => __( 'Cog', 'covercase' ) ), array( 'icon-heart' => __( 'Heart', 'covercase' ) ), array( 'icon-paragraph' => __( 'Paragraph', 'covercase' ) ), array( 'icon-align-justify' => __( 'Align justify', 'covercase' ) ), array( 'icon-align-left' => __( 'Align left', 'covercase' ) ), array( 'icon-align-center' => __( 'Align center', 'covercase' ) ), array( 'icon-align-right' => __( 'Align right', 'covercase' ) ), array( 'icon-book' => __( 'Book', 'covercase' ) ), array( 'icon-layers' => __( 'Layers', 'covercase' ) ), array( 'icon-stack' => __( 'Stack', 'covercase' ) ), array( 'icon-stack-2' => __( 'Stack 2', 'covercase' ) ), array( 'icon-paper' => __( 'Paper', 'covercase' ) ), array( 'icon-paper-stack' => __( 'Paper stack', 'covercase' ) ), array( 'icon-search' => __( 'Search', 'covercase' ) ), array( 'icon-zoom-in' => __( 'Zoom in', 'covercase' ) ), array( 'icon-zoom-out' => __( 'Zoom out', 'covercase' ) ), array( 'icon-reply' => __( 'Reply', 'covercase' ) ), array( 'icon-circle-plus' => __( 'Circle plus', 'covercase' ) ), array( 'icon-circle-minus' => __( 'Circle minus', 'covercase' ) ), array( 'icon-circle-check' => __( 'Circle check', 'covercase' ) ), array( 'icon-circle-cross' => __( 'Circle cross', 'covercase' ) ), array( 'icon-square-plus' => __( 'Square plus', 'covercase' ) ), array( 'icon-square-minus' => __( 'Square minus', 'covercase' ) ), array( 'icon-square-check' => __( 'Square check', 'covercase' ) ), array( 'icon-square-cross' => __( 'Square cross', 'covercase' ) ), array( 'icon-microphone' => __( 'Microphone', 'covercase' ) ), array( 'icon-record' => __( 'Record', 'covercase' ) ), array( 'icon-skip-back' => __( 'Skip back', 'covercase' ) ), array( 'icon-rewind' => __( 'Rewind', 'covercase' ) ), array( 'icon-play' => __( 'Play', 'covercase' ) ), array( 'icon-pause' => __( 'Pause', 'covercase' ) ), array( 'icon-stop' => __( 'Stop', 'covercase' ) ), array( 'icon-fast-forward' => __( 'Fast forward', 'covercase' ) ), array( 'icon-skip-forward' => __( 'Skip forward', 'covercase' ) ), array( 'icon-shuffle' => __( 'Shuffle', 'covercase' ) ), array( 'icon-repeat' => __( 'Repeat', 'covercase' ) ), array( 'icon-folder' => __( 'Folder', 'covercase' ) ), array( 'icon-umbrella' => __( 'Umbrella', 'covercase' ) ), array( 'icon-moon' => __( 'Moon', 'covercase' ) ), array( 'icon-thermometer' => __( 'Thermometer', 'covercase' ) ), array( 'icon-drop' => __( 'Drop', 'covercase' ) ), array( 'icon-sun' => __( 'Sun', 'covercase' ) ), array( 'icon-cloud' => __( 'Cloud', 'covercase' ) ), array( 'icon-cloud-upload' => __( 'Cloud upload', 'covercase' ) ), array( 'icon-cloud-download' => __( 'Cloud download', 'covercase' ) ), array( 'icon-upload' => __( 'Upload', 'covercase' ) ), array( 'icon-download' => __( 'Download', 'covercase' ) ), array( 'icon-location' => __( 'Location', 'covercase' ) ), array( 'icon-location-2' => __( 'Location 2', 'covercase' ) ), array( 'icon-map' => __( 'Map', 'covercase' ) ), array( 'icon-battery' => __( 'Battery', 'covercase' ) ), array( 'icon-head' => __( 'Head', 'covercase' ) ), array( 'icon-briefcase' => __( 'Briefcase', 'covercase' ) ), array( 'icon-speech-bubble' => __( 'Speech bubble', 'covercase' ) ), array( 'icon-anchor' => __( 'Anchor', 'covercase' ) ), array( 'icon-globe' => __( 'Globe', 'covercase' ) ), array( 'icon-box' => __( 'Box', 'covercase' ) ), array( 'icon-reload' => __( 'Reload', 'covercase' ) ), array( 'icon-share' => __( 'Share', 'covercase' ) ), array( 'icon-marquee' => __( 'Marquee', 'covercase' ) ), array( 'icon-marquee-plus' => __( 'Marquee plus', 'covercase' ) ), array( 'icon-marquee-minus' => __( 'Marquee minus', 'covercase' ) ), array( 'icon-tag' => __( 'Tag', 'covercase' ) ), array( 'icon-power' => __( 'Power', 'covercase' ) ), array( 'icon-command' => __( 'Command', 'covercase' ) ), array( 'icon-alt' => __( 'Alt', 'covercase' ) ), array( 'icon-esc' => __( 'Esc', 'covercase' ) ), array( 'icon-bar-graph' => __( 'Bar graph', 'covercase' ) ), array( 'icon-bar-graph-2' => __( 'Bar graph-2', 'covercase' ) ), array( 'icon-pie-graph' => __( 'Pie graph', 'covercase' ) ), array( 'icon-star' => __( 'Star', 'covercase' ) ), array( 'icon-arrow-left' => __( 'Arrow left', 'covercase' ) ), array( 'icon-arrow-right' => __( 'Arrow right', 'covercase' ) ), array( 'icon-arrow-up' => __( 'Arrow up', 'covercase' ) ), array( 'icon-arrow-down' => __( 'Arrow down', 'covercase' ) ), array( 'icon-volume' => __( 'Volume', 'covercase' ) ), array( 'icon-mute' => __( 'Mute', 'covercase' ) ), array( 'icon-content-right' => __( 'Content right', 'covercase' ) ), array( 'icon-content-left' => __( 'Content left', 'covercase' ) ), array( 'icon-grid' => __( 'Grid', 'covercase' ) ), array( 'icon-grid-2' => __( 'Grid 2', 'covercase' ) ), array( 'icon-columns' => __( 'Columns', 'covercase' ) ), array( 'icon-loader' => __( 'Loader', 'covercase' ) ), array( 'icon-bag' => __( 'Bag', 'covercase' ) ), array( 'icon-ban' => __( 'Ban', 'covercase' ) ), array( 'icon-flag' => __( 'Flag', 'covercase' ) ), array( 'icon-trash' => __( 'Trash', 'covercase' ) ), array( 'icon-expand' => __( 'Expand', 'covercase' ) ), array( 'icon-contract' => __( 'Contract', 'covercase' ) ), array( 'icon-maximize' => __( 'Maximize', 'covercase' ) ), array( 'icon-minimize' => __( 'Minimize', 'covercase' ) ), array( 'icon-plus' => __( 'Plus', 'covercase' ) ), array( 'icon-minus' => __( 'Minus', 'covercase' ) ), array( 'icon-check' => __( 'Check', 'covercase' ) ), array( 'icon-cross' => __( 'Cross', 'covercase' ) ), array( 'icon-move' => __( 'Move', 'covercase' ) ), array( 'icon-delete' => __( 'Delete', 'covercase' ) ), array( 'icon-menu' => __( 'Menu', 'covercase' ) ), array( 'icon-archive' => __( 'Archive', 'covercase' ) ), array( 'icon-inbox' => __( 'Inbox', 'covercase' ) ), array( 'icon-outbox' => __( 'Outbox', 'covercase' ) ), array( 'icon-file' => __( 'File', 'covercase' ) ), array( 'icon-file-add' => __( 'File add', 'covercase' ) ), array( 'icon-file-subtract' => __( 'File subtract', 'covercase' ) ), array( 'icon-help' => __( 'Help', 'covercase' ) ), array( 'icon-open' => __( 'Open', 'covercase' ) ), array( 'icon-ellipsis' => __( 'Ellipsis', 'covercase' ) ) ); } add_filter( 'vc_iconpicker-type-feather', 'covercase_vc_iconpicker_type_feather', 999 ); } if ( ! function_exists( 'covercase_vc_iconpicker_type_aisconverse_font' ) ) { /** * Aisconverse font for VC icon_picker * * @since Covercase 1.0 */ function covercase_vc_iconpicker_type_aisconverse_font( $icons ) { return array( array( 'aisconverse_icon armchair_chair_streamline' => __( 'Armchair chair streamline', 'covercase' ) ), array( 'aisconverse_icon arrow_streamline_target' => __( 'Arrow streamline target', 'covercase' ) ), array( 'aisconverse_icon backpack_streamline_trekking' => __( 'Backpack streamline trekking', 'covercase' ) ), array( 'aisconverse_icon bag_shopping_streamline' => __( 'Bag shopping streamline', 'covercase' ) ), array( 'aisconverse_icon barbecue_eat_food_streamline' => __( 'Barbecue eat food streamline', 'covercase' ) ), array( 'aisconverse_icon barista_coffee_espresso_streamline' => __( 'Barista coffee espresso streamline', 'covercase' ) ), array( 'aisconverse_icon bomb_bug' => __( 'Bomb bug', 'covercase' ) ), array( 'aisconverse_icon book_dowload_streamline' => __( 'Book dowload streamline', 'covercase' ) ), array( 'aisconverse_icon book_read_streamline' => __( 'Book read streamline', 'covercase' ) ), array( 'aisconverse_icon caddie_shop_shopping_streamline' => __( 'Caddie shop shopping streamline', 'covercase' ) ), array( 'aisconverse_icon caddie_shopping_streamline' => __( 'Caddie shopping streamline', 'covercase' ) ), array( 'aisconverse_icon camera_photo_polaroid_streamline' => __( 'Camera photo polaroid streamline', 'covercase' ) ), array( 'aisconverse_icon camera_photo_streamline' => __( 'Camera photo streamline', 'covercase' ) ), array( 'aisconverse_icon camera_streamline_video' => __( 'Camera streamline video', 'covercase' ) ), array( 'aisconverse_icon chaplin_hat_movie_streamline' => __( 'Chaplin hat movie streamline', 'covercase' ) ), array( 'aisconverse_icon chef_food_restaurant_streamline' => __( 'Chef food restaurant streamline', 'covercase' ) ), array( 'aisconverse_icon clock_streamline_time' => __( 'Clock streamline time', 'covercase' ) ), array( 'aisconverse_icon cocktail_mojito_streamline' => __( 'Cocktail mojito streamline', 'covercase' ) ), array( 'aisconverse_icon computer_network_streamline' => __( 'Computer network streamline', 'covercase' ) ), array( 'aisconverse_icon computer_streamline' => __( 'Computer streamline', 'covercase' ) ), array( 'aisconverse_icon cook_pan_pot_streamline' => __( 'Cook pan pot streamline', 'covercase' ) ), array( 'aisconverse_icon crop_streamline' => __( 'Crop streamline', 'covercase' ) ), array( 'aisconverse_icon crown_king_streamline' => __( 'Crown king streamline', 'covercase' ) ), array( 'aisconverse_icon danger_death_delete_destroy_skull_stream' => __( 'Danger death delete destroy skull stream', 'covercase' ) ), array( 'aisconverse_icon dashboard_speed_streamline' => __( 'Dashboard speed streamline', 'covercase' ) ), array( 'aisconverse_icon database_streamline' => __( 'Database streamline', 'covercase' ) ), array( 'aisconverse_icon delete_garbage_streamline' => __( 'Delete garbage streamline', 'covercase' ) ), array( 'aisconverse_icon earth_globe_streamline' => __( 'Earth globe streamline', 'covercase' ) ), array( 'aisconverse_icon eat_food_fork_knife_streamline' => __( 'Eat food fork knife streamline', 'covercase' ) ), array( 'aisconverse_icon eat_food_hotdog_streamline' => __( 'Eat food hotdog streamline', 'covercase' ) ), array( 'aisconverse_icon edit_modify_streamline' => __( 'Edit modify streamline', 'covercase' ) ), array( 'aisconverse_icon email_mail_streamline' => __( 'Email mail streamline', 'covercase' ) ), array( 'aisconverse_icon envellope_mail_streamline' => __( 'Envellope mail streamline', 'covercase' ) ), array( 'aisconverse_icon eye_dropper_streamline' => __( 'Eye dropper streamline', 'covercase' ) ), array( 'aisconverse_icon factory_lift_streamline_warehouse' => __( 'Factory lift streamline warehouse', 'covercase' ) ), array( 'aisconverse_icon first_aid_medecine_shield_streamline' => __( 'First aid medecine shield streamline', 'covercase' ) ), array( 'aisconverse_icon happy_smiley_streamline' => __( 'Happy smiley streamline', 'covercase' ) ), array( 'aisconverse_icon headset_sound_streamline' => __( 'Headset sound streamline', 'covercase' ) ), array( 'aisconverse_icon home_house_streamline' => __( 'Home house streamline', 'covercase' ) ), array( 'aisconverse_icon ibook_laptop' => __( 'Ibook laptop', 'covercase' ) ), array( 'aisconverse_icon ink_pen_streamline' => __( 'Ink pen streamline', 'covercase' ) ), array( 'aisconverse_icon ipad_streamline' => __( 'Ipad streamline', 'covercase' ) ), array( 'aisconverse_icon iphone_streamline' => __( 'Iphone streamline', 'covercase' ) ), array( 'aisconverse_icon ipod_mini_music_streamline' => __( 'Ipod mini music streamline', 'covercase' ) ), array( 'aisconverse_icon ipod_music_streamline' => __( 'Ipod music streamline', 'covercase' ) ), array( 'aisconverse_icon link_streamline' => __( 'Link streamline', 'covercase' ) ), array( 'aisconverse_icon lock_locker_streamline' => __( 'Lock locker streamline', 'covercase' ) ), array( 'aisconverse_icon locker_streamline_unlock' => __( 'Locker streamline unlock', 'covercase' ) ), array( 'aisconverse_icon macintosh' => __( 'Macintosh', 'covercase' ) ), array( 'aisconverse_icon magic_magic_wand_streamline' => __( 'Magic magic wand streamline', 'covercase' ) ), array( 'aisconverse_icon magnet_streamline' => __( 'Magnet streamline', 'covercase' ) ), array( 'aisconverse_icon man_people_streamline_user' => __( 'Man people streamline user', 'covercase' ) ), array( 'aisconverse_icon map_pin_streamline' => __( 'Map pin streamline', 'covercase' ) ), array( 'aisconverse_icon map_streamline_user' => __( 'Map streamline user', 'covercase' ) ), array( 'aisconverse_icon notebook_streamline' => __( 'Notebook streamline', 'covercase' ) ), array( 'aisconverse_icon paint_bucket_streamline' => __( 'Paint bucket streamline', 'covercase' ) ), array( 'aisconverse_icon painting_pallet_streamline' => __( 'Painting pallet streamline', 'covercase' ) ), array( 'aisconverse_icon painting_roll_streamline' => __( 'Painting roll streamline', 'covercase' ) ), array( 'aisconverse_icon pen_streamline' => __( 'Pen streamline', 'covercase' ) ), array( 'aisconverse_icon pen_streamline_1' => __( 'Pen streamline 1', 'covercase' ) ), array( 'aisconverse_icon pen_streamline_2' => __( 'Pen streamline 2', 'covercase' ) ), array( 'aisconverse_icon pen_streamline_3' => __( 'Pen streamline 3', 'covercase' ) ), array( 'aisconverse_icon photo_pictures_streamline' => __( 'Photo pictures streamline', 'covercase' ) ), array( 'aisconverse_icon settings_streamline' => __( 'Settings streamline', 'covercase' ) ), array( 'aisconverse_icon settings_streamline_1' => __( 'Settings streamline 1', 'covercase' ) ), array( 'aisconverse_icon settings_streamline_2' => __( 'Settings streamline 2', 'covercase' ) ), array( 'aisconverse_icon shoes_snickers_streamline' => __( 'Shoes snickers streamline', 'covercase' ) ), array( 'aisconverse_icon speech_streamline_talk_user' => __( 'Speech streamline talk user', 'covercase' ) ), array( 'aisconverse_icon stamp_streamline' => __( 'Stamp streamline', 'covercase' ) ), array( 'aisconverse_icon streamline_suitcase_travel' => __( 'Streamline suitcase travel', 'covercase' ) ), array( 'aisconverse_icon streamline_sync' => __( 'Streamline sync', 'covercase' ) ), array( 'aisconverse_icon streamline_umbrella_weather' => __( 'Streamline umbrella weather', 'covercase' ) ), array( 'aisconverse_icon browser_streamline_window' => __( 'Browser streamline window', 'covercase' ) ), array( 'aisconverse_icon brush_paint_streamline' => __( 'Brush paint streamline', 'covercase' ) ), array( 'aisconverse_icon bubble_comment_streamline_talk' => __( 'Bubble comment streamline talk', 'covercase' ) ), array( 'aisconverse_icon bubble_love_streamline_talk' => __( 'Bubble love streamline talk', 'covercase' ) ), array( 'aisconverse_icon coffee_streamline' => __( 'Coffee streamline', 'covercase' ) ), array( 'aisconverse_icon computer_imac' => __( 'Computer imac', 'covercase' ) ), array( 'aisconverse_icon computer_imac_2' => __( 'Computer imac 2', 'covercase' ) ), array( 'aisconverse_icon computer_macintosh_vintage' => __( 'Computer macintosh vintage', 'covercase' ) ), array( 'aisconverse_icon design_graphic_tablet_streamline_tablet' => __( 'Design graphic tablet streamline tablet', 'covercase' ) ), array( 'aisconverse_icon design_pencil_rule_streamline' => __( 'Design pencil rule streamline', 'covercase' ) ), array( 'aisconverse_icon diving_leisure_sea_sport_streamline' => __( 'Diving leisure sea sport streamline', 'covercase' ) ), array( 'aisconverse_icon drug_medecine_streamline_syringue' => __( 'Drug medecine streamline syringue', 'covercase' ) ), array( 'aisconverse_icon food_ice_cream_streamline' => __( 'Food ice cream streamline', 'covercase' ) ), array( 'aisconverse_icon frame_picture_streamline' => __( 'Frame picture streamline', 'covercase' ) ), array( 'aisconverse_icon grid_lines_streamline' => __( 'Grid lines streamline', 'covercase' ) ), array( 'aisconverse_icon handle_streamline_vector' => __( 'Handle streamline vector', 'covercase' ) ), array( 'aisconverse_icon ipod_streamline' => __( 'Ipod streamline', 'covercase' ) ), array( 'aisconverse_icon japan_streamline_tea' => __( 'Japan streamline tea', 'covercase' ) ), array( 'aisconverse_icon laptop_macbook_streamline' => __( 'Laptop macbook streamline', 'covercase' ) ), array( 'aisconverse_icon like_love_streamline' => __( 'Like love streamline', 'covercase' ) ), array( 'aisconverse_icon micro_record_streamline' => __( 'Micro record streamline', 'covercase' ) ), array( 'aisconverse_icon monocle_mustache_streamline' => __( 'Monocle mustache streamline', 'covercase' ) ), array( 'aisconverse_icon music_note_streamline' => __( 'Music note streamline', 'covercase' ) ), array( 'aisconverse_icon music_speaker_streamline' => __( 'Music speaker streamline', 'covercase' ) ), array( 'aisconverse_icon picture_streamline' => __( 'Picture streamline', 'covercase' ) ), array( 'aisconverse_icon picture_streamline_1' => __( 'Picture streamline 1', 'covercase' ) ), array( 'aisconverse_icon receipt_shopping_streamline' => __( 'Receipt shopping streamline', 'covercase' ) ), array( 'aisconverse_icon remote_control_streamline' => __( 'Remote control streamlin', 'covercase' ) ) ); } add_filter( 'vc_iconpicker-type-aisconverse_font', 'covercase_vc_iconpicker_type_aisconverse_font', 999 ); } if ( ! function_exists( 'covercase_vc_iconpicker_type_theme_font' ) ) { /** * Theme font for VC icon_picker * * @since Covercase 1.0 */ function covercase_vc_iconpicker_type_theme_font( $icons ) { return array( array( 'icond-thin-0310-support-help-talk-call' => __( 'Support', 'covercase' ) ), array( 'icond-thin-0322-mail-post-box' => __( 'Mail', 'covercase' ) ), array( 'icond-thin-0852-tea-coffee-hot' => __( 'Tea', 'covercase' ) ), array( 'icond-thin-0593-video-play-youtube' => __( 'Video', 'covercase' ) ), array( 'icond-thin-0629-photo-camera-tripod-stand' => __( 'Photo', 'covercase' ) ), array( 'icond-thin-0672-crop-image' => __( 'Crop', 'covercase' ) ), array( 'icond-thin-0213-hand-touch-click-press-one-finger' => __( 'Hand', 'covercase' ) ), array( 'icond-thin-0691-wall-paint-color' => __( 'Wall', 'covercase' ) ), array( 'icond-thin-0413-money-coins-jettons-chips' => __( 'Money', 'covercase' ) ), array( 'icond-thin-0442-shopping-cart-basket-store' => __( 'Shopping', 'covercase' ) ), array( 'icond-thin-0586-movie-video-camera-recording' => __( 'Movie', 'covercase' ) ), array( 'icond-thin-0618-album-picture-image-photo' => __( 'Album', 'covercase' ) ), array( 'icond-thin-0464-shipping-box-delivery' => __( 'Shipping', 'covercase' ) ), array( 'icond-thin-0465-shopping-cart-basket-store' => __( 'Shopping', 'covercase' ) ), array( 'icond-thin-0993-dress' => __( 'Dress', 'covercase' ) ), array( 'icond-thin-0998-women-high-heels-shoe' => __( 'Women', 'covercase' ) ), array( 'icond-thin-0986-t-shirt' => __( 'T-shirt', 'covercase' ) ), array( 'icond-thin-0072-document-file-paper-text' => __( 'Document', 'covercase' ) ), array( 'icond-thin-0111-folder-files-documents-1' => __( 'Folder', 'covercase' ) ), array( 'icond-thin-0289-mobile-phone-call-ringing-nfc-1' => __( 'Mobile Phone', 'covercase' ) ), array( 'icond-thin-0595-music-note-playing-sound-song-1' => __( 'Music', 'covercase' ) ), array( 'icond-thin-0622-wall-picture-image-photo-1' => __( 'Picture', 'covercase' ) ), array( 'icond-thin-0994-underwear-1' => __( 'Underwear', 'covercase' ) ), array( 'icond-thin-0996-baseball-cap-1' => __( 'Baseball', 'covercase' ) ), array( 'icond-thin-0999-sneakers-freetime-shoe-1' => __( 'Sneakers', 'covercase' ) ), array( 'icond-thin-0704-users-profile-group-couple-man-woman' => __( 'Users', 'covercase' ) ), array( 'icond-thin-0105-download-clipboard-box' => __( 'Download', 'covercase' ) ), array( 'icond-thin-0329-computer-laptop-user-login' => __( 'Computer', 'covercase' ) ), array( 'icond-thin-0408-wallet-money-payment' => __( 'Wallet', 'covercase' ) ), array( 'icond-thin-1041-mathematics-curve-coordinate-system' => __( 'Curve', 'covercase' ) ) ); } add_filter( 'vc_iconpicker-type-theme_font', 'covercase_vc_iconpicker_type_theme_font', 999 ); } if ( ! function_exists( 'covercase_vc_iconpicker_type_openiconic' ) ) { /** * Theme font for VC icon_picker * * @since Covercase 1.0 */ function covercase_vc_iconpicker_type_openiconic( $icons ) { return array( array( 'oi oi-account-login' => __( 'Account login', 'covercase' ) ), array( 'oi oi-account-logout' => __( 'Account logout', 'covercase' ) ), array( 'oi oi-action-redo' => __( 'Action redo', 'covercase' ) ), array( 'oi oi-action-undo' => __( 'Action undo', 'covercase' ) ), array( 'oi oi-align-center' => __( 'Align center', 'covercase' ) ), array( 'oi oi-align-left' => __( 'Align left', 'covercase' ) ), array( 'oi oi-align-right' => __( 'Align right', 'covercase' ) ), array( 'oi oi-aperture' => __( 'Aperture', 'covercase' ) ), array( 'oi oi-arrow-bottom' => __( 'Arrow bottom', 'covercase' ) ), array( 'oi oi-arrow-circle-bottom' => __( 'Arrow circle-bottom', 'covercase' ) ), array( 'oi oi-arrow-circle-left' => __( 'Arrow circle-left', 'covercase' ) ), array( 'oi oi-arrow-circle-right' => __( 'Arrow circle-right', 'covercase' ) ), array( 'oi oi-arrow-circle-top' => __( 'Arrow circle-top', 'covercase' ) ), array( 'oi oi-arrow-left' => __( 'Arrow left', 'covercase' ) ), array( 'oi oi-arrow-right' => __( 'Arrow right', 'covercase' ) ), array( 'oi oi-arrow-thick-bottom' => __( 'Arrow thick-bottom', 'covercase' ) ), array( 'oi oi-arrow-thick-left' => __( 'Arrow thick-left', 'covercase' ) ), array( 'oi oi-arrow-thick-right' => __( 'Arrow thick-right', 'covercase' ) ), array( 'oi oi-arrow-thick-top' => __( 'Arrow thick-top', 'covercase' ) ), array( 'oi oi-arrow-top' => __( 'Arrow top', 'covercase' ) ), array( 'oi oi-audio-spectrum' => __( 'Audio spectrum', 'covercase' ) ), array( 'oi oi-audio' => __( 'Audio', 'covercase' ) ), array( 'oi oi-badge' => __( 'Badge', 'covercase' ) ), array( 'oi oi-ban' => __( 'Ban', 'covercase' ) ), array( 'oi oi-bar-chart' => __( 'Bar chart', 'covercase' ) ), array( 'oi oi-basket' => __( 'Basket', 'covercase' ) ), array( 'oi oi-battery-empty' => __( 'Battery empty', 'covercase' ) ), array( 'oi oi-battery-full' => __( 'Battery full', 'covercase' ) ), array( 'oi oi-beaker' => __( 'Beaker', 'covercase' ) ), array( 'oi oi-bell' => __( 'Bell', 'covercase' ) ), array( 'oi oi-bluetooth' => __( 'Bluetooth', 'covercase' ) ), array( 'oi oi-bold' => __( 'Bold', 'covercase' ) ), array( 'oi oi-bolt' => __( 'Bolt', 'covercase' ) ), array( 'oi oi-book' => __( 'Book', 'covercase' ) ), array( 'oi oi-bookmark' => __( 'Bookmark', 'covercase' ) ), array( 'oi oi-box' => __( 'Box', 'covercase' ) ), array( 'oi oi-briefcase' => __( 'Briefcase', 'covercase' ) ), array( 'oi oi-british-pound' => __( 'British pound', 'covercase' ) ), array( 'oi oi-browser' => __( 'Browser', 'covercase' ) ), array( 'oi oi-brush' => __( 'Brush', 'covercase' ) ), array( 'oi oi-bug' => __( 'Bug', 'covercase' ) ), array( 'oi oi-bullhorn' => __( 'Bullhorn', 'covercase' ) ), array( 'oi oi-calculator' => __( 'Calculator', 'covercase' ) ), array( 'oi oi-calendar' => __( 'Calendar', 'covercase' ) ), array( 'oi oi-camera-slr' => __( 'Camera slr', 'covercase' ) ), array( 'oi oi-caret-bottom' => __( 'Caret bottom', 'covercase' ) ), array( 'oi oi-caret-left' => __( 'Caret left', 'covercase' ) ), array( 'oi oi-caret-right' => __( 'Caret right', 'covercase' ) ), array( 'oi oi-caret-top' => __( 'Caret top', 'covercase' ) ), array( 'oi oi-cart' => __( 'Cart', 'covercase' ) ), array( 'oi oi-chat' => __( 'Chat', 'covercase' ) ), array( 'oi oi-check' => __( 'Check', 'covercase' ) ), array( 'oi oi-chevron-bottom' => __( 'Chevron bottom', 'covercase' ) ), array( 'oi oi-chevron-left' => __( 'Chevron left', 'covercase' ) ), array( 'oi oi-chevron-right' => __( 'Chevron right', 'covercase' ) ), array( 'oi oi-chevron-top' => __( 'Chevron top', 'covercase' ) ), array( 'oi oi-circle-check' => __( 'Circle check', 'covercase' ) ), array( 'oi oi-circle-x' => __( 'Circle x', 'covercase' ) ), array( 'oi oi-clipboard' => __( 'Clipboard', 'covercase' ) ), array( 'oi oi-clock' => __( 'Clock', 'covercase' ) ), array( 'oi oi-cloud-download' => __( 'Cloud download', 'covercase' ) ), array( 'oi oi-cloud-upload' => __( 'Cloud upload', 'covercase' ) ), array( 'oi oi-cloud' => __( 'Cloud', 'covercase' ) ), array( 'oi oi-cloudy' => __( 'Cloudy', 'covercase' ) ), array( 'oi oi-code' => __( 'Code', 'covercase' ) ), array( 'oi oi-cog' => __( 'Cog', 'covercase' ) ), array( 'oi oi-collapse-down' => __( 'Collapse down', 'covercase' ) ), array( 'oi oi-collapse-left' => __( 'Collapse left', 'covercase' ) ), array( 'oi oi-collapse-right' => __( 'Collapse right', 'covercase' ) ), array( 'oi oi-collapse-up' => __( 'Collapse up', 'covercase' ) ), array( 'oi oi-command' => __( 'Command', 'covercase' ) ), array( 'oi oi-comment-square' => __( 'Comment square', 'covercase' ) ), array( 'oi oi-compass' => __( 'Compass', 'covercase' ) ), array( 'oi oi-contrast' => __( 'Contrast', 'covercase' ) ), array( 'oi oi-copywriting' => __( 'Copywriting', 'covercase' ) ), array( 'oi oi-credit-card' => __( 'Credit card', 'covercase' ) ), array( 'oi oi-crop' => __( 'Crop', 'covercase' ) ), array( 'oi oi-dashboard' => __( 'Dashboard', 'covercase' ) ), array( 'oi oi-data-transfer-download' => __( 'Data transfer-download', 'covercase' ) ), array( 'oi oi-data-transfer-upload' => __( 'Data transfer-upload', 'covercase' ) ), array( 'oi oi-delete' => __( 'Delete', 'covercase' ) ), array( 'oi oi-dial' => __( 'Dial', 'covercase' ) ), array( 'oi oi-document' => __( 'Document', 'covercase' ) ), array( 'oi oi-dollar' => __( 'Dollar', 'covercase' ) ), array( 'oi oi-double-quote-sans-left' => __( 'Double quote-sans-left', 'covercase' ) ), array( 'oi oi-double-quote-sans-right' => __( 'Double quote-sans-right', 'covercase' ) ), array( 'oi oi-double-quote-serif-left' => __( 'Double quote-serif-left', 'covercase' ) ), array( 'oi oi-double-quote-serif-right' => __( 'Double quote-serif-right', 'covercase' ) ), array( 'oi oi-droplet' => __( 'Droplet', 'covercase' ) ), array( 'oi oi-eject' => __( 'Eject', 'covercase' ) ), array( 'oi oi-elevator' => __( 'Elevator', 'covercase' ) ), array( 'oi oi-ellipses' => __( 'Ellipses', 'covercase' ) ), array( 'oi oi-envelope-closed' => __( 'Envelope closed', 'covercase' ) ), array( 'oi oi-envelope-open' => __( 'Envelope open', 'covercase' ) ), array( 'oi oi-euro' => __( 'Euro', 'covercase' ) ), array( 'oi oi-excerpt' => __( 'Excerpt', 'covercase' ) ), array( 'oi oi-expand-down' => __( 'Expand down', 'covercase' ) ), array( 'oi oi-expand-left' => __( 'Expand left', 'covercase' ) ), array( 'oi oi-expand-right' => __( 'Expand right', 'covercase' ) ), array( 'oi oi-expand-up' => __( 'Expand up', 'covercase' ) ), array( 'oi oi-external-link' => __( 'External link', 'covercase' ) ), array( 'oi oi-eye' => __( 'Eye', 'covercase' ) ), array( 'oi oi-eyedropper' => __( 'Eyedropper', 'covercase' ) ), array( 'oi oi-file' => __( 'File', 'covercase' ) ), array( 'oi oi-fire' => __( 'Fire', 'covercase' ) ), array( 'oi oi-flag' => __( 'Flag', 'covercase' ) ), array( 'oi oi-flash' => __( 'Flash', 'covercase' ) ), array( 'oi oi-folder' => __( 'Folder', 'covercase' ) ), array( 'oi oi-fork' => __( 'Fork', 'covercase' ) ), array( 'oi oi-fullscreen-enter' => __( 'Fullscreen enter', 'covercase' ) ), array( 'oi oi-fullscreen-exit' => __( 'Fullscreen exit', 'covercase' ) ), array( 'oi oi-globe' => __( 'Globe', 'covercase' ) ), array( 'oi oi-graph' => __( 'Graph', 'covercase' ) ), array( 'oi oi-grid-four-up' => __( 'Grid four-up', 'covercase' ) ), array( 'oi oi-grid-three-up' => __( 'Grid three-up', 'covercase' ) ), array( 'oi oi-grid-two-up' => __( 'Grid two-up', 'covercase' ) ), array( 'oi oi-hard-drive' => __( 'Hard drive', 'covercase' ) ), array( 'oi oi-header' => __( 'Header', 'covercase' ) ), array( 'oi oi-headphones' => __( 'Headphones', 'covercase' ) ), array( 'oi oi-heart' => __( 'Heart', 'covercase' ) ), array( 'oi oi-home' => __( 'Home', 'covercase' ) ), array( 'oi oi-image' => __( 'Image', 'covercase' ) ), array( 'oi oi-inbox' => __( 'Inbox', 'covercase' ) ), array( 'oi oi-infinity' => __( 'Infinity', 'covercase' ) ), array( 'oi oi-info' => __( 'Info', 'covercase' ) ), array( 'oi oi-italic' => __( 'Italic', 'covercase' ) ), array( 'oi oi-justify-center' => __( 'Justify center', 'covercase' ) ), array( 'oi oi-justify-left' => __( 'Justify left', 'covercase' ) ), array( 'oi oi-justify-right' => __( 'Justify right', 'covercase' ) ), array( 'oi oi-key' => __( 'Key', 'covercase' ) ), array( 'oi oi-laptop' => __( 'Laptop', 'covercase' ) ), array( 'oi oi-layers' => __( 'Layers', 'covercase' ) ), array( 'oi oi-lightbulb' => __( 'Lightbulb', 'covercase' ) ), array( 'oi oi-link-broken' => __( 'Link broken', 'covercase' ) ), array( 'oi oi-link-intact' => __( 'Link intact', 'covercase' ) ), array( 'oi oi-list-rich' => __( 'List rich', 'covercase' ) ), array( 'oi oi-list' => __( 'List', 'covercase' ) ), array( 'oi oi-location' => __( 'Location', 'covercase' ) ), array( 'oi oi-lock-locked' => __( 'Lock locked', 'covercase' ) ), array( 'oi oi-lock-unlocked' => __( 'Lock unlocked', 'covercase' ) ), array( 'oi oi-loop-circular' => __( 'Loop circular', 'covercase' ) ), array( 'oi oi-loop-square' => __( 'Loop square', 'covercase' ) ), array( 'oi oi-loop' => __( 'Loop', 'covercase' ) ), array( 'oi oi-magnifying-glass' => __( 'Magnifying glass', 'covercase' ) ), array( 'oi oi-map-marker' => __( 'Map marker', 'covercase' ) ), array( 'oi oi-map' => __( 'Map', 'covercase' ) ), array( 'oi oi-media-pause' => __( 'Media pause', 'covercase' ) ), array( 'oi oi-media-play' => __( 'Media play', 'covercase' ) ), array( 'oi oi-media-record' => __( 'Media record', 'covercase' ) ), array( 'oi oi-media-skip-backward' => __( 'Media skip-backward', 'covercase' ) ), array( 'oi oi-media-skip-forward' => __( 'Media skip-forward', 'covercase' ) ), array( 'oi oi-media-step-backward' => __( 'Media step-backward', 'covercase' ) ), array( 'oi oi-media-step-forward' => __( 'Media step-forward', 'covercase' ) ), array( 'oi oi-media-stop' => __( 'Media stop', 'covercase' ) ), array( 'oi oi-medical-cross' => __( 'Medical cross', 'covercase' ) ), array( 'oi oi-menu' => __( 'Menu', 'covercase' ) ), array( 'oi oi-microphone' => __( 'Microphone', 'covercase' ) ), array( 'oi oi-minus' => __( 'Minus', 'covercase' ) ), array( 'oi oi-monitor' => __( 'Monitor', 'covercase' ) ), array( 'oi oi-moon' => __( 'Moon', 'covercase' ) ), array( 'oi oi-move' => __( 'Move', 'covercase' ) ), array( 'oi oi-musical-note' => __( 'Musical note', 'covercase' ) ), array( 'oi oi-paperclip' => __( 'Paperclip', 'covercase' ) ), array( 'oi oi-pencil' => __( 'Pencil', 'covercase' ) ), array( 'oi oi-people' => __( 'People', 'covercase' ) ), array( 'oi oi-person' => __( 'Person', 'covercase' ) ), array( 'oi oi-phone' => __( 'Phone', 'covercase' ) ), array( 'oi oi-pie-chart' => __( 'Pie chart', 'covercase' ) ), array( 'oi oi-pin' => __( 'Pin', 'covercase' ) ), array( 'oi oi-play-circle' => __( 'Play circle', 'covercase' ) ), array( 'oi oi-plus' => __( 'Plus', 'covercase' ) ), array( 'oi oi-power-standby' => __( 'Power standby', 'covercase' ) ), array( 'oi oi-print' => __( 'Print', 'covercase' ) ), array( 'oi oi-project' => __( 'Project', 'covercase' ) ), array( 'oi oi-pulse' => __( 'Pulse', 'covercase' ) ), array( 'oi oi-puzzle-piece' => __( 'Puzzle piece', 'covercase' ) ), array( 'oi oi-question-mark' => __( 'Question mark', 'covercase' ) ), array( 'oi oi-rain' => __( 'Rain', 'covercase' ) ), array( 'oi oi-random' => __( 'Random', 'covercase' ) ), array( 'oi oi-reload' => __( 'Reload', 'covercase' ) ), array( 'oi oi-resize-both' => __( 'Resize both', 'covercase' ) ), array( 'oi oi-resize-height' => __( 'Resize height', 'covercase' ) ), array( 'oi oi-resize-width' => __( 'Resize width', 'covercase' ) ), array( 'oi oi-rss-alt' => __( 'Rss alt', 'covercase' ) ), array( 'oi oi-rss' => __( 'Rss', 'covercase' ) ), array( 'oi oi-script' => __( 'Script', 'covercase' ) ), array( 'oi oi-share-boxed' => __( 'Share boxed', 'covercase' ) ), array( 'oi oi-share' => __( 'Share', 'covercase' ) ), array( 'oi oi-shield' => __( 'Shield', 'covercase' ) ), array( 'oi oi-signal' => __( 'Signal', 'covercase' ) ), array( 'oi oi-signpost' => __( 'Signpost', 'covercase' ) ), array( 'oi oi-sort-ascending' => __( 'Sort ascending', 'covercase' ) ), array( 'oi oi-sort-descending' => __( 'Sort descending', 'covercase' ) ), array( 'oi oi-spreadsheet' => __( 'Spreadsheet', 'covercase' ) ), array( 'oi oi-star' => __( 'Star', 'covercase' ) ), array( 'oi oi-sun' => __( 'Sun', 'covercase' ) ), array( 'oi oi-tablet' => __( 'Tablet', 'covercase' ) ), array( 'oi oi-tag' => __( 'Tag', 'covercase' ) ), array( 'oi oi-tags' => __( 'Tags', 'covercase' ) ), array( 'oi oi-target' => __( 'Target', 'covercase' ) ), array( 'oi oi-task' => __( 'Task', 'covercase' ) ), array( 'oi oi-terminal' => __( 'Terminal', 'covercase' ) ), array( 'oi oi-text' => __( 'Text', 'covercase' ) ), array( 'oi oi-thumb-down' => __( 'Thumb down', 'covercase' ) ), array( 'oi oi-thumb-up' => __( 'Thumb up', 'covercase' ) ), array( 'oi oi-timer' => __( 'Timer', 'covercase' ) ), array( 'oi oi-transfer' => __( 'Transfer', 'covercase' ) ), array( 'oi oi-trash' => __( 'Trash', 'covercase' ) ), array( 'oi oi-underline' => __( 'Underline', 'covercase' ) ), array( 'oi oi-vertical-align-bottom' => __( 'Vertical align-bottom', 'covercase' ) ), array( 'oi oi-vertical-align-center' => __( 'Vertical align-center', 'covercase' ) ), array( 'oi oi-vertical-align-top' => __( 'Vertical align-top', 'covercase' ) ), array( 'oi oi-video' => __( 'Video', 'covercase' ) ), array( 'oi oi-volume-high' => __( 'Volume high', 'covercase' ) ), array( 'oi oi-volume-low' => __( 'Volume low', 'covercase' ) ), array( 'oi oi-volume-off' => __( 'Volume off', 'covercase' ) ), array( 'oi oi-warning' => __( 'Warning', 'covercase' ) ), array( 'oi oi-wifi' => __( 'Wifi', 'covercase' ) ), array( 'oi oi-wrench' => __( 'Wrench', 'covercase' ) ), array( 'oi oi-x' => __( 'X', 'covercase' ) ), array( 'oi oi-yen' => __( 'Yen', 'covercase' ) ), array( 'oi oi-zoom-in' => __( 'Zoom in', 'covercase' ) ), array( 'oi oi-zoom-out' => __( 'Zoom out', 'covercase' ) ) ); } add_filter( 'vc_iconpicker-type-openiconic', 'covercase_vc_iconpicker_type_openiconic', 999 ); } if ( ! function_exists( 'covercase_vc_iconpicker_type_sharpicons' ) ) { /** * Sharpicons font for VC icon_picker * * @since Covercase 1.0 */ function covercase_vc_iconpicker_type_sharpicons( $icons ) { return array( __( 'Alignment', 'covercase' ) => array( array( 'si-alignment-align-all' => __( 'Align all', 'covercase' ) ), array( 'si-alignment-align-all-1' => __( 'Align all 1', 'covercase' ) ), array( 'si-alignment-align-center' => __( 'Align center', 'covercase' ) ), array( 'si-alignment-align-center-point-horizontal' => __( 'Align center point horizontal', 'covercase' ) ), array( 'si-alignment-align-center-point-vertical' => __( 'Align center point vertical', 'covercase' ) ), array( 'si-alignment-align-justify-all' => __( 'Align justify all', 'covercase' ) ), array( 'si-alignment-align-justify-center' => __( 'Align justify center', 'covercase' ) ), array( 'si-alignment-align-justify-left' => __( 'Align justify left', 'covercase' ) ), array( 'si-alignment-align-justify-right' => __( 'Align justify right', 'covercase' ) ), array( 'si-alignment-align-left' => __( 'Align left', 'covercase' ) ), array( 'si-alignment-align-right' => __( 'Align right', 'covercase' ) ), array( 'si-alignment-column-row' => __( 'Column row', 'covercase' ) ), array( 'si-alignment-grid-align' => __( 'Grid align', 'covercase' ) ), array( 'si-alignment-horizontal-align-bottom-1' => __( 'Horizontal align bottom 1', 'covercase' ) ), array( 'si-alignment-horizontal-align-bottom-2' => __( 'Horizontal align bottom 2', 'covercase' ) ), array( 'si-alignment-horizontal-align-center-left-1' => __( 'Horizontal align center left 1', 'covercase' ) ), array( 'si-alignment-horizontal-align-center-right-1' => __( 'Horizontal align center right 1', 'covercase' ) ), array( 'si-alignment-horizontal-align-top-1' => __( 'Horizontal align top 1', 'covercase' ) ), array( 'si-alignment-horizontal-align-top-2' => __( 'Horizontal align top 2', 'covercase' ) ), array( 'si-alignment-indent-left-margin' => __( 'Indent left margin', 'covercase' ) ), array( 'si-alignment-indent-right-margin' => __( 'Indent right margin', 'covercase' ) ), array( 'si-alignment-letter-align-1' => __( 'Letter align 1', 'covercase' ) ), array( 'si-alignment-text-align' => __( 'Text align', 'covercase' ) ), array( 'si-alignment-vertical-align-botton' => __( 'Vertical align botton', 'covercase' ) ), array( 'si-alignment-vertical-align-center-1' => __( 'Vertical align center 1', 'covercase' ) ), array( 'si-alignment-vertical-align-left' => __( 'Vertical align left', 'covercase' ) ), array( 'si-alignment-vertical-align-left-1' => __( 'Vertical align left 1', 'covercase' ) ), array( 'si-alignment-vertical-align-right' => __( 'Vertical align right', 'covercase' ) ), array( 'si-alignment-vertical-align-right-1' => __( 'Vertical align right 1', 'covercase' ) ), array( 'si-alignment-vertical-align-top' => __( 'Vertical align top', 'covercase' ) ) ), __( 'Animal', 'covercase' ) => array( array( 'si-animal-aligator' => __( 'Aligator', 'covercase' ) ), array( 'si-animal-bat' => __( 'Bat', 'covercase' ) ), array( 'si-animal-bear' => __( 'Bear', 'covercase' ) ), array( 'si-animal-bear3' => __( 'Bear3', 'covercase' ) ), array( 'si-animal-bee' => __( 'Bee', 'covercase' ) ), array( 'si-animal-bird' => __( 'Bird', 'covercase' ) ), array( 'si-animal-bug' => __( 'Bug', 'covercase' ) ), array( 'si-animal-bull' => __( 'Bull', 'covercase' ) ), array( 'si-animal-butterfly' => __( 'Butterfly', 'covercase' ) ), array( 'si-animal-camel' => __( 'Camel', 'covercase' ) ), array( 'si-animal-cat' => __( 'Cat', 'covercase' ) ), array( 'si-animal-cheetah' => __( 'Cheetah', 'covercase' ) ), array( 'si-animal-cow' => __( 'Cow', 'covercase' ) ), array( 'si-animal-crab' => __( 'Crab', 'covercase' ) ), array( 'si-animal-deer' => __( 'Deer', 'covercase' ) ), array( 'si-animal-dog' => __( 'Dog', 'covercase' ) ), array( 'si-animal-dolphin' => __( 'Dolphin', 'covercase' ) ), array( 'si-animal-donkey' => __( 'Donkey', 'covercase' ) ), array( 'si-animal-dove' => __( 'Dove', 'covercase' ) ), array( 'si-animal-duck' => __( 'Duck', 'covercase' ) ), array( 'si-animal-eagle' => __( 'Eagle', 'covercase' ) ), array( 'si-animal-elephant' => __( 'Elephant', 'covercase' ) ), array( 'si-animal-elephant-2' => __( 'Elephant 2', 'covercase' ) ), array( 'si-animal-fish' => __( 'Fish', 'covercase' ) ), array( 'si-animal-fox' => __( 'Fox', 'covercase' ) ), array( 'si-animal-frog' => __( 'Frog', 'covercase' ) ), array( 'si-animal-giraffe' => __( 'Giraffe', 'covercase' ) ), array( 'si-animal-hippo' => __( 'Hippo', 'covercase' ) ), array( 'si-animal-hippo-2' => __( 'Hippo 2', 'covercase' ) ), array( 'si-animal-horse' => __( 'Horse', 'covercase' ) ), array( 'si-animal-jellyfish' => __( 'Jellyfish', 'covercase' ) ), array( 'si-animal-koala' => __( 'Koala', 'covercase' ) ), array( 'si-animal-koala-2' => __( 'Koala 2', 'covercase' ) ), array( 'si-animal-leopard' => __( 'Leopard', 'covercase' ) ), array( 'si-animal-lion' => __( 'Lion', 'covercase' ) ), array( 'si-animal-monkey' => __( 'Monkey', 'covercase' ) ), array( 'si-animal-mouse' => __( 'Mouse', 'covercase' ) ), array( 'si-animal-octopus' => __( 'Octopus', 'covercase' ) ), array( 'si-animal-orca' => __( 'Orca', 'covercase' ) ), array( 'si-animal-owl' => __( 'Owl', 'covercase' ) ), array( 'si-animal-panda' => __( 'Panda', 'covercase' ) ), array( 'si-animal-penguin' => __( 'Penguin', 'covercase' ) ), array( 'si-animal-pig' => __( 'Pig', 'covercase' ) ), array( 'si-animal-rabbit' => __( 'Rabbit', 'covercase' ) ), array( 'si-animal-rhinoceros' => __( 'Rhinoceros', 'covercase' ) ), array( 'si-animal-rooster' => __( 'Rooster', 'covercase' ) ), array( 'si-animal-sea-horse' => __( 'Sea horse', 'covercase' ) ), array( 'si-animal-sea-star' => __( 'Sea star', 'covercase' ) ), array( 'si-animal-sheep' => __( 'Sheep', 'covercase' ) ), array( 'si-animal-shell' => __( 'Shell', 'covercase' ) ), array( 'si-animal-snake' => __( 'Snake', 'covercase' ) ), array( 'si-animal-spider' => __( 'Spider', 'covercase' ) ), array( 'si-animal-tiger' => __( 'Tiger', 'covercase' ) ), array( 'si-animal-turtle' => __( 'Turtle', 'covercase' ) ), array( 'si-animal-wolf' => __( 'Wolf', 'covercase' ) ) ), __( 'Arrows', 'covercase' ) => array( array( 'si-arrows-arrow-lop' => __( 'Arrow lop', 'covercase' ) ), array( 'si-arrows-arrow-right-over' => __( 'Arrow right over', 'covercase' ) ), array( 'si-arrows-arrow-right-over-1' => __( 'Arrow right over 1', 'covercase' ) ), array( 'si-arrows-arrow-turn-all-sides' => __( 'Arrow turn all sides', 'covercase' ) ), array( 'si-arrows-arrow-turn-left' => __( 'Arrow turn left', 'covercase' ) ), array( 'si-arrows-arrow-turn-right' => __( 'Arrow turn right', 'covercase' ) ), array( 'si-arrows-arrows-refresh' => __( 'Arrows refresh', 'covercase' ) ), array( 'si-arrows-back-left-arrow' => __( 'Back left arrow', 'covercase' ) ), array( 'si-arrows-back-right-arrow' => __( 'Back right arrow', 'covercase' ) ), array( 'si-arrows-both-way-arrows' => __( 'Both way arrows', 'covercase' ) ), array( 'si-arrows-bottom-align' => __( 'Bottom align', 'covercase' ) ), array( 'si-arrows-bottom-align-1' => __( 'Bottom align 1', 'covercase' ) ), array( 'si-arrows-bottom-arrow-2' => __( 'Bottom arrow 2', 'covercase' ) ), array( 'si-arrows-bottom-big-arrow' => __( 'Bottom big arrow', 'covercase' ) ), array( 'si-arrows-bottom-big-arrow-1' => __( 'Bottom big arrow 1', 'covercase' ) ), array( 'si-arrows-bottom-right-corner' => __( 'Bottom right corner', 'covercase' ) ), array( 'si-arrows-cr-loop' => __( 'Cr loop', 'covercase' ) ), array( 'si-arrows-double-arrow-down' => __( 'Double arrow down', 'covercase' ) ), array( 'si-arrows-double-arrow-left' => __( 'Double arrow left', 'covercase' ) ), array( 'si-arrows-double-arrow-right' => __( 'Double arrow right', 'covercase' ) ), array( 'si-arrows-double-arrow-up' => __( 'Double arrow up', 'covercase' ) ), array( 'si-arrows-down' => __( 'Down', 'covercase' ) ), array( 'si-arrows-down-circle' => __( 'Down circle', 'covercase' ) ), array( 'si-arrows-down-sign' => __( 'Down sign', 'covercase' ) ), array( 'si-arrows-expand' => __( 'Expand', 'covercase' ) ), array( 'si-arrows-expand-1' => __( 'Expand 1', 'covercase' ) ), array( 'si-arrows-expand-2' => __( 'Expand 2', 'covercase' ) ), array( 'si-arrows-expand-3' => __( 'Expand 3', 'covercase' ) ), array( 'si-arrows-forbidden-down' => __( 'Forbidden down', 'covercase' ) ), array( 'si-arrows-forbidden-left' => __( 'Forbidden left', 'covercase' ) ), array( 'si-arrows-forbidden-right' => __( 'Forbidden right', 'covercase' ) ), array( 'si-arrows-forbidden-up' => __( 'Forbidden up', 'covercase' ) ), array( 'si-arrows-frame' => __( 'Frame', 'covercase' ) ), array( 'si-arrows-full-expand' => __( 'Full expand', 'covercase' ) ), array( 'si-arrows-full-expand-1' => __( 'Full expand 1', 'covercase' ) ), array( 'si-arrows-go-boith-ways-1' => __( 'Go boith ways 1', 'covercase' ) ), array( 'si-arrows-go-both-ways' => __( 'Go both ways', 'covercase' ) ), array( 'si-arrows-go-down-left' => __( 'Go down left', 'covercase' ) ), array( 'si-arrows-go-downright' => __( 'Go downright', 'covercase' ) ), array( 'si-arrows-go-right-left' => __( 'Go right left', 'covercase' ) ), array( 'si-arrows-go-top-left' => __( 'Go top left', 'covercase' ) ), array( 'si-arrows-go-top-right' => __( 'Go top right', 'covercase' ) ), array( 'si-arrows-left' => __( 'Left', 'covercase' ) ), array( 'si-arrows-left-align' => __( 'Left align', 'covercase' ) ), array( 'si-arrows-left-align-1' => __( 'Left align 1', 'covercase' ) ), array( 'si-arrows-left-arrow-2' => __( 'Left arrow 2', 'covercase' ) ), array( 'si-arrows-left-big-arrow' => __( 'Left big arrow', 'covercase' ) ), array( 'si-arrows-left-big-arrow-1' => __( 'Left big arrow 1', 'covercase' ) ), array( 'si-arrows-left-big-arrow-2' => __( 'Left big arrow 2', 'covercase' ) ), array( 'si-arrows-left-circle' => __( 'Left circle', 'covercase' ) ), array( 'si-arrows-left-inside' => __( 'Left inside', 'covercase' ) ), array( 'si-arrows-left-right' => __( 'Left right', 'covercase' ) ), array( 'si-arrows-left-side' => __( 'Left side', 'covercase' ) ), array( 'si-arrows-left-sign' => __( 'Left sign', 'covercase' ) ), array( 'si-arrows-minimize' => __( 'Minimize', 'covercase' ) ), array( 'si-arrows-minimize-frame' => __( 'Minimize frame', 'covercase' ) ), array( 'si-arrows-program-window' => __( 'Program window', 'covercase' ) ), array( 'si-arrows-reload-1' => __( 'Reload 1', 'covercase' ) ), array( 'si-arrows-reload-3' => __( 'Reload 3', 'covercase' ) ), array( 'si-arrows-reload-4' => __( 'Reload 4', 'covercase' ) ), array( 'si-arrows-repeat-arrows' => __( 'Repeat arrows', 'covercase' ) ), array( 'si-arrows-right' => __( 'Right', 'covercase' ) ), array( 'si-arrows-right-align' => __( 'Right align', 'covercase' ) ), array( 'si-arrows-right-align-1' => __( 'Right align 1', 'covercase' ) ), array( 'si-arrows-right-arrow-2' => __( 'Right arrow 2', 'covercase' ) ), array( 'si-arrows-right-big-arrow' => __( 'Right big arrow', 'covercase' ) ), array( 'si-arrows-right-big-arrow-1' => __( 'Right big arrow 1', 'covercase' ) ), array( 'si-arrows-right-big-arrow-2' => __( 'Right big arrow 2', 'covercase' ) ), array( 'si-arrows-right-circle' => __( 'Right circle', 'covercase' ) ), array( 'si-arrows-right-corner' => __( 'Right corner', 'covercase' ) ), array( 'si-arrows-right-inside' => __( 'Right inside', 'covercase' ) ), array( 'si-arrows-right-left-arrow-2' => __( 'Right left arrow 2', 'covercase' ) ), array( 'si-arrows-right-side' => __( 'Right side', 'covercase' ) ), array( 'si-arrows-right-sign' => __( 'Right sign', 'covercase' ) ), array( 'si-arrows-start-end-points' => __( 'Start end points', 'covercase' ) ), array( 'si-arrows-step-back' => __( 'Step back', 'covercase' ) ), array( 'si-arrows-step-down' => __( 'Step down', 'covercase' ) ), array( 'si-arrows-step-forward' => __( 'Step forward', 'covercase' ) ), array( 'si-arrows-step-up' => __( 'Step up', 'covercase' ) ), array( 'si-arrows-top-align' => __( 'Top align', 'covercase' ) ), array( 'si-arrows-top-align-1' => __( 'Top align 1', 'covercase' ) ), array( 'si-arrows-top-arrow-2' => __( 'Top arrow 2', 'covercase' ) ), array( 'si-arrows-top-big-arrow' => __( 'Top big arrow', 'covercase' ) ), array( 'si-arrows-top-big-arrow-1' => __( 'Top big arrow 1', 'covercase' ) ), array( 'si-arrows-top-circle' => __( 'Top circle', 'covercase' ) ), array( 'si-arrows-turn-left' => __( 'Turn left', 'covercase' ) ), array( 'si-arrows-turn-left-right-arrows' => __( 'Turn left right arrows', 'covercase' ) ), array( 'si-arrows-turn-right' => __( 'Turn right', 'covercase' ) ), array( 'si-arrows-two-way-left' => __( 'Two way left', 'covercase' ) ), array( 'si-arrows-two-way-right' => __( 'Two way right', 'covercase' ) ), array( 'si-arrows-up' => __( 'Up', 'covercase' ) ), array( 'si-arrows-up-down' => __( 'Up down', 'covercase' ) ), array( 'si-arrows-up-down-arrow-2' => __( 'Up down arrow 2', 'covercase' ) ), array( 'si-arrows-up-down-right-left' => __( 'Up down right left', 'covercase' ) ), array( 'si-arrows-up-sign' => __( 'Up sign', 'covercase' ) ) ), __( 'Badges', 'covercase' ) => array( array( 'si-badges-stamps-badge-1' => __( 'Stamps badge 1', 'covercase' ) ), array( 'si-badges-stamps-badge-2' => __( 'Stamps badge 2', 'covercase' ) ), array( 'si-badges-stamps-badge-3' => __( 'Stamps badge 3', 'covercase' ) ), array( 'si-badges-stamps-badge-4' => __( 'Stamps badge 4', 'covercase' ) ), array( 'si-badges-stamps-badge-5' => __( 'Stamps badge 5', 'covercase' ) ), array( 'si-badges-stamps-badge-6' => __( 'Stamps badge 6', 'covercase' ) ), array( 'si-badges-stamps-badge-7' => __( 'Stamps badge 7', 'covercase' ) ), array( 'si-badges-stamps-badge-8' => __( 'Stamps badge 8', 'covercase' ) ), array( 'si-badges-stamps-badge-9' => __( 'Stamps badge 9', 'covercase' ) ), array( 'si-badges-stamps-badge-10' => __( 'Stamps badge 10', 'covercase' ) ), array( 'si-badges-stamps-badge-11' => __( 'Stamps badge 11', 'covercase' ) ), array( 'si-badges-stamps-letter-stamp' => __( 'Stamps letter stamp', 'covercase' ) ), array( 'si-badges-stamps-mail-badge' => __( 'Stamps mail badge', 'covercase' ) ), array( 'si-badges-stamps-post-stamp' => __( 'Stamps post stamp', 'covercase' ) ), array( 'si-badges-stamps-post-stamp-1' => __( 'Stamps post stamp 1', 'covercase' ) ), array( 'si-badges-stamps-post-stamp-2' => __( 'Stamps post stamp 2', 'covercase' ) ), array( 'si-badges-stamps-post-stamp-3' => __( 'Stamps post stamp 3', 'covercase' ) ), array( 'si-badges-stamps-post-stamp-4' => __( 'Stamps post stamp 4', 'covercase' ) ), array( 'si-badges-stamps-retro-badge' => __( 'Stamps retro badge', 'covercase' ) ), array( 'si-badges-stamps-ribbon' => __( 'Stamps ribbon', 'covercase' ) ), array( 'si-badges-stamps-ribbon-2' => __( 'Stamps ribbon 2', 'covercase' ) ), array( 'si-badges-stamps-ribbon-3' => __( 'Stamps ribbon 3', 'covercase' ) ), array( 'si-badges-stamps-shield-badge' => __( 'Stamps shield badge', 'covercase' ) ), array( 'si-badges-stamps-stamp-badge' => __( 'Stamps stamp badge', 'covercase' ) ), array( 'si-badges-stamps-text-stamp' => __( 'Stamps text stamp', 'covercase' ) ) ), __( 'Body', 'covercase' ) => array( array( 'si-body-blind-eye' => __( 'Blind eye', 'covercase' ) ), array( 'si-body-bone' => __( 'Bone', 'covercase' ) ), array( 'si-body-bones' => __( 'Bones', 'covercase' ) ), array( 'si-body-brain' => __( 'Brain', 'covercase' ) ), array( 'si-body-broken-heart' => __( 'Broken heart', 'covercase' ) ), array( 'si-body-closed-eye' => __( 'Closed eye', 'covercase' ) ), array( 'si-body-closed-eyes' => __( 'Closed eyes', 'covercase' ) ), array( 'si-body-diagnose-tooth' => __( 'Diagnose tooth', 'covercase' ) ), array( 'si-body-dna' => __( 'Dna', 'covercase' ) ), array( 'si-body-ear' => __( 'Ear', 'covercase' ) ), array( 'si-body-elbow' => __( 'Elbow', 'covercase' ) ), array( 'si-body-eye' => __( 'Eye', 'covercase' ) ), array( 'si-body-eyes' => __( 'Eyes', 'covercase' ) ), array( 'si-body-finger' => __( 'Finger', 'covercase' ) ), array( 'si-body-foot-1' => __( 'Foot 1', 'covercase' ) ), array( 'si-body-foot-2' => __( 'Foot 2', 'covercase' ) ), array( 'si-body-foot-3' => __( 'Foot 3', 'covercase' ) ), array( 'si-body-hair' => __( 'Hair', 'covercase' ) ), array( 'si-body-hand' => __( 'Hand', 'covercase' ) ), array( 'si-body-head' => __( 'Head', 'covercase' ) ), array( 'si-body-heart' => __( 'Heart', 'covercase' ) ), array( 'si-body-heart-2' => __( 'Heart 2', 'covercase' ) ), array( 'si-body-heart-impulse' => __( 'Heart impulse', 'covercase' ) ), array( 'si-body-hearts' => __( 'Hearts', 'covercase' ) ), array( 'si-body-knee' => __( 'Knee', 'covercase' ) ), array( 'si-body-lips' => __( 'Lips', 'covercase' ) ), array( 'si-body-lung-2' => __( 'Lung 2', 'covercase' ) ), array( 'si-body-lungs' => __( 'Lungs', 'covercase' ) ), array( 'si-body-mustache' => __( 'Mustache', 'covercase' ) ), array( 'si-body-mustache-1' => __( 'Mustache 1', 'covercase' ) ), array( 'si-body-nose' => __( 'Nose', 'covercase' ) ), array( 'si-body-pancreas' => __( 'Pancreas', 'covercase' ) ), array( 'si-body-skull' => __( 'Skull', 'covercase' ) ), array( 'si-body-stomach' => __( 'Stomach', 'covercase' ) ), array( 'si-body-throat' => __( 'Throat', 'covercase' ) ), array( 'si-body-toes' => __( 'Toes', 'covercase' ) ), array( 'si-body-tooth' => __( 'Tooth', 'covercase' ) ), array( 'si-body-tooth-2' => __( 'Tooth 2', 'covercase' ) ), array( 'si-body-tooth-3' => __( 'Tooth 3', 'covercase' ) ), array( 'si-body-tooth-4' => __( 'Tooth 4', 'covercase' ) ) ), __( 'Building', 'covercase' ) => array( array( 'si-building-landmarks-asian-temple' => __( 'Landmarks asian temple', 'covercase' ) ), array( 'si-building-landmarks-berlin-tower' => __( 'Landmarks berlin tower', 'covercase' ) ), array( 'si-building-landmarks-big-ben' => __( 'Landmarks big ben', 'covercase' ) ), array( 'si-building-landmarks-building' => __( 'Landmarks building', 'covercase' ) ), array( 'si-building-landmarks-building-2' => __( 'Landmarks building 2', 'covercase' ) ), array( 'si-building-landmarks-castle' => __( 'Landmarks castle', 'covercase' ) ), array( 'si-building-landmarks-castle-2' => __( 'Landmarks castle 2', 'covercase' ) ), array( 'si-building-landmarks-chrysler-tower' => __( 'Landmarks chrysler tower', 'covercase' ) ), array( 'si-building-landmarks-church' => __( 'Landmarks church', 'covercase' ) ), array( 'si-building-landmarks-city-hall' => __( 'Landmarks city hall', 'covercase' ) ), array( 'si-building-landmarks-coloseum' => __( 'Landmarks coloseum', 'covercase' ) ), array( 'si-building-landmarks-column' => __( 'Landmarks column', 'covercase' ) ), array( 'si-building-landmarks-door' => __( 'Landmarks door', 'covercase' ) ), array( 'si-building-landmarks-dubai-tower' => __( 'Landmarks dubai tower', 'covercase' ) ), array( 'si-building-landmarks-eiffel-tower' => __( 'Landmarks eiffel tower', 'covercase' ) ), array( 'si-building-landmarks-el-castillo' => __( 'Landmarks el castillo', 'covercase' ) ), array( 'si-building-landmarks-factory' => __( 'Landmarks factory', 'covercase' ) ), array( 'si-building-landmarks-garage' => __( 'Landmarks garage', 'covercase' ) ), array( 'si-building-landmarks-garden-door' => __( 'Landmarks garden door', 'covercase' ) ), array( 'si-building-landmarks-guard-tower' => __( 'Landmarks guard tower', 'covercase' ) ), array( 'si-building-landmarks-hospital' => __( 'Landmarks hospital', 'covercase' ) ), array( 'si-building-landmarks-house' => __( 'Landmarks house', 'covercase' ) ), array( 'si-building-landmarks-japanese-gate' => __( 'Landmarks japanese gate', 'covercase' ) ), array( 'si-building-landmarks-large-office' => __( 'Landmarks large office', 'covercase' ) ), array( 'si-building-landmarks-lighthouse' => __( 'Landmarks lighthouse', 'covercase' ) ), array( 'si-building-landmarks-london-eye' => __( 'Landmarks london eye', 'covercase' ) ), array( 'si-building-landmarks-military-base' => __( 'Landmarks military base', 'covercase' ) ), array( 'si-building-landmarks-museum' => __( 'Landmarks museum', 'covercase' ) ), array( 'si-building-landmarks-office' => __( 'Landmarks office', 'covercase' ) ), array( 'si-building-landmarks-opera-house' => __( 'Landmarks opera house', 'covercase' ) ), array( 'si-building-landmarks-pantheon' => __( 'Landmarks pantheon', 'covercase' ) ), array( 'si-building-landmarks-pentagon' => __( 'Landmarks pentagon', 'covercase' ) ), array( 'si-building-landmarks-pisa-tower' => __( 'Landmarks pisa tower', 'covercase' ) ), array( 'si-building-landmarks-police-station' => __( 'Landmarks police station', 'covercase' ) ), array( 'si-building-landmarks-post-office' => __( 'Landmarks post office', 'covercase' ) ), array( 'si-building-landmarks-pyramids' => __( 'Landmarks pyramids', 'covercase' ) ), array( 'si-building-landmarks-school' => __( 'Landmarks school', 'covercase' ) ), array( 'si-building-landmarks-school-2' => __( 'Landmarks school 2', 'covercase' ) ), array( 'si-building-landmarks-shop' => __( 'Landmarks shop', 'covercase' ) ), array( 'si-building-landmarks-small-house' => __( 'Landmarks small house', 'covercase' ) ), array( 'si-building-landmarks-space-needle' => __( 'Landmarks space needle', 'covercase' ) ), array( 'si-building-landmarks-station' => __( 'Landmarks station', 'covercase' ) ), array( 'si-building-landmarks-statue-of-liberty' => __( 'Landmarks statue of liberty', 'covercase' ) ), array( 'si-building-landmarks-taj-mahal' => __( 'Landmarks taj mahal', 'covercase' ) ), array( 'si-building-landmarks-temple' => __( 'Landmarks temple', 'covercase' ) ), array( 'si-building-landmarks-tent' => __( 'Landmarks tent', 'covercase' ) ), array( 'si-building-landmarks-tower' => __( 'Landmarks tower', 'covercase' ) ), array( 'si-building-landmarks-tower-2' => __( 'Landmarks tower 2', 'covercase' ) ), array( 'si-building-landmarks-windmill' => __( 'Landmarks windmill', 'covercase' ) ), array( 'si-building-landmarks-window' => __( 'Landmarks window', 'covercase' ) ) ), __( 'Cafe', 'covercase' ) => array( array( 'si-cafe-restaurant-beef' => __( 'Restaurant beef', 'covercase' ) ), array( 'si-cafe-restaurant-blender' => __( 'Restaurant blender', 'covercase' ) ), array( 'si-cafe-restaurant-broad-beans' => __( 'Restaurant broad beans', 'covercase' ) ), array( 'si-cafe-restaurant-broccoli' => __( 'Restaurant broccoli', 'covercase' ) ), array( 'si-cafe-restaurant-cake' => __( 'Restaurant cake', 'covercase' ) ), array( 'si-cafe-restaurant-catalog' => __( 'Restaurant catalog', 'covercase' ) ), array( 'si-cafe-restaurant-champagne' => __( 'Restaurant champagne', 'covercase' ) ), array( 'si-cafe-restaurant-chef-hat' => __( 'Restaurant chef hat', 'covercase' ) ), array( 'si-cafe-restaurant-coffe-7' => __( 'Restaurant coffe 7', 'covercase' ) ), array( 'si-cafe-restaurant-coffee' => __( 'Restaurant coffee', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-2' => __( 'Restaurant coffee 2', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-3' => __( 'Restaurant coffee 3', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-4' => __( 'Restaurant coffee 4', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-5' => __( 'Restaurant coffee 5', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-6' => __( 'Restaurant coffee 6', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-bean' => __( 'Restaurant coffee bean', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-bean-2' => __( 'Restaurant coffee bean 2', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-bean-3' => __( 'Restaurant coffee bean 3', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-bean-4' => __( 'Restaurant coffee bean 4', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-frother' => __( 'Restaurant coffee frother', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-machine' => __( 'Restaurant coffee machine', 'covercase' ) ), array( 'si-cafe-restaurant-coffee-take-go' => __( 'Restaurant coffee take go', 'covercase' ) ), array( 'si-cafe-restaurant-cold-coffe-2' => __( 'Restaurant cold coffe 2', 'covercase' ) ), array( 'si-cafe-restaurant-cold-coffee' => __( 'Restaurant cold coffee', 'covercase' ) ), array( 'si-cafe-restaurant-croissant' => __( 'Restaurant croissant', 'covercase' ) ), array( 'si-cafe-restaurant-cup' => __( 'Restaurant cup', 'covercase' ) ), array( 'si-cafe-restaurant-cupcake' => __( 'Restaurant cupcake', 'covercase' ) ), array( 'si-cafe-restaurant-drink' => __( 'Restaurant drink', 'covercase' ) ), array( 'si-cafe-restaurant-drink-2' => __( 'Restaurant drink 2', 'covercase' ) ), array( 'si-cafe-restaurant-fish' => __( 'Restaurant fish', 'covercase' ) ), array( 'si-cafe-restaurant-fork-knife' => __( 'Restaurant fork knife', 'covercase' ) ), array( 'si-cafe-restaurant-hot-coffee' => __( 'Restaurant hot coffee', 'covercase' ) ), array( 'si-cafe-restaurant-ice-cream' => __( 'Restaurant ice cream', 'covercase' ) ), array( 'si-cafe-restaurant-margarita' => __( 'Restaurant margarita', 'covercase' ) ), array( 'si-cafe-restaurant-mushroom' => __( 'Restaurant mushroom', 'covercase' ) ), array( 'si-cafe-restaurant-pan' => __( 'Restaurant pan', 'covercase' ) ), array( 'si-cafe-restaurant-pasta' => __( 'Restaurant pasta', 'covercase' ) ), array( 'si-cafe-restaurant-pizza' => __( 'Restaurant pizza', 'covercase' ) ), array( 'si-cafe-restaurant-pizza-2' => __( 'Restaurant pizza 2', 'covercase' ) ), array( 'si-cafe-restaurant-roasted-chicken' => __( 'Restaurant roasted chicken', 'covercase' ) ), array( 'si-cafe-restaurant-roasted-chicken-2' => __( 'Restaurant roasted chicken 2', 'covercase' ) ), array( 'si-cafe-restaurant-scliced-mushroom' => __( 'Restaurant scliced mushroom', 'covercase' ) ), array( 'si-cafe-restaurant-serving-plate' => __( 'Restaurant serving plate', 'covercase' ) ), array( 'si-cafe-restaurant-soup' => __( 'Restaurant soup', 'covercase' ) ), array( 'si-cafe-restaurant-soup-2' => __( 'Restaurant soup 2', 'covercase' ) ), array( 'si-cafe-restaurant-sushi' => __( 'Restaurant sushi', 'covercase' ) ), array( 'si-cafe-restaurant-tea' => __( 'Restaurant tea', 'covercase' ) ), array( 'si-cafe-restaurant-tea-bag' => __( 'Restaurant tea bag', 'covercase' ) ), array( 'si-cafe-restaurant-watermelon' => __( 'Restaurant watermelon', 'covercase' ) ), array( 'si-cafe-restaurant-wine' => __( 'Restaurant wine', 'covercase' ) ) ), __( 'Camping', 'covercase' ) => array( array( 'si-camping-axe' => __( 'Axe', 'covercase' ) ), array( 'si-camping-binoculars' => __( 'Binoculars', 'covercase' ) ), array( 'si-camping-boots' => __( 'Boots', 'covercase' ) ), array( 'si-camping-camera' => __( 'Camera', 'covercase' ) ), array( 'si-camping-camping-bag' => __( 'Camping bag', 'covercase' ) ), array( 'si-camping-camping-table' => __( 'Camping table', 'covercase' ) ), array( 'si-camping-compass' => __( 'Compass', 'covercase' ) ), array( 'si-camping-cup' => __( 'Cup', 'covercase' ) ), array( 'si-camping-eyeglasses' => __( 'Eyeglasses', 'covercase' ) ), array( 'si-camping-favorite-place' => __( 'Favorite place', 'covercase' ) ), array( 'si-camping-fire' => __( 'Fire', 'covercase' ) ), array( 'si-camping-first-aid-bag' => __( 'First aid bag', 'covercase' ) ), array( 'si-camping-fishing' => __( 'Fishing', 'covercase' ) ), array( 'si-camping-flashlight' => __( 'Flashlight', 'covercase' ) ), array( 'si-camping-gas-stove' => __( 'Gas stove', 'covercase' ) ), array( 'si-camping-information-sign' => __( 'Information sign', 'covercase' ) ), array( 'si-camping-kayak' => __( 'Kayak', 'covercase' ) ), array( 'si-camping-knife' => __( 'Knife', 'covercase' ) ), array( 'si-camping-lantern' => __( 'Lantern', 'covercase' ) ), array( 'si-camping-life-vest' => __( 'Life vest', 'covercase' ) ), array( 'si-camping-lighter' => __( 'Lighter', 'covercase' ) ), array( 'si-camping-liquid-bottle' => __( 'Liquid bottle', 'covercase' ) ), array( 'si-camping-map' => __( 'Map', 'covercase' ) ), array( 'si-camping-map-point' => __( 'Map point', 'covercase' ) ), array( 'si-camping-mountains' => __( 'Mountains', 'covercase' ) ), array( 'si-camping-parking-sign' => __( 'Parking sign', 'covercase' ) ), array( 'si-camping-radio' => __( 'Radio', 'covercase' ) ), array( 'si-camping-road-sign' => __( 'Road sign', 'covercase' ) ), array( 'si-camping-route' => __( 'Route', 'covercase' ) ), array( 'si-camping-sea-sun' => __( 'Sea sun', 'covercase' ) ), array( 'si-camping-sean-moon' => __( 'Sean moon', 'covercase' ) ), array( 'si-camping-shower' => __( 'Shower', 'covercase' ) ), array( 'si-camping-skull-cap' => __( 'Skull cap', 'covercase' ) ), array( 'si-camping-surfboard' => __( 'Surfboard', 'covercase' ) ), array( 'si-camping-tent' => __( 'Tent', 'covercase' ) ), array( 'si-camping-trailer' => __( 'Trailer', 'covercase' ) ), array( 'si-camping-trees' => __( 'Trees', 'covercase' ) ), array( 'si-camping-wall-socket' => __( 'Wall socket', 'covercase' ) ), array( 'si-camping-wooden-house' => __( 'Wooden house', 'covercase' ) ), array( 'si-camping-wooden-table' => __( 'Wooden table', 'covercase' ) ) ), __( 'Chat', 'covercase' ) => array( array( 'si-chat-chat' => __( 'Chat', 'covercase' ) ), array( 'si-chat-chat-2' => __( 'Chat 2', 'covercase' ) ), array( 'si-chat-chat-3' => __( 'Chat 3', 'covercase' ) ), array( 'si-chat-chat-bubble' => __( 'Chat bubble', 'covercase' ) ), array( 'si-chat-chat-bubble-2' => __( 'Chat bubble 2', 'covercase' ) ), array( 'si-chat-chat-bubble-add' => __( 'Chat bubble add', 'covercase' ) ), array( 'si-chat-chat-bubble-confirm' => __( 'Chat bubble confirm', 'covercase' ) ), array( 'si-chat-chat-bubble-cute' => __( 'Chat bubble cute', 'covercase' ) ), array( 'si-chat-chat-bubble-delete' => __( 'Chat bubble delete', 'covercase' ) ), array( 'si-chat-chat-bubble-happy' => __( 'Chat bubble happy', 'covercase' ) ), array( 'si-chat-chat-bubble-laughing' => __( 'Chat bubble laughing', 'covercase' ) ), array( 'si-chat-chat-bubble-loading' => __( 'Chat bubble loading', 'covercase' ) ), array( 'si-chat-chat-bubble-remove' => __( 'Chat bubble remove', 'covercase' ) ), array( 'si-chat-chat-bubble-sad' => __( 'Chat bubble sad', 'covercase' ) ), array( 'si-chat-chat-bubble-smile' => __( 'Chat bubble smile', 'covercase' ) ), array( 'si-chat-chat-bubble-smiling' => __( 'Chat bubble smiling', 'covercase' ) ), array( 'si-chat-chat-bubble-surprise' => __( 'Chat bubble surprise', 'covercase' ) ), array( 'si-chat-chat-bubble-tongue' => __( 'Chat bubble tongue', 'covercase' ) ), array( 'si-chat-chat-bubble-writing' => __( 'Chat bubble writing', 'covercase' ) ), array( 'si-chat-chat-bubbles' => __( 'Chat bubbles', 'covercase' ) ), array( 'si-chat-chat-bubbles-2' => __( 'Chat bubbles 2', 'covercase' ) ), array( 'si-chat-chat-bubbles-3' => __( 'Chat bubbles 3', 'covercase' ) ), array( 'si-chat-chat-bubbles-4' => __( 'Chat bubbles 4', 'covercase' ) ), array( 'si-chat-chat-small-bubble' => __( 'Chat small bubble', 'covercase' ) ), array( 'si-chat-chat-small-bubble-2' => __( 'Chat small bubble 2', 'covercase' ) ) ), __( 'Christmas', 'covercase' ) => array( array( 'si-christmas-angel' => __( 'Angel', 'covercase' ) ), array( 'si-christmas-cake' => __( 'Cake', 'covercase' ) ), array( 'si-christmas-candle' => __( 'Candle', 'covercase' ) ), array( 'si-christmas-candy' => __( 'Candy', 'covercase' ) ), array( 'si-christmas-candy-cane' => __( 'Candy cane', 'covercase' ) ), array( 'si-christmas-christmas-ball' => __( 'Christmas ball', 'covercase' ) ), array( 'si-christmas-christmas-bell' => __( 'Christmas bell', 'covercase' ) ), array( 'si-christmas-christmas-cupcake' => __( 'Christmas cupcake', 'covercase' ) ), array( 'si-christmas-christmas-hat' => __( 'Christmas hat', 'covercase' ) ), array( 'si-christmas-christmas-sock' => __( 'Christmas sock', 'covercase' ) ), array( 'si-christmas-christmas-tree' => __( 'Christmas tree', 'covercase' ) ), array( 'si-christmas-christmas-tree-2' => __( 'Christmas tree 2', 'covercase' ) ), array( 'si-christmas-christmas-tree-3' => __( 'Christmas tree 3', 'covercase' ) ), array( 'si-christmas-cookie-man' => __( 'Cookie man', 'covercase' ) ), array( 'si-christmas-cross' => __( 'Cross', 'covercase' ) ), array( 'si-christmas-desserts' => __( 'Desserts', 'covercase' ) ), array( 'si-christmas-discounts' => __( 'Discounts', 'covercase' ) ), array( 'si-christmas-fireworks' => __( 'Fireworks', 'covercase' ) ), array( 'si-christmas-gift-bag' => __( 'Gift bag', 'covercase' ) ), array( 'si-christmas-gift-card' => __( 'Gift card', 'covercase' ) ), array( 'si-christmas-lollipop' => __( 'Lollipop', 'covercase' ) ), array( 'si-christmas-lollipop-desserts' => __( 'Lollipop desserts', 'covercase' ) ), array( 'si-christmas-present' => __( 'Present', 'covercase' ) ), array( 'si-christmas-sales' => __( 'Sales', 'covercase' ) ), array( 'si-christmas-scarf' => __( 'Scarf', 'covercase' ) ), array( 'si-christmas-serving-plate' => __( 'Serving plate', 'covercase' ) ), array( 'si-christmas-shopping-bag' => __( 'Shopping bag', 'covercase' ) ), array( 'si-christmas-sled' => __( 'Sled', 'covercase' ) ), array( 'si-christmas-snow-man' => __( 'Snow man', 'covercase' ) ), array( 'si-christmas-snowflake' => __( 'Snowflake', 'covercase' ) ), array( 'si-christmas-star' => __( 'Star', 'covercase' ) ), array( 'si-christmas-star-2' => __( 'Star 2', 'covercase' ) ), array( 'si-christmas-star-3' => __( 'Star 3', 'covercase' ) ), array( 'si-christmas-turkey' => __( 'Turkey', 'covercase' ) ), array( 'si-christmas-wreath' => __( 'Wreath', 'covercase' ) ) ), __( 'Clothes', 'covercase' ) => array( array( 'si-clothes-accessories-belt' => __( 'Accessories belt', 'covercase' ) ), array( 'si-clothes-accessories-bikini' => __( 'Accessories bikini', 'covercase' ) ), array( 'si-clothes-accessories-blouse' => __( 'Accessories blouse', 'covercase' ) ), array( 'si-clothes-accessories-blouse-2' => __( 'Accessories blouse 2', 'covercase' ) ), array( 'si-clothes-accessories-bow' => __( 'Accessories bow', 'covercase' ) ), array( 'si-clothes-accessories-bow-2' => __( 'Accessories bow 2', 'covercase' ) ), array( 'si-clothes-accessories-bow-3' => __( 'Accessories bow 3', 'covercase' ) ), array( 'si-clothes-accessories-bra' => __( 'Accessories bra', 'covercase' ) ), array( 'si-clothes-accessories-cap' => __( 'Accessories cap', 'covercase' ) ), array( 'si-clothes-accessories-cap-2' => __( 'Accessories cap 2', 'covercase' ) ), array( 'si-clothes-accessories-cap-3' => __( 'Accessories cap 3', 'covercase' ) ), array( 'si-clothes-accessories-cap-4' => __( 'Accessories cap 4', 'covercase' ) ), array( 'si-clothes-accessories-cap-5' => __( 'Accessories cap 5', 'covercase' ) ), array( 'si-clothes-accessories-cardigan' => __( 'Accessories cardigan', 'covercase' ) ), array( 'si-clothes-accessories-dreass-2' => __( 'Accessories dreass 2', 'covercase' ) ), array( 'si-clothes-accessories-dress' => __( 'Accessories dress', 'covercase' ) ), array( 'si-clothes-accessories-hanger' => __( 'Accessories hanger', 'covercase' ) ), array( 'si-clothes-accessories-jacket' => __( 'Accessories jacket', 'covercase' ) ), array( 'si-clothes-accessories-lady-bag' => __( 'Accessories lady bag', 'covercase' ) ), array( 'si-clothes-accessories-lady-bag-2' => __( 'Accessories lady bag 2', 'covercase' ) ), array( 'si-clothes-accessories-night-dress' => __( 'Accessories night dress', 'covercase' ) ), array( 'si-clothes-accessories-pants' => __( 'Accessories pants', 'covercase' ) ), array( 'si-clothes-accessories-pants-2' => __( 'Accessories pants 2', 'covercase' ) ), array( 'si-clothes-accessories-scarf' => __( 'Accessories scarf', 'covercase' ) ), array( 'si-clothes-accessories-shirt' => __( 'Accessories shirt', 'covercase' ) ), array( 'si-clothes-accessories-shirt-2' => __( 'Accessories shirt 2', 'covercase' ) ), array( 'si-clothes-accessories-shirt-polo' => __( 'Accessories shirt polo', 'covercase' ) ), array( 'si-clothes-accessories-short-pants' => __( 'Accessories short pants', 'covercase' ) ), array( 'si-clothes-accessories-short-pants-2' => __( 'Accessories short pants 2', 'covercase' ) ), array( 'si-clothes-accessories-short-pants-3' => __( 'Accessories short pants 3', 'covercase' ) ), array( 'si-clothes-accessories-skirt' => __( 'Accessories skirt', 'covercase' ) ), array( 'si-clothes-accessories-skirt-2' => __( 'Accessories skirt 2', 'covercase' ) ), array( 'si-clothes-accessories-socks' => __( 'Accessories socks', 'covercase' ) ), array( 'si-clothes-accessories-t-shirt' => __( 'Accessories t shirt', 'covercase' ) ), array( 'si-clothes-accessories-tie' => __( 'Accessories tie', 'covercase' ) ), array( 'si-clothes-accessories-tuxedo' => __( 'Accessories tuxedo', 'covercase' ) ), array( 'si-clothes-accessories-underwear' => __( 'Accessories underwear', 'covercase' ) ), array( 'si-clothes-accessories-underwear-2' => __( 'Accessories underwear 2', 'covercase' ) ), array( 'si-clothes-accessories-underwear-3' => __( 'Accessories underwear 3', 'covercase' ) ), array( 'si-clothes-accessories-underwear-4' => __( 'Accessories underwear 4', 'covercase' ) ), array( 'si-clothes-accessories-underwear-5' => __( 'Accessories underwear 5', 'covercase' ) ), array( 'si-clothes-accessories-vest' => __( 'Accessories vest', 'covercase' ) ), array( 'si-clothes-accessories-vest-set' => __( 'Accessories vest set', 'covercase' ) ), array( 'si-clothes-accessories-wallet' => __( 'Accessories wallet', 'covercase' ) ), array( 'si-clothes-accessories-watch' => __( 'Accessories watch', 'covercase' ) ) ), __( 'Construction', 'covercase' ) => array( array( 'si-construction-axe' => __( 'Axe', 'covercase' ) ), array( 'si-construction-barricade' => __( 'Barricade', 'covercase' ) ), array( 'si-construction-barricade-2' => __( 'Barricade 2', 'covercase' ) ), array( 'si-construction-brick-wall' => __( 'Brick wall', 'covercase' ) ), array( 'si-construction-bulldozer' => __( 'Bulldozer', 'covercase' ) ), array( 'si-construction-chisel' => __( 'Chisel', 'covercase' ) ), array( 'si-construction-cone' => __( 'Cone', 'covercase' ) ), array( 'si-construction-cone-2' => __( 'Cone 2', 'covercase' ) ), array( 'si-construction-crane' => __( 'Crane', 'covercase' ) ), array( 'si-construction-crane-2' => __( 'Crane 2', 'covercase' ) ), array( 'si-construction-crane-3' => __( 'Crane 3', 'covercase' ) ), array( 'si-construction-drill' => __( 'Drill', 'covercase' ) ), array( 'si-construction-excavator' => __( 'Excavator', 'covercase' ) ), array( 'si-construction-hammer' => __( 'Hammer', 'covercase' ) ), array( 'si-construction-hammer-2' => __( 'Hammer 2', 'covercase' ) ), array( 'si-construction-helmet' => __( 'Helmet', 'covercase' ) ), array( 'si-construction-helmet-2' => __( 'Helmet 2', 'covercase' ) ), array( 'si-construction-ladder' => __( 'Ladder', 'covercase' ) ), array( 'si-construction-metre' => __( 'Metre', 'covercase' ) ), array( 'si-construction-nail' => __( 'Nail', 'covercase' ) ), array( 'si-construction-nivel' => __( 'Nivel', 'covercase' ) ), array( 'si-construction-paint-brush' => __( 'Paint brush', 'covercase' ) ), array( 'si-construction-paint-roller' => __( 'Paint roller', 'covercase' ) ), array( 'si-construction-paint-scraper' => __( 'Paint scraper', 'covercase' ) ), array( 'si-construction-pick' => __( 'Pick', 'covercase' ) ), array( 'si-construction-power-saw' => __( 'Power saw', 'covercase' ) ), array( 'si-construction-road' => __( 'Road', 'covercase' ) ), array( 'si-construction-rotary-hammer' => __( 'Rotary hammer', 'covercase' ) ), array( 'si-construction-saw' => __( 'Saw', 'covercase' ) ), array( 'si-construction-scraper' => __( 'Scraper', 'covercase' ) ), array( 'si-construction-scraper-2' => __( 'Scraper 2', 'covercase' ) ), array( 'si-construction-scraper-3' => __( 'Scraper 3', 'covercase' ) ), array( 'si-construction-screwdriver' => __( 'Screwdriver', 'covercase' ) ), array( 'si-construction-screwdriver-2' => __( 'Screwdriver 2', 'covercase' ) ), array( 'si-construction-shovel' => __( 'Shovel', 'covercase' ) ), array( 'si-construction-shovel-2' => __( 'Shovel 2', 'covercase' ) ), array( 'si-construction-spirit-level' => __( 'Spirit level', 'covercase' ) ), array( 'si-construction-steamroller' => __( 'Steamroller', 'covercase' ) ), array( 'si-construction-tape' => __( 'Tape', 'covercase' ) ), array( 'si-construction-truck' => __( 'Truck', 'covercase' ) ), array( 'si-construction-truck-2' => __( 'Truck 2', 'covercase' ) ), array( 'si-construction-warning' => __( 'Warning', 'covercase' ) ), array( 'si-construction-work-jacket' => __( 'Work jacket', 'covercase' ) ), array( 'si-construction-wrench' => __( 'Wrench', 'covercase' ) ), array( 'si-construction-wrench-2' => __( 'Wrench 2', 'covercase' ) ) ), __( 'Design', 'covercase' ) => array( array( 'si-design-aperture' => __( 'Aperture', 'covercase' ) ), array( 'si-design-arch-shape' => __( 'Arch shape', 'covercase' ) ), array( 'si-design-brush' => __( 'Brush', 'covercase' ) ), array( 'si-design-brush-2' => __( 'Brush 2', 'covercase' ) ), array( 'si-design-bucket' => __( 'Bucket', 'covercase' ) ), array( 'si-design-bucket-drop' => __( 'Bucket drop', 'covercase' ) ), array( 'si-design-cmyk' => __( 'Cmyk', 'covercase' ) ), array( 'si-design-compass' => __( 'Compass', 'covercase' ) ), array( 'si-design-crop' => __( 'Crop', 'covercase' ) ), array( 'si-design-eraser' => __( 'Eraser', 'covercase' ) ), array( 'si-design-eyedropper' => __( 'Eyedropper', 'covercase' ) ), array( 'si-design-files' => __( 'Files', 'covercase' ) ), array( 'si-design-graphic-tablet' => __( 'Graphic tablet', 'covercase' ) ), array( 'si-design-guides' => __( 'Guides', 'covercase' ) ), array( 'si-design-knife' => __( 'Knife', 'covercase' ) ), array( 'si-design-line-shape' => __( 'Line shape', 'covercase' ) ), array( 'si-design-magnet' => __( 'Magnet', 'covercase' ) ), array( 'si-design-marker' => __( 'Marker', 'covercase' ) ), array( 'si-design-paintboard' => __( 'Paintboard', 'covercase' ) ), array( 'si-design-paintbrush' => __( 'Paintbrush', 'covercase' ) ), array( 'si-design-palette' => __( 'Palette', 'covercase' ) ), array( 'si-design-pen' => __( 'Pen', 'covercase' ) ), array( 'si-design-pencil' => __( 'Pencil', 'covercase' ) ), array( 'si-design-rectangular-shape' => __( 'Rectangular shape', 'covercase' ) ), array( 'si-design-rgb' => __( 'Rgb', 'covercase' ) ), array( 'si-design-roller' => __( 'Roller', 'covercase' ) ), array( 'si-design-ruler' => __( 'Ruler', 'covercase' ) ), array( 'si-design-ruler-2' => __( 'Ruler 2', 'covercase' ) ), array( 'si-design-ruler-pencil' => __( 'Ruler pencil', 'covercase' ) ), array( 'si-design-ruler-stylus' => __( 'Ruler stylus', 'covercase' ) ), array( 'si-design-rulers' => __( 'Rulers', 'covercase' ) ), array( 'si-design-scissor' => __( 'Scissor', 'covercase' ) ), array( 'si-design-spray' => __( 'Spray', 'covercase' ) ), array( 'si-design-stylus' => __( 'Stylus', 'covercase' ) ), array( 'si-design-vector-shape' => __( 'Vector shape', 'covercase' ) ), array( 'si-design-vector-shape-2' => __( 'Vector shape 2', 'covercase' ) ), array( 'si-design-vector-shape-pen' => __( 'Vector shape pen', 'covercase' ) ), array( 'si-design-zoom-tool' => __( 'Zoom tool', 'covercase' ) ), array( 'si-design-zoom-tool-enlarge' => __( 'Zoom tool enlarge', 'covercase' ) ), array( 'si-design-zoom-tool-minimize' => __( 'Zoom tool minimize', 'covercase' ) ) ), __( 'Devices', 'covercase' ) => array( array( 'si-devices-hardware-computer' => __( 'Hardware computer', 'covercase' ) ), array( 'si-devices-hardware-computer-keyboard' => __( 'Hardware computer keyboard', 'covercase' ) ), array( 'si-devices-hardware-computer-laptop' => __( 'Hardware computer laptop', 'covercase' ) ), array( 'si-devices-hardware-computer-phone' => __( 'Hardware computer phone', 'covercase' ) ), array( 'si-devices-hardware-computer-tablet' => __( 'Hardware computer tablet', 'covercase' ) ), array( 'si-devices-hardware-computers' => __( 'Hardware computers', 'covercase' ) ), array( 'si-devices-hardware-connectivity-cord' => __( 'Hardware connectivity cord', 'covercase' ) ), array( 'si-devices-hardware-delete-phone' => __( 'Hardware delete phone', 'covercase' ) ), array( 'si-devices-hardware-disc' => __( 'Hardware disc', 'covercase' ) ), array( 'si-devices-hardware-fan' => __( 'Hardware fan', 'covercase' ) ), array( 'si-devices-hardware-floppy-disc' => __( 'Hardware floppy disc', 'covercase' ) ), array( 'si-devices-hardware-hard-drive' => __( 'Hardware hard drive', 'covercase' ) ), array( 'si-devices-hardware-hdd' => __( 'Hardware hdd', 'covercase' ) ), array( 'si-devices-hardware-keyboard' => __( 'Hardware keyboard', 'covercase' ) ), array( 'si-devices-hardware-laptop' => __( 'Hardware laptop', 'covercase' ) ), array( 'si-devices-hardware-laptop-2' => __( 'Hardware laptop 2', 'covercase' ) ), array( 'si-devices-hardware-laptop-3' => __( 'Hardware laptop 3', 'covercase' ) ), array( 'si-devices-hardware-monitor' => __( 'Hardware monitor', 'covercase' ) ), array( 'si-devices-hardware-mouse' => __( 'Hardware mouse', 'covercase' ) ), array( 'si-devices-hardware-notebook' => __( 'Hardware notebook', 'covercase' ) ), array( 'si-devices-hardware-notebooks' => __( 'Hardware notebooks', 'covercase' ) ), array( 'si-devices-hardware-pc' => __( 'Hardware pc', 'covercase' ) ), array( 'si-devices-hardware-pc-tower' => __( 'Hardware pc tower', 'covercase' ) ), array( 'si-devices-hardware-pc-towers' => __( 'Hardware pc towers', 'covercase' ) ), array( 'si-devices-hardware-pcb-board' => __( 'Hardware pcb board', 'covercase' ) ), array( 'si-devices-hardware-pda' => __( 'Hardware pda', 'covercase' ) ), array( 'si-devices-hardware-phone-not-allower' => __( 'Hardware phone not allower', 'covercase' ) ), array( 'si-devices-hardware-phone-orientation' => __( 'Hardware phone orientation', 'covercase' ) ), array( 'si-devices-hardware-phone-transfer' => __( 'Hardware phone transfer', 'covercase' ) ), array( 'si-devices-hardware-power-cord' => __( 'Hardware power cord', 'covercase' ) ), array( 'si-devices-hardware-power-socket' => __( 'Hardware power socket', 'covercase' ) ), array( 'si-devices-hardware-power-socket-2' => __( 'Hardware power socket 2', 'covercase' ) ), array( 'si-devices-hardware-printer' => __( 'Hardware printer', 'covercase' ) ), array( 'si-devices-hardware-printer-2' => __( 'Hardware printer 2', 'covercase' ) ), array( 'si-devices-hardware-processor' => __( 'Hardware processor', 'covercase' ) ), array( 'si-devices-hardware-processor-2' => __( 'Hardware processor 2', 'covercase' ) ), array( 'si-devices-hardware-ram' => __( 'Hardware ram', 'covercase' ) ), array( 'si-devices-hardware-router' => __( 'Hardware router', 'covercase' ) ), array( 'si-devices-hardware-router-signal' => __( 'Hardware router signal', 'covercase' ) ), array( 'si-devices-hardware-sd-memory-card' => __( 'Hardware sd memory card', 'covercase' ) ), array( 'si-devices-hardware-serial-pinout' => __( 'Hardware serial pinout', 'covercase' ) ), array( 'si-devices-hardware-smartphone' => __( 'Hardware smartphone', 'covercase' ) ), array( 'si-devices-hardware-tablet' => __( 'Hardware tablet', 'covercase' ) ), array( 'si-devices-hardware-tablet-2' => __( 'Hardware tablet 2', 'covercase' ) ), array( 'si-devices-hardware-tablet-orientation' => __( 'Hardware tablet orientation', 'covercase' ) ), array( 'si-devices-hardware-tablet-phone' => __( 'Hardware tablet phone', 'covercase' ) ), array( 'si-devices-hardware-usb-icon' => __( 'Hardware usb icon', 'covercase' ) ), array( 'si-devices-hardware-usb-stick' => __( 'Hardware usb stick', 'covercase' ) ), array( 'si-devices-hardware-usb-stick-add' => __( 'Hardware usb stick add', 'covercase' ) ), array( 'si-devices-hardware-usb-stick-confirm' => __( 'Hardware usb stick confirm', 'covercase' ) ), array( 'si-devices-hardware-usb-stick-delete' => __( 'Hardware usb stick delete', 'covercase' ) ), array( 'si-devices-hardware-usb-stick-remove' => __( 'Hardware usb stick remove', 'covercase' ) ), array( 'si-devices-hardware-webcam' => __( 'Hardware webcam', 'covercase' ) ), array( 'si-devices-hardware-wireless-controller' => __( 'Hardware wireless controller', 'covercase' ) ), array( 'si-devices-hardware-wireless-stick' => __( 'Hardware wireless stick', 'covercase' ) ) ), __( 'Ecology', 'covercase' ) => array( array( 'si-ecology-bio-symbol' => __( 'Bio symbol', 'covercase' ) ), array( 'si-ecology-biology' => __( 'Biology', 'covercase' ) ), array( 'si-ecology-bulb' => __( 'Bulb', 'covercase' ) ), array( 'si-ecology-bulb-2' => __( 'Bulb 2', 'covercase' ) ), array( 'si-ecology-bulb-3' => __( 'Bulb 3', 'covercase' ) ), array( 'si-ecology-bulb-4' => __( 'Bulb 4', 'covercase' ) ), array( 'si-ecology-earth' => __( 'Earth', 'covercase' ) ), array( 'si-ecology-eco-symbol' => __( 'Eco symbol', 'covercase' ) ), array( 'si-ecology-energy' => __( 'Energy', 'covercase' ) ), array( 'si-ecology-factory' => __( 'Factory', 'covercase' ) ), array( 'si-ecology-gas-station' => __( 'Gas station', 'covercase' ) ), array( 'si-ecology-glass-flower' => __( 'Glass flower', 'covercase' ) ), array( 'si-ecology-gmo-symbol' => __( 'Gmo symbol', 'covercase' ) ), array( 'si-ecology-green-bulb' => __( 'Green bulb', 'covercase' ) ), array( 'si-ecology-green-socket' => __( 'Green socket', 'covercase' ) ), array( 'si-ecology-home-electricity' => __( 'Home electricity', 'covercase' ) ), array( 'si-ecology-nature' => __( 'Nature', 'covercase' ) ), array( 'si-ecology-plant' => __( 'Plant', 'covercase' ) ), array( 'si-ecology-plant-symbol' => __( 'Plant symbol', 'covercase' ) ), array( 'si-ecology-pot-flower' => __( 'Pot flower', 'covercase' ) ), array( 'si-ecology-rain' => __( 'Rain', 'covercase' ) ), array( 'si-ecology-recycling' => __( 'Recycling', 'covercase' ) ), array( 'si-ecology-recycling-2' => __( 'Recycling 2', 'covercase' ) ), array( 'si-ecology-renew' => __( 'Renew', 'covercase' ) ), array( 'si-ecology-renew-2' => __( 'Renew 2', 'covercase' ) ), array( 'si-ecology-renew-3' => __( 'Renew 3', 'covercase' ) ), array( 'si-ecology-solar-panel' => __( 'Solar panel', 'covercase' ) ), array( 'si-ecology-solar-panel-2' => __( 'Solar panel 2', 'covercase' ) ), array( 'si-ecology-temperature' => __( 'Temperature', 'covercase' ) ), array( 'si-ecology-tree' => __( 'Tree', 'covercase' ) ), array( 'si-ecology-tree-2' => __( 'Tree 2', 'covercase' ) ), array( 'si-ecology-wall-socket' => __( 'Wall socket', 'covercase' ) ), array( 'si-ecology-wall-socket-2' => __( 'Wall socket 2', 'covercase' ) ), array( 'si-ecology-water-hand' => __( 'Water hand', 'covercase' ) ), array( 'si-ecology-water-tap' => __( 'Water tap', 'covercase' ) ), array( 'si-ecology-water-tap-2' => __( 'Water tap 2', 'covercase' ) ), array( 'si-ecology-waterdrop' => __( 'Waterdrop', 'covercase' ) ), array( 'si-ecology-wind-turbine' => __( 'Wind turbine', 'covercase' ) ), array( 'si-ecology-wind-turbine-2' => __( 'Wind turbine 2', 'covercase' ) ), array( 'si-ecology-wind-turbine-3' => __( 'Wind turbine 3', 'covercase' ) ) ), __( 'Electronic', 'covercase' ) => array( array( 'si-electronic-appliances-air-condition' => __( 'Appliances air condition', 'covercase' ) ), array( 'si-electronic-appliances-air-purifier' => __( 'Appliances air purifier', 'covercase' ) ), array( 'si-electronic-appliances-blender' => __( 'Appliances blender', 'covercase' ) ), array( 'si-electronic-appliances-bread-maker' => __( 'Appliances bread maker', 'covercase' ) ), array( 'si-electronic-appliances-calculator' => __( 'Appliances calculator', 'covercase' ) ), array( 'si-electronic-appliances-camcorder' => __( 'Appliances camcorder', 'covercase' ) ), array( 'si-electronic-appliances-digital-camera' => __( 'Appliances digital camera', 'covercase' ) ), array( 'si-electronic-appliances-digital-clock' => __( 'Appliances digital clock', 'covercase' ) ), array( 'si-electronic-appliances-digital-scale' => __( 'Appliances digital scale', 'covercase' ) ), array( 'si-electronic-appliances-digital-scale-2' => __( 'Appliances digital scale 2', 'covercase' ) ), array( 'si-electronic-appliances-dvd-player' => __( 'Appliances dvd player', 'covercase' ) ), array( 'si-electronic-appliances-electric-heater' => __( 'Appliances electric heater', 'covercase' ) ), array( 'si-electronic-appliances-espresso-machine' => __( 'Appliances espresso machine', 'covercase' ) ), array( 'si-electronic-appliances-fan' => __( 'Appliances fan', 'covercase' ) ), array( 'si-electronic-appliances-fridge' => __( 'Appliances fridge', 'covercase' ) ), array( 'si-electronic-appliances-hair-dryer' => __( 'Appliances hair dryer', 'covercase' ) ), array( 'si-electronic-appliances-halogen-heater' => __( 'Appliances halogen heater', 'covercase' ) ), array( 'si-electronic-appliances-hand-mixer' => __( 'Appliances hand mixer', 'covercase' ) ), array( 'si-electronic-appliances-heater-2' => __( 'Appliances heater 2', 'covercase' ) ), array( 'si-electronic-appliances-large-mixer' => __( 'Appliances large mixer', 'covercase' ) ), array( 'si-electronic-appliances-meat-grinder' => __( 'Appliances meat grinder', 'covercase' ) ), array( 'si-electronic-appliances-microwave' => __( 'Appliances microwave', 'covercase' ) ), array( 'si-electronic-appliances-mixer' => __( 'Appliances mixer', 'covercase' ) ), array( 'si-electronic-appliances-monitor' => __( 'Appliances monitor', 'covercase' ) ), array( 'si-electronic-appliances-monitor-2' => __( 'Appliances monitor 2', 'covercase' ) ), array( 'si-electronic-appliances-monitor-3' => __( 'Appliances monitor 3', 'covercase' ) ), array( 'si-electronic-appliances-monitor-not-working' => __( 'Appliances monitor not working', 'covercase' ) ), array( 'si-electronic-appliances-monitors' => __( 'Appliances monitors', 'covercase' ) ), array( 'si-electronic-appliances-oven' => __( 'Appliances oven', 'covercase' ) ), array( 'si-electronic-appliances-oven-2' => __( 'Appliances oven 2', 'covercase' ) ), array( 'si-electronic-appliances-projector' => __( 'Appliances projector', 'covercase' ) ), array( 'si-electronic-appliances-sewing-machine' => __( 'Appliances sewing machine', 'covercase' ) ), array( 'si-electronic-appliances-shaver' => __( 'Appliances shaver', 'covercase' ) ), array( 'si-electronic-appliances-socket' => __( 'Appliances socket', 'covercase' ) ), array( 'si-electronic-appliances-socket-2' => __( 'Appliances socket 2', 'covercase' ) ), array( 'si-electronic-appliances-socket-plug' => __( 'Appliances socket plug', 'covercase' ) ), array( 'si-electronic-appliances-socket-plug-add' => __( 'Appliances socket plug add', 'covercase' ) ), array( 'si-electronic-appliances-socket-plug-removed' => __( 'Appliances socket plug removed', 'covercase' ) ), array( 'si-electronic-appliances-toaster' => __( 'Appliances toaster', 'covercase' ) ), array( 'si-electronic-appliances-tooth-brush' => __( 'Appliances tooth brush', 'covercase' ) ), array( 'si-electronic-appliances-vacuum' => __( 'Appliances vacuum', 'covercase' ) ), array( 'si-electronic-appliances-vacuum-2' => __( 'Appliances vacuum 2', 'covercase' ) ), array( 'si-electronic-appliances-walkie-talkie' => __( 'Appliances walkie talkie', 'covercase' ) ), array( 'si-electronic-appliances-washing-machine' => __( 'Appliances washing machine', 'covercase' ) ), array( 'si-electronic-appliances-water-boiler' => __( 'Appliances water boiler', 'covercase' ) ) ), __( 'Emoticon', 'covercase' ) => array( array( 'si-emoticon-angel' => __( 'Angel', 'covercase' ) ), array( 'si-emoticon-angry' => __( 'Angry', 'covercase' ) ), array( 'si-emoticon-cry' => __( 'Cry', 'covercase' ) ), array( 'si-emoticon-cry-2' => __( 'Cry 2', 'covercase' ) ), array( 'si-emoticon-cute-smile' => __( 'Cute smile', 'covercase' ) ), array( 'si-emoticon-cuttie' => __( 'Cuttie', 'covercase' ) ), array( 'si-emoticon-devil' => __( 'Devil', 'covercase' ) ), array( 'si-emoticon-gasp' => __( 'Gasp', 'covercase' ) ), array( 'si-emoticon-gasp-2' => __( 'Gasp 2', 'covercase' ) ), array( 'si-emoticon-gasp-3' => __( 'Gasp 3', 'covercase' ) ), array( 'si-emoticon-gasp-4' => __( 'Gasp 4', 'covercase' ) ), array( 'si-emoticon-grandpa' => __( 'Grandpa', 'covercase' ) ), array( 'si-emoticon-grin' => __( 'Grin', 'covercase' ) ), array( 'si-emoticon-grumpy' => __( 'Grumpy', 'covercase' ) ), array( 'si-emoticon-grumpy-2' => __( 'Grumpy 2', 'covercase' ) ), array( 'si-emoticon-grumpy-3' => __( 'Grumpy 3', 'covercase' ) ), array( 'si-emoticon-grumpy-4' => __( 'Grumpy 4', 'covercase' ) ), array( 'si-emoticon-grumpy-5' => __( 'Grumpy 5', 'covercase' ) ), array( 'si-emoticon-grumpy-6' => __( 'Grumpy 6', 'covercase' ) ), array( 'si-emoticon-grumpy-7' => __( 'Grumpy 7', 'covercase' ) ), array( 'si-emoticon-grumpy-8' => __( 'Grumpy 8', 'covercase' ) ), array( 'si-emoticon-happy' => __( 'Happy', 'covercase' ) ), array( 'si-emoticon-kiki' => __( 'Kiki', 'covercase' ) ), array( 'si-emoticon-lady' => __( 'Lady', 'covercase' ) ), array( 'si-emoticon-laughing' => __( 'Laughing', 'covercase' ) ), array( 'si-emoticon-love' => __( 'Love', 'covercase' ) ), array( 'si-emoticon-love-2' => __( 'Love 2', 'covercase' ) ), array( 'si-emoticon-pain' => __( 'Pain', 'covercase' ) ), array( 'si-emoticon-pain-2' => __( 'Pain 2', 'covercase' ) ), array( 'si-emoticon-sad' => __( 'Sad', 'covercase' ) ), array( 'si-emoticon-sad-2' => __( 'Sad 2', 'covercase' ) ), array( 'si-emoticon-sad-3' => __( 'Sad 3', 'covercase' ) ), array( 'si-emoticon-sad-angry' => __( 'Sad angry', 'covercase' ) ), array( 'si-emoticon-sceptical' => __( 'Sceptical', 'covercase' ) ), array( 'si-emoticon-sceptical-2' => __( 'Sceptical 2', 'covercase' ) ), array( 'si-emoticon-sensational' => __( 'Sensational', 'covercase' ) ), array( 'si-emoticon-shocked' => __( 'Shocked', 'covercase' ) ), array( 'si-emoticon-shocked-2' => __( 'Shocked 2', 'covercase' ) ), array( 'si-emoticon-silent' => __( 'Silent', 'covercase' ) ), array( 'si-emoticon-silent-2' => __( 'Silent 2', 'covercase' ) ), array( 'si-emoticon-smile' => __( 'Smile', 'covercase' ) ), array( 'si-emoticon-smile-2' => __( 'Smile 2', 'covercase' ) ), array( 'si-emoticon-smile-3' => __( 'Smile 3', 'covercase' ) ), array( 'si-emoticon-smile-4' => __( 'Smile 4', 'covercase' ) ), array( 'si-emoticon-smile-glasses' => __( 'Smile glasses', 'covercase' ) ), array( 'si-emoticon-smile-sunglasses' => __( 'Smile sunglasses', 'covercase' ) ), array( 'si-emoticon-smile-sunglasses-2' => __( 'Smile sunglasses 2', 'covercase' ) ), array( 'si-emoticon-smile-sunglasses-3' => __( 'Smile sunglasses 3', 'covercase' ) ), array( 'si-emoticon-smile-teeth' => __( 'Smile teeth', 'covercase' ) ), array( 'si-emoticon-surprise' => __( 'Surprise', 'covercase' ) ), array( 'si-emoticon-tongue' => __( 'Tongue', 'covercase' ) ), array( 'si-emoticon-tongue-2' => __( 'Tongue 2', 'covercase' ) ), array( 'si-emoticon-tongue-3' => __( 'Tongue 3', 'covercase' ) ), array( 'si-emoticon-tongue-kiki' => __( 'Tongue kiki', 'covercase' ) ), array( 'si-emoticon-tongue-smile' => __( 'Tongue smile', 'covercase' ) ), array( 'si-emoticon-unhappy' => __( 'Unhappy', 'covercase' ) ), array( 'si-emoticon-unhappy-2' => __( 'Unhappy 2', 'covercase' ) ), array( 'si-emoticon-unsure' => __( 'Unsure', 'covercase' ) ), array( 'si-emoticon-upset' => __( 'Upset', 'covercase' ) ), array( 'si-emoticon-wink' => __( 'Wink', 'covercase' ) ) ), __( 'File', 'covercase' ) => array( array( 'si-file-types-ai-file' => __( 'Types ai file', 'covercase' ) ), array( 'si-file-types-apk-file' => __( 'Types apk file', 'covercase' ) ), array( 'si-file-types-app-file' => __( 'Types app file', 'covercase' ) ), array( 'si-file-types-attach-file' => __( 'Types attach file', 'covercase' ) ), array( 'si-file-types-avi-file' => __( 'Types avi file', 'covercase' ) ), array( 'si-file-types-blank-file' => __( 'Types blank file', 'covercase' ) ), array( 'si-file-types-blank-files' => __( 'Types blank files', 'covercase' ) ), array( 'si-file-types-copy-file' => __( 'Types copy file', 'covercase' ) ), array( 'si-file-types-css-file' => __( 'Types css file', 'covercase' ) ), array( 'si-file-types-csv-file' => __( 'Types csv file', 'covercase' ) ), array( 'si-file-types-doc-file' => __( 'Types doc file', 'covercase' ) ), array( 'si-file-types-edit-file' => __( 'Types edit file', 'covercase' ) ), array( 'si-file-types-eps-file' => __( 'Types eps file', 'covercase' ) ), array( 'si-file-types-exe-file' => __( 'Types exe file', 'covercase' ) ), array( 'si-file-types-file' => __( 'Types file', 'covercase' ) ), array( 'si-file-types-file-2' => __( 'Types file 2', 'covercase' ) ), array( 'si-file-types-file-3' => __( 'Types file 3', 'covercase' ) ), array( 'si-file-types-file-accepted' => __( 'Types file accepted', 'covercase' ) ), array( 'si-file-types-file-add' => __( 'Types file add', 'covercase' ) ), array( 'si-file-types-file-delete' => __( 'Types file delete', 'covercase' ) ), array( 'si-file-types-file-disapprove' => __( 'Types file disapprove', 'covercase' ) ), array( 'si-file-types-file-download' => __( 'Types file download', 'covercase' ) ), array( 'si-file-types-file-favorite' => __( 'Types file favorite', 'covercase' ) ), array( 'si-file-types-file-favorite-2' => __( 'Types file favorite 2', 'covercase' ) ), array( 'si-file-types-file-important' => __( 'Types file important', 'covercase' ) ), array( 'si-file-types-file-link' => __( 'Types file link', 'covercase' ) ), array( 'si-file-types-file-locked' => __( 'Types file locked', 'covercase' ) ), array( 'si-file-types-file-move-1' => __( 'Types file move 1', 'covercase' ) ), array( 'si-file-types-file-move-2' => __( 'Types file move 2', 'covercase' ) ), array( 'si-file-types-file-remove' => __( 'Types file remove', 'covercase' ) ), array( 'si-file-types-file-secure' => __( 'Types file secure', 'covercase' ) ), array( 'si-file-types-file-stats' => __( 'Types file stats', 'covercase' ) ), array( 'si-file-types-file-upload' => __( 'Types file upload', 'covercase' ) ), array( 'si-file-types-flv-file' => __( 'Types flv file', 'covercase' ) ), array( 'si-file-types-gif-file' => __( 'Types gif file', 'covercase' ) ), array( 'si-file-types-html-file' => __( 'Types html file', 'covercase' ) ), array( 'si-file-types-image-file' => __( 'Types image file', 'covercase' ) ), array( 'si-file-types-iso-file' => __( 'Types iso file', 'covercase' ) ), array( 'si-file-types-jpg-file' => __( 'Types jpg file', 'covercase' ) ), array( 'si-file-types-jsp-file' => __( 'Types jsp file', 'covercase' ) ), array( 'si-file-types-mark-file' => __( 'Types mark file', 'covercase' ) ), array( 'si-file-types-mov-file' => __( 'Types mov file', 'covercase' ) ), array( 'si-file-types-mp3-file' => __( 'Types mp3 file', 'covercase' ) ), array( 'si-file-types-mp4-file' => __( 'Types mp4 file', 'covercase' ) ), array( 'si-file-types-mpg-file' => __( 'Types mpg file', 'covercase' ) ), array( 'si-file-types-music-file' => __( 'Types music file', 'covercase' ) ), array( 'si-file-types-pdf-file' => __( 'Types pdf file', 'covercase' ) ), array( 'si-file-types-png-file' => __( 'Types png file', 'covercase' ) ), array( 'si-file-types-psd-file' => __( 'Types psd file', 'covercase' ) ), array( 'si-file-types-rar-file' => __( 'Types rar file', 'covercase' ) ), array( 'si-file-types-raw-file' => __( 'Types raw file', 'covercase' ) ), array( 'si-file-types-search-file' => __( 'Types search file', 'covercase' ) ), array( 'si-file-types-split-file' => __( 'Types split file', 'covercase' ) ), array( 'si-file-types-sql-file' => __( 'Types sql file', 'covercase' ) ), array( 'si-file-types-txt-file' => __( 'Types txt file', 'covercase' ) ), array( 'si-file-types-video-file' => __( 'Types video file', 'covercase' ) ), array( 'si-file-types-wav-file' => __( 'Types wav file', 'covercase' ) ), array( 'si-file-types-xls-file' => __( 'Types xls file', 'covercase' ) ), array( 'si-file-types-xml-file' => __( 'Types xml file', 'covercase' ) ), array( 'si-file-types-zip-file' => __( 'Types zip file', 'covercase' ) ) ), __( 'Finance', 'covercase' ) => array( array( 'si-finance-bank' => __( 'Bank', 'covercase' ) ), array( 'si-finance-banknote' => __( 'Banknote', 'covercase' ) ), array( 'si-finance-banknotes-2' => __( 'Banknotes 2', 'covercase' ) ), array( 'si-finance-barcode' => __( 'Barcode', 'covercase' ) ), array( 'si-finance-bid' => __( 'Bid', 'covercase' ) ), array( 'si-finance-calculator' => __( 'Calculator', 'covercase' ) ), array( 'si-finance-calculator-2' => __( 'Calculator 2', 'covercase' ) ), array( 'si-finance-cents' => __( 'Cents', 'covercase' ) ), array( 'si-finance-charts' => __( 'Charts', 'covercase' ) ), array( 'si-finance-charts-2' => __( 'Charts 2', 'covercase' ) ), array( 'si-finance-charts-3' => __( 'Charts 3', 'covercase' ) ), array( 'si-finance-charts-4' => __( 'Charts 4', 'covercase' ) ), array( 'si-finance-charts-5' => __( 'Charts 5', 'covercase' ) ), array( 'si-finance-charts-6' => __( 'Charts 6', 'covercase' ) ), array( 'si-finance-charts-7' => __( 'Charts 7', 'covercase' ) ), array( 'si-finance-credit-card' => __( 'Credit card', 'covercase' ) ), array( 'si-finance-credit-card-2' => __( 'Credit card 2', 'covercase' ) ), array( 'si-finance-credit-card-3' => __( 'Credit card 3', 'covercase' ) ), array( 'si-finance-credit-card-accepted' => __( 'Credit card accepted', 'covercase' ) ), array( 'si-finance-credit-card-add' => __( 'Credit card add', 'covercase' ) ), array( 'si-finance-credit-card-declined' => __( 'Credit card declined', 'covercase' ) ), array( 'si-finance-credit-card-lock' => __( 'Credit card lock', 'covercase' ) ), array( 'si-finance-credit-card-phone' => __( 'Credit card phone', 'covercase' ) ), array( 'si-finance-credit-card-processor' => __( 'Credit card processor', 'covercase' ) ), array( 'si-finance-credit-card-remove' => __( 'Credit card remove', 'covercase' ) ), array( 'si-finance-date' => __( 'Date', 'covercase' ) ), array( 'si-finance-discount-percentage' => __( 'Discount percentage', 'covercase' ) ), array( 'si-finance-dollar' => __( 'Dollar', 'covercase' ) ), array( 'si-finance-dollar-2' => __( 'Dollar 2', 'covercase' ) ), array( 'si-finance-dollars' => __( 'Dollars', 'covercase' ) ), array( 'si-finance-euro' => __( 'Euro', 'covercase' ) ), array( 'si-finance-euro-2' => __( 'Euro 2', 'covercase' ) ), array( 'si-finance-invoice' => __( 'Invoice', 'covercase' ) ), array( 'si-finance-load-box' => __( 'Load box', 'covercase' ) ), array( 'si-finance-money-bag' => __( 'Money bag', 'covercase' ) ), array( 'si-finance-money-bag-2' => __( 'Money bag 2', 'covercase' ) ), array( 'si-finance-open-wallet' => __( 'Open wallet', 'covercase' ) ), array( 'si-finance-percentage' => __( 'Percentage', 'covercase' ) ), array( 'si-finance-pound' => __( 'Pound', 'covercase' ) ), array( 'si-finance-pyramid' => __( 'Pyramid', 'covercase' ) ), array( 'si-finance-safe-box' => __( 'Safe box', 'covercase' ) ), array( 'si-finance-savings' => __( 'Savings', 'covercase' ) ), array( 'si-finance-scan-barcode' => __( 'Scan barcode', 'covercase' ) ), array( 'si-finance-shipping-box' => __( 'Shipping box', 'covercase' ) ), array( 'si-finance-shipping-box-2' => __( 'Shipping box 2', 'covercase' ) ), array( 'si-finance-shopping-bag' => __( 'Shopping bag', 'covercase' ) ), array( 'si-finance-shopping-bag-2' => __( 'Shopping bag 2', 'covercase' ) ), array( 'si-finance-shopping-bag-3' => __( 'Shopping bag 3', 'covercase' ) ), array( 'si-finance-shopping-basket' => __( 'Shopping basket', 'covercase' ) ), array( 'si-finance-shopping-basket-2' => __( 'Shopping basket 2', 'covercase' ) ), array( 'si-finance-shopping-basket-3' => __( 'Shopping basket 3', 'covercase' ) ), array( 'si-finance-shopping-basket-5' => __( 'Shopping basket 5', 'covercase' ) ), array( 'si-finance-shopping-basket-6' => __( 'Shopping basket 6', 'covercase' ) ), array( 'si-finance-shopping-basket-add' => __( 'Shopping basket add', 'covercase' ) ), array( 'si-finance-shopping-basket-confirm' => __( 'Shopping basket confirm', 'covercase' ) ), array( 'si-finance-shopping-basket-delete' => __( 'Shopping basket delete', 'covercase' ) ), array( 'si-finance-shopping-basket-favorite' => __( 'Shopping basket favorite', 'covercase' ) ), array( 'si-finance-shopping-basket-fill' => __( 'Shopping basket fill', 'covercase' ) ), array( 'si-finance-shopping-basket-load' => __( 'Shopping basket load', 'covercase' ) ), array( 'si-finance-shopping-basket-love' => __( 'Shopping basket love', 'covercase' ) ), array( 'si-finance-shopping-basket-refresh' => __( 'Shopping basket refresh', 'covercase' ) ), array( 'si-finance-shopping-basket-remove' => __( 'Shopping basket remove', 'covercase' ) ), array( 'si-finance-shopping-basket-unload' => __( 'Shopping basket unload', 'covercase' ) ), array( 'si-finance-statistics' => __( 'Statistics', 'covercase' ) ), array( 'si-finance-statistics-2' => __( 'Statistics 2', 'covercase' ) ), array( 'si-finance-statistics-3' => __( 'Statistics 3', 'covercase' ) ), array( 'si-finance-statistics-4' => __( 'Statistics 4', 'covercase' ) ), array( 'si-finance-stats' => __( 'Stats', 'covercase' ) ), array( 'si-finance-wallet' => __( 'Wallet', 'covercase' ) ), array( 'si-finance-yuan' => __( 'Yuan', 'covercase' ) ) ), __( 'Flags', 'covercase' ) => array( array( 'si-flags-brasil-flag' => __( 'Brasil flag', 'covercase' ) ), array( 'si-flags-chile-flag' => __( 'Chile flag', 'covercase' ) ), array( 'si-flags-china-flag' => __( 'China flag', 'covercase' ) ), array( 'si-flags-colombia-flag' => __( 'Colombia flag', 'covercase' ) ), array( 'si-flags-cuba-flag' => __( 'Cuba flag', 'covercase' ) ), array( 'si-flags-czech-flag' => __( 'Czech flag', 'covercase' ) ), array( 'si-flags-european-union-flag' => __( 'European union flag', 'covercase' ) ), array( 'si-flags-france-italia-nigeria-flag' => __( 'France italia nigeria flag', 'covercase' ) ), array( 'si-flags-germany-netherlands-flag' => __( 'Germany netherlands flag', 'covercase' ) ), array( 'si-flags-greece-england-flag' => __( 'Greece england flag', 'covercase' ) ), array( 'si-flags-india-flag' => __( 'India flag', 'covercase' ) ), array( 'si-flags-israel-flag' => __( 'Israel flag', 'covercase' ) ), array( 'si-flags-japan-flag' => __( 'Japan flag', 'covercase' ) ), array( 'si-flags-korea-flag' => __( 'Korea flag', 'covercase' ) ), array( 'si-flags-kuwait-flag' => __( 'Kuwait flag', 'covercase' ) ), array( 'si-flags-malta-flag' => __( 'Malta flag', 'covercase' ) ), array( 'si-flags-monaco-ukraine-flag' => __( 'Monaco ukraine flag', 'covercase' ) ), array( 'si-flags-nato-flag' => __( 'Nato flag', 'covercase' ) ), array( 'si-flags-olympics-flag' => __( 'Olympics flag', 'covercase' ) ), array( 'si-flags-portugal-flag' => __( 'Portugal flag', 'covercase' ) ), array( 'si-flags-scotland-flag' => __( 'Scotland flag', 'covercase' ) ), array( 'si-flags-south-africa-flag' => __( 'South africa flag', 'covercase' ) ), array( 'si-flags-sweden-finland-flag' => __( 'Sweden finland flag', 'covercase' ) ), array( 'si-flags-switzerland-flag' => __( 'Switzerland flag', 'covercase' ) ), array( 'si-flags-thailand-flag' => __( 'Thailand flag', 'covercase' ) ), array( 'si-flags-turkey-flag' => __( 'Turkey flag', 'covercase' ) ), array( 'si-flags-uae-flag' => __( 'Uae flag', 'covercase' ) ), array( 'si-flags-uk-flag' => __( 'Uk flag', 'covercase' ) ), array( 'si-flags-usa-america-flag' => __( 'Usa america flag', 'covercase' ) ), array( 'si-flags-vietnam-flag' => __( 'Vietnam flag', 'covercase' ) ) ), __( 'Folder', 'covercase' ) => array( array( 'si-folder-add-folder' => __( 'Add folder', 'covercase' ) ), array( 'si-folder-closed-folder' => __( 'Closed folder', 'covercase' ) ), array( 'si-folder-cloud-folder' => __( 'Cloud folder', 'covercase' ) ), array( 'si-folder-compressed-folder' => __( 'Compressed folder', 'covercase' ) ), array( 'si-folder-confirm-folder' => __( 'Confirm folder', 'covercase' ) ), array( 'si-folder-delete-folder' => __( 'Delete folder', 'covercase' ) ), array( 'si-folder-disallow-folder' => __( 'Disallow folder', 'covercase' ) ), array( 'si-folder-download-folder' => __( 'Download folder', 'covercase' ) ), array( 'si-folder-edit-folder' => __( 'Edit folder', 'covercase' ) ), array( 'si-folder-favorite-folder' => __( 'Favorite folder', 'covercase' ) ), array( 'si-folder-favorite-folder-2' => __( 'Favorite folder 2', 'covercase' ) ), array( 'si-folder-favorite-open-folder' => __( 'Favorite open folder', 'covercase' ) ), array( 'si-folder-file-folder' => __( 'File folder', 'covercase' ) ), array( 'si-folder-hyperlink-folder' => __( 'Hyperlink folder', 'covercase' ) ), array( 'si-folder-image-folder' => __( 'Image folder', 'covercase' ) ), array( 'si-folder-important-folder' => __( 'Important folder', 'covercase' ) ), array( 'si-folder-locked-folder' => __( 'Locked folder', 'covercase' ) ), array( 'si-folder-move-folder' => __( 'Move folder', 'covercase' ) ), array( 'si-folder-move-folder-2' => __( 'Move folder 2', 'covercase' ) ), array( 'si-folder-multimedia-folder' => __( 'Multimedia folder', 'covercase' ) ), array( 'si-folder-music-folder' => __( 'Music folder', 'covercase' ) ), array( 'si-folder-open-folder' => __( 'Open folder', 'covercase' ) ), array( 'si-folder-remove-folder' => __( 'Remove folder', 'covercase' ) ), array( 'si-folder-search-folder' => __( 'Search folder', 'covercase' ) ), array( 'si-folder-search-open-folder' => __( 'Search open folder', 'covercase' ) ), array( 'si-folder-secure-folder' => __( 'Secure folder', 'covercase' ) ), array( 'si-folder-trash-folder' => __( 'Trash folder', 'covercase' ) ), array( 'si-folder-upload-folder' => __( 'Upload folder', 'covercase' ) ), array( 'si-folder-video-folder' => __( 'Video folder', 'covercase' ) ), array( 'si-folder-web-folder' => __( 'Web folder', 'covercase' ) ) ), __( 'Food', 'covercase' ) => array( array( 'si-food-drinks-baguette' => __( 'Drinks baguette', 'covercase' ) ), array( 'si-food-drinks-barbecue-grill' => __( 'Drinks barbecue grill', 'covercase' ) ), array( 'si-food-drinks-beef' => __( 'Drinks beef', 'covercase' ) ), array( 'si-food-drinks-beer' => __( 'Drinks beer', 'covercase' ) ), array( 'si-food-drinks-biscuit' => __( 'Drinks biscuit', 'covercase' ) ), array( 'si-food-drinks-bread' => __( 'Drinks bread', 'covercase' ) ), array( 'si-food-drinks-bread-2' => __( 'Drinks bread 2', 'covercase' ) ), array( 'si-food-drinks-bread-3' => __( 'Drinks bread 3', 'covercase' ) ), array( 'si-food-drinks-bread-slice' => __( 'Drinks bread slice', 'covercase' ) ), array( 'si-food-drinks-burger' => __( 'Drinks burger', 'covercase' ) ), array( 'si-food-drinks-burger-2' => __( 'Drinks burger 2', 'covercase' ) ), array( 'si-food-drinks-burger-coke' => __( 'Drinks burger coke', 'covercase' ) ), array( 'si-food-drinks-champagne' => __( 'Drinks champagne', 'covercase' ) ), array( 'si-food-drinks-chef-hat' => __( 'Drinks chef hat', 'covercase' ) ), array( 'si-food-drinks-cherries' => __( 'Drinks cherries', 'covercase' ) ), array( 'si-food-drinks-coffee' => __( 'Drinks coffee', 'covercase' ) ), array( 'si-food-drinks-coke' => __( 'Drinks coke', 'covercase' ) ), array( 'si-food-drinks-coke-pizza' => __( 'Drinks coke pizza', 'covercase' ) ), array( 'si-food-drinks-doughnut' => __( 'Drinks doughnut', 'covercase' ) ), array( 'si-food-drinks-drink' => __( 'Drinks drink', 'covercase' ) ), array( 'si-food-drinks-drink-2' => __( 'Drinks drink 2', 'covercase' ) ), array( 'si-food-drinks-drink-3' => __( 'Drinks drink 3', 'covercase' ) ), array( 'si-food-drinks-drink-4' => __( 'Drinks drink 4', 'covercase' ) ), array( 'si-food-drinks-egg' => __( 'Drinks egg', 'covercase' ) ), array( 'si-food-drinks-fried-potatoes' => __( 'Drinks fried potatoes', 'covercase' ) ), array( 'si-food-drinks-fried-potatoes-coke' => __( 'Drinks fried potatoes coke', 'covercase' ) ), array( 'si-food-drinks-grill-spoon' => __( 'Drinks grill spoon', 'covercase' ) ), array( 'si-food-drinks-hot-dog' => __( 'Drinks hot dog', 'covercase' ) ), array( 'si-food-drinks-hot-dog-coke' => __( 'Drinks hot dog coke', 'covercase' ) ), array( 'si-food-drinks-ice-cream' => __( 'Drinks ice cream', 'covercase' ) ), array( 'si-food-drinks-ice-cream-2' => __( 'Drinks ice cream 2', 'covercase' ) ), array( 'si-food-drinks-kebab' => __( 'Drinks kebab', 'covercase' ) ), array( 'si-food-drinks-ketchup' => __( 'Drinks ketchup', 'covercase' ) ), array( 'si-food-drinks-ketchup-2' => __( 'Drinks ketchup 2', 'covercase' ) ), array( 'si-food-drinks-margarita' => __( 'Drinks margarita', 'covercase' ) ), array( 'si-food-drinks-meat' => __( 'Drinks meat', 'covercase' ) ), array( 'si-food-drinks-mustard' => __( 'Drinks mustard', 'covercase' ) ), array( 'si-food-drinks-pasta' => __( 'Drinks pasta', 'covercase' ) ), array( 'si-food-drinks-pasta-2' => __( 'Drinks pasta 2', 'covercase' ) ), array( 'si-food-drinks-pepperoni' => __( 'Drinks pepperoni', 'covercase' ) ), array( 'si-food-drinks-pizza-slice' => __( 'Drinks pizza slice', 'covercase' ) ), array( 'si-food-drinks-plate' => __( 'Drinks plate', 'covercase' ) ), array( 'si-food-drinks-sausage' => __( 'Drinks sausage', 'covercase' ) ), array( 'si-food-drinks-sausage-2' => __( 'Drinks sausage 2', 'covercase' ) ), array( 'si-food-drinks-serving-plate' => __( 'Drinks serving plate', 'covercase' ) ), array( 'si-food-drinks-sis-kebab' => __( 'Drinks sis kebab', 'covercase' ) ), array( 'si-food-drinks-soup' => __( 'Drinks soup', 'covercase' ) ), array( 'si-food-drinks-watermelon' => __( 'Drinks watermelon', 'covercase' ) ), array( 'si-food-drinks-wine-bottle' => __( 'Drinks wine bottle', 'covercase' ) ), array( 'si-food-drinks-wine-bottle-2' => __( 'Drinks wine bottle 2', 'covercase' ) ) ), __( 'Furniture', 'covercase' ) => array( array( 'si-furniture-armchair' => __( 'Armchair', 'covercase' ) ), array( 'si-furniture-armchair-2' => __( 'Armchair 2', 'covercase' ) ), array( 'si-furniture-baby-bed' => __( 'Baby bed', 'covercase' ) ), array( 'si-furniture-baby-bed-2' => __( 'Baby bed 2', 'covercase' ) ), array( 'si-furniture-bathtub' => __( 'Bathtub', 'covercase' ) ), array( 'si-furniture-bed' => __( 'Bed', 'covercase' ) ), array( 'si-furniture-bed-2' => __( 'Bed 2', 'covercase' ) ), array( 'si-furniture-bed-3' => __( 'Bed 3', 'covercase' ) ), array( 'si-furniture-bedside' => __( 'Bedside', 'covercase' ) ), array( 'si-furniture-bedside-2' => __( 'Bedside 2', 'covercase' ) ), array( 'si-furniture-bedside-3' => __( 'Bedside 3', 'covercase' ) ), array( 'si-furniture-bin' => __( 'Bin', 'covercase' ) ), array( 'si-furniture-book-shelf' => __( 'Book shelf', 'covercase' ) ), array( 'si-furniture-chair' => __( 'Chair', 'covercase' ) ), array( 'si-furniture-chair-2' => __( 'Chair 2', 'covercase' ) ), array( 'si-furniture-chair-3' => __( 'Chair 3', 'covercase' ) ), array( 'si-furniture-closed-door' => __( 'Closed door', 'covercase' ) ), array( 'si-furniture-closet' => __( 'Closet', 'covercase' ) ), array( 'si-furniture-coat-stand' => __( 'Coat stand', 'covercase' ) ), array( 'si-furniture-couch' => __( 'Couch', 'covercase' ) ), array( 'si-furniture-couch-2' => __( 'Couch 2', 'covercase' ) ), array( 'si-furniture-desk' => __( 'Desk', 'covercase' ) ), array( 'si-furniture-desk-2' => __( 'Desk 2', 'covercase' ) ), array( 'si-furniture-desk-chair' => __( 'Desk chair', 'covercase' ) ), array( 'si-furniture-desk-lamp' => __( 'Desk lamp', 'covercase' ) ), array( 'si-furniture-double-bed' => __( 'Double bed', 'covercase' ) ), array( 'si-furniture-floor-lamp' => __( 'Floor lamp', 'covercase' ) ), array( 'si-furniture-light-fixture' => __( 'Light fixture', 'covercase' ) ), array( 'si-furniture-mirror' => __( 'Mirror', 'covercase' ) ), array( 'si-furniture-open-door' => __( 'Open door', 'covercase' ) ), array( 'si-furniture-oval-table' => __( 'Oval table', 'covercase' ) ), array( 'si-furniture-picture' => __( 'Picture', 'covercase' ) ), array( 'si-furniture-sink' => __( 'Sink', 'covercase' ) ), array( 'si-furniture-small-table' => __( 'Small table', 'covercase' ) ), array( 'si-furniture-stairs' => __( 'Stairs', 'covercase' ) ), array( 'si-furniture-table' => __( 'Table', 'covercase' ) ), array( 'si-furniture-table-2' => __( 'Table 2', 'covercase' ) ), array( 'si-furniture-table-3' => __( 'Table 3', 'covercase' ) ), array( 'si-furniture-table-4' => __( 'Table 4', 'covercase' ) ), array( 'si-furniture-table-chairs' => __( 'Table chairs', 'covercase' ) ), array( 'si-furniture-table-lamp' => __( 'Table lamp', 'covercase' ) ), array( 'si-furniture-table-lamp-2' => __( 'Table lamp 2', 'covercase' ) ), array( 'si-furniture-tv-stand' => __( 'Tv stand', 'covercase' ) ), array( 'si-furniture-tv-stand-2' => __( 'Tv stand 2', 'covercase' ) ), array( 'si-furniture-twin-bed' => __( 'Twin bed', 'covercase' ) ), array( 'si-furniture-window' => __( 'Window', 'covercase' ) ), array( 'si-furniture-window-2' => __( 'Window 2', 'covercase' ) ), array( 'si-furniture-window-3' => __( 'Window 3', 'covercase' ) ), array( 'si-furniture-window-4' => __( 'Window 4', 'covercase' ) ), array( 'si-furniture-wood-fence' => __( 'Wood fence', 'covercase' ) ) ), __( 'Gambling', 'covercase' ) => array( array( 'si-gambling-bar' => __( 'Bar', 'covercase' ) ), array( 'si-gambling-cards' => __( 'Cards', 'covercase' ) ), array( 'si-gambling-clover' => __( 'Clover', 'covercase' ) ), array( 'si-gambling-clover-card' => __( 'Clover card', 'covercase' ) ), array( 'si-gambling-coin' => __( 'Coin', 'covercase' ) ), array( 'si-gambling-diamond' => __( 'Diamond', 'covercase' ) ), array( 'si-gambling-diamond-card' => __( 'Diamond card', 'covercase' ) ), array( 'si-gambling-diamond-symbol' => __( 'Diamond symbol', 'covercase' ) ), array( 'si-gambling-dice-1' => __( 'Dice 1', 'covercase' ) ), array( 'si-gambling-dice-2' => __( 'Dice 2', 'covercase' ) ), array( 'si-gambling-dice-3' => __( 'Dice 3', 'covercase' ) ), array( 'si-gambling-dice-4' => __( 'Dice 4', 'covercase' ) ), array( 'si-gambling-dice-6' => __( 'Dice 6', 'covercase' ) ), array( 'si-gambling-dices' => __( 'Dices', 'covercase' ) ), array( 'si-gambling-dices-2' => __( 'Dices 2', 'covercase' ) ), array( 'si-gambling-dices-3' => __( 'Dices 3', 'covercase' ) ), array( 'si-gambling-drink' => __( 'Drink', 'covercase' ) ), array( 'si-gambling-fruit' => __( 'Fruit', 'covercase' ) ), array( 'si-gambling-fruit-2' => __( 'Fruit 2', 'covercase' ) ), array( 'si-gambling-fruit-3' => __( 'Fruit 3', 'covercase' ) ), array( 'si-gambling-fruit-4' => __( 'Fruit 4', 'covercase' ) ), array( 'si-gambling-heart' => __( 'Heart', 'covercase' ) ), array( 'si-gambling-heart-card' => __( 'Heart card', 'covercase' ) ), array( 'si-gambling-lucky-seven' => __( 'Lucky seven', 'covercase' ) ), array( 'si-gambling-money-bag' => __( 'Money bag', 'covercase' ) ), array( 'si-gambling-number' => __( 'Number', 'covercase' ) ), array( 'si-gambling-pike' => __( 'Pike', 'covercase' ) ), array( 'si-gambling-pike-card' => __( 'Pike card', 'covercase' ) ), array( 'si-gambling-poker-table' => __( 'Poker table', 'covercase' ) ), array( 'si-gambling-roulette' => __( 'Roulette', 'covercase' ) ), array( 'si-gambling-slot-machine' => __( 'Slot machine', 'covercase' ) ), array( 'si-gambling-tips' => __( 'Tips', 'covercase' ) ), array( 'si-gambling-tips-2' => __( 'Tips 2', 'covercase' ) ), array( 'si-gambling-tips-3' => __( 'Tips 3', 'covercase' ) ), array( 'si-gambling-tips-4' => __( 'Tips 4', 'covercase' ) ) ), __( 'Game', 'covercase' ) => array( array( 'si-game-bomb' => __( 'Bomb', 'covercase' ) ), array( 'si-game-console' => __( 'Console', 'covercase' ) ), array( 'si-game-console-2' => __( 'Console 2', 'covercase' ) ), array( 'si-game-crown' => __( 'Crown', 'covercase' ) ), array( 'si-game-flag' => __( 'Flag', 'covercase' ) ), array( 'si-game-gear' => __( 'Gear', 'covercase' ) ), array( 'si-game-gold-bars' => __( 'Gold bars', 'covercase' ) ), array( 'si-game-handheld-console' => __( 'Handheld console', 'covercase' ) ), array( 'si-game-handheld-console-2' => __( 'Handheld console 2', 'covercase' ) ), array( 'si-game-headphones' => __( 'Headphones', 'covercase' ) ), array( 'si-game-health-bar' => __( 'Health bar', 'covercase' ) ), array( 'si-game-joystick' => __( 'Joystick', 'covercase' ) ), array( 'si-game-joystick-2' => __( 'Joystick 2', 'covercase' ) ), array( 'si-game-joystick-3' => __( 'Joystick 3', 'covercase' ) ), array( 'si-game-joystick-4' => __( 'Joystick 4', 'covercase' ) ), array( 'si-game-joystick-5' => __( 'Joystick 5', 'covercase' ) ), array( 'si-game-joystick-symbols' => __( 'Joystick symbols', 'covercase' ) ), array( 'si-game-keyboard' => __( 'Keyboard', 'covercase' ) ), array( 'si-game-laptop' => __( 'Laptop', 'covercase' ) ), array( 'si-game-life' => __( 'Life', 'covercase' ) ), array( 'si-game-lifes' => __( 'Lifes', 'covercase' ) ), array( 'si-game-microphone' => __( 'Microphone', 'covercase' ) ), array( 'si-game-monitor' => __( 'Monitor', 'covercase' ) ), array( 'si-game-mouse' => __( 'Mouse', 'covercase' ) ), array( 'si-game-old-joystick' => __( 'Old joystick', 'covercase' ) ), array( 'si-game-pac-man' => __( 'Pac man', 'covercase' ) ), array( 'si-game-pac-man-2' => __( 'Pac man 2', 'covercase' ) ), array( 'si-game-pc-computer' => __( 'Pc computer', 'covercase' ) ), array( 'si-game-racing-joystick' => __( 'Racing joystick', 'covercase' ) ), array( 'si-game-rip-tomb' => __( 'Rip tomb', 'covercase' ) ), array( 'si-game-settings' => __( 'Settings', 'covercase' ) ), array( 'si-game-share' => __( 'Share', 'covercase' ) ), array( 'si-game-shield' => __( 'Shield', 'covercase' ) ), array( 'si-game-target' => __( 'Target', 'covercase' ) ), array( 'si-game-target-2' => __( 'Target 2', 'covercase' ) ), array( 'si-game-tetris' => __( 'Tetris', 'covercase' ) ), array( 'si-game-tic-tac-toe' => __( 'Tic tac toe', 'covercase' ) ), array( 'si-game-time' => __( 'Time', 'covercase' ) ), array( 'si-game-webcam' => __( 'Webcam', 'covercase' ) ), array( 'si-game-win-flag' => __( 'Win flag', 'covercase' ) ) ), __( 'Gesture', 'covercase' ) => array( array( 'si-gesture-finger-swipe-around-2' => __( 'Finger swipe around 2', 'covercase' ) ), array( 'si-gesture-finger-swipe-around-3' => __( 'Finger swipe around 3', 'covercase' ) ), array( 'si-gesture-finger-swipe-center' => __( 'Finger swipe center', 'covercase' ) ), array( 'si-gesture-finger-swipe-left' => __( 'Finger swipe left', 'covercase' ) ), array( 'si-gesture-finger-swipe-left-2' => __( 'Finger swipe left 2', 'covercase' ) ), array( 'si-gesture-finger-swipe-right' => __( 'Finger swipe right', 'covercase' ) ), array( 'si-gesture-finger-swipe-right-2' => __( 'Finger swipe right 2', 'covercase' ) ), array( 'si-gesture-finger-swipe-right-left' => __( 'Finger swipe right left', 'covercase' ) ), array( 'si-gesture-finger-symbol' => __( 'Finger symbol', 'covercase' ) ), array( 'si-gesture-finger-touch-point' => __( 'Finger touch point', 'covercase' ) ), array( 'si-gesture-finger-touch-point-2' => __( 'Finger touch point 2', 'covercase' ) ), array( 'si-gesture-hand-symbol' => __( 'Hand symbol', 'covercase' ) ), array( 'si-gesture-hand-touch-1' => __( 'Hand touch 1', 'covercase' ) ), array( 'si-gesture-swipe-around' => __( 'Swipe around', 'covercase' ) ), array( 'si-gesture-swipe-around-2' => __( 'Swipe around 2', 'covercase' ) ), array( 'si-gesture-swipe-down' => __( 'Swipe down', 'covercase' ) ), array( 'si-gesture-swipe-expand' => __( 'Swipe expand', 'covercase' ) ), array( 'si-gesture-swipe-left' => __( 'Swipe left', 'covercase' ) ), array( 'si-gesture-swipe-minimize' => __( 'Swipe minimize', 'covercase' ) ), array( 'si-gesture-swipe-move-hand' => __( 'Swipe move hand', 'covercase' ) ), array( 'si-gesture-swipe-point' => __( 'Swipe point', 'covercase' ) ), array( 'si-gesture-swipe-point-left' => __( 'Swipe point left', 'covercase' ) ), array( 'si-gesture-swipe-point-right' => __( 'Swipe point right', 'covercase' ) ), array( 'si-gesture-swipe-point-right-left' => __( 'Swipe point right left', 'covercase' ) ), array( 'si-gesture-swipe-refresh' => __( 'Swipe refresh', 'covercase' ) ), array( 'si-gesture-swipe-right' => __( 'Swipe right', 'covercase' ) ), array( 'si-gesture-swipe-right-left' => __( 'Swipe right left', 'covercase' ) ), array( 'si-gesture-swipe-scroll-up-down' => __( 'Swipe scroll up down', 'covercase' ) ), array( 'si-gesture-swipe-time' => __( 'Swipe time', 'covercase' ) ), array( 'si-gesture-swipe-up' => __( 'Swipe up', 'covercase' ) ), array( 'si-gesture-swipe-up-down' => __( 'Swipe up down', 'covercase' ) ), array( 'si-gesture-touch' => __( 'Touch', 'covercase' ) ), array( 'si-gesture-touch-click' => __( 'Touch click', 'covercase' ) ), array( 'si-gesture-touch-finger-1' => __( 'Touch finger 1', 'covercase' ) ), array( 'si-gesture-touch-fingers' => __( 'Touch fingers', 'covercase' ) ), array( 'si-gesture-touch-move' => __( 'Touch move', 'covercase' ) ), array( 'si-gesture-touch-point-click' => __( 'Touch point click', 'covercase' ) ), array( 'si-gesture-touch-point-left' => __( 'Touch point left', 'covercase' ) ), array( 'si-gesture-touch-point-right' => __( 'Touch point right', 'covercase' ) ), array( 'si-gesture-touch-swipe-left-1' => __( 'Touch swipe left 1', 'covercase' ) ) ), __( 'Health', 'covercase' ) => array( array( 'si-health-fitness-apple' => __( 'Fitness apple', 'covercase' ) ), array( 'si-health-fitness-badge' => __( 'Fitness badge', 'covercase' ) ), array( 'si-health-fitness-balance' => __( 'Fitness balance', 'covercase' ) ), array( 'si-health-fitness-baseball' => __( 'Fitness baseball', 'covercase' ) ), array( 'si-health-fitness-baseball-ball' => __( 'Fitness baseball ball', 'covercase' ) ), array( 'si-health-fitness-biceps' => __( 'Fitness biceps', 'covercase' ) ), array( 'si-health-fitness-bicycle' => __( 'Fitness bicycle', 'covercase' ) ), array( 'si-health-fitness-bread' => __( 'Fitness bread', 'covercase' ) ), array( 'si-health-fitness-burger' => __( 'Fitness burger', 'covercase' ) ), array( 'si-health-fitness-carrot' => __( 'Fitness carrot', 'covercase' ) ), array( 'si-health-fitness-checklist' => __( 'Fitness checklist', 'covercase' ) ), array( 'si-health-fitness-clock' => __( 'Fitness clock', 'covercase' ) ), array( 'si-health-fitness-diet-pills' => __( 'Fitness diet pills', 'covercase' ) ), array( 'si-health-fitness-fish' => __( 'Fitness fish', 'covercase' ) ), array( 'si-health-fitness-foot' => __( 'Fitness foot', 'covercase' ) ), array( 'si-health-fitness-fork-spoon' => __( 'Fitness fork spoon', 'covercase' ) ), array( 'si-health-fitness-goal-achieved' => __( 'Fitness goal achieved', 'covercase' ) ), array( 'si-health-fitness-golf-ball' => __( 'Fitness golf ball', 'covercase' ) ), array( 'si-health-fitness-grain' => __( 'Fitness grain', 'covercase' ) ), array( 'si-health-fitness-gym' => __( 'Fitness gym', 'covercase' ) ), array( 'si-health-fitness-hand-grip' => __( 'Fitness hand grip', 'covercase' ) ), array( 'si-health-fitness-heart' => __( 'Fitness heart', 'covercase' ) ), array( 'si-health-fitness-heart-2' => __( 'Fitness heart 2', 'covercase' ) ), array( 'si-health-fitness-heart-impulse' => __( 'Fitness heart impulse', 'covercase' ) ), array( 'si-health-fitness-juice' => __( 'Fitness juice', 'covercase' ) ), array( 'si-health-fitness-list' => __( 'Fitness list', 'covercase' ) ), array( 'si-health-fitness-list-2' => __( 'Fitness list 2', 'covercase' ) ), array( 'si-health-fitness-lungs' => __( 'Fitness lungs', 'covercase' ) ), array( 'si-health-fitness-measurement-tape' => __( 'Fitness measurement tape', 'covercase' ) ), array( 'si-health-fitness-medal' => __( 'Fitness medal', 'covercase' ) ), array( 'si-health-fitness-milk' => __( 'Fitness milk', 'covercase' ) ), array( 'si-health-fitness-mp3-player' => __( 'Fitness mp3 player', 'covercase' ) ), array( 'si-health-fitness-no-smoking' => __( 'Fitness no smoking', 'covercase' ) ), array( 'si-health-fitness-peper' => __( 'Fitness peper', 'covercase' ) ), array( 'si-health-fitness-pills' => __( 'Fitness pills', 'covercase' ) ), array( 'si-health-fitness-pills-2' => __( 'Fitness pills 2', 'covercase' ) ), array( 'si-health-fitness-plate' => __( 'Fitness plate', 'covercase' ) ), array( 'si-health-fitness-scale' => __( 'Fitness scale', 'covercase' ) ), array( 'si-health-fitness-scale-2' => __( 'Fitness scale 2', 'covercase' ) ), array( 'si-health-fitness-sea' => __( 'Fitness sea', 'covercase' ) ), array( 'si-health-fitness-sis-kebab' => __( 'Fitness sis kebab', 'covercase' ) ), array( 'si-health-fitness-sneakers' => __( 'Fitness sneakers', 'covercase' ) ), array( 'si-health-fitness-soup' => __( 'Fitness soup', 'covercase' ) ), array( 'si-health-fitness-stationary-bike' => __( 'Fitness stationary bike', 'covercase' ) ), array( 'si-health-fitness-stomach' => __( 'Fitness stomach', 'covercase' ) ), array( 'si-health-fitness-stopwatch' => __( 'Fitness stopwatch', 'covercase' ) ), array( 'si-health-fitness-tape' => __( 'Fitness tape', 'covercase' ) ), array( 'si-health-fitness-target' => __( 'Fitness target', 'covercase' ) ), array( 'si-health-fitness-tennis' => __( 'Fitness tennis', 'covercase' ) ), array( 'si-health-fitness-tracking-watch' => __( 'Fitness tracking watch', 'covercase' ) ), array( 'si-health-fitness-treadmill' => __( 'Fitness treadmill', 'covercase' ) ), array( 'si-health-fitness-water-bottle' => __( 'Fitness water bottle', 'covercase' ) ), array( 'si-health-fitness-weight-control' => __( 'Fitness weight control', 'covercase' ) ), array( 'si-health-fitness-weight-lifting' => __( 'Fitness weight lifting', 'covercase' ) ), array( 'si-health-fitness-weight-loss-belt' => __( 'Fitness weight loss belt', 'covercase' ) ) ), __( 'Industry', 'covercase' ) => array( array( 'si-industry-farming-bee-box' => __( 'Farming bee box', 'covercase' ) ), array( 'si-industry-farming-brush-cutter' => __( 'Farming brush cutter', 'covercase' ) ), array( 'si-industry-farming-container' => __( 'Farming container', 'covercase' ) ), array( 'si-industry-farming-containers' => __( 'Farming containers', 'covercase' ) ), array( 'si-industry-farming-crane' => __( 'Farming crane', 'covercase' ) ), array( 'si-industry-farming-crane-2' => __( 'Farming crane 2', 'covercase' ) ), array( 'si-industry-farming-dam' => __( 'Farming dam', 'covercase' ) ), array( 'si-industry-farming-eggs' => __( 'Farming eggs', 'covercase' ) ), array( 'si-industry-farming-electrical-grid' => __( 'Farming electrical grid', 'covercase' ) ), array( 'si-industry-farming-electrical-grid-2' => __( 'Farming electrical grid 2', 'covercase' ) ), array( 'si-industry-farming-factory' => __( 'Farming factory', 'covercase' ) ), array( 'si-industry-farming-factory-2' => __( 'Farming factory 2', 'covercase' ) ), array( 'si-industry-farming-farmer' => __( 'Farming farmer', 'covercase' ) ), array( 'si-industry-farming-gas-deposit' => __( 'Farming gas deposit', 'covercase' ) ), array( 'si-industry-farming-honey' => __( 'Farming honey', 'covercase' ) ), array( 'si-industry-farming-honey-2' => __( 'Farming honey 2', 'covercase' ) ), array( 'si-industry-farming-liquid-deposit' => __( 'Farming liquid deposit', 'covercase' ) ), array( 'si-industry-farming-liquid-tanker' => __( 'Farming liquid tanker', 'covercase' ) ), array( 'si-industry-farming-manufacturing-line' => __( 'Farming manufacturing line', 'covercase' ) ), array( 'si-industry-farming-manufacturing-robot' => __( 'Farming manufacturing robot', 'covercase' ) ), array( 'si-industry-farming-metal-bucket' => __( 'Farming metal bucket', 'covercase' ) ), array( 'si-industry-farming-metal-bucket-2' => __( 'Farming metal bucket 2', 'covercase' ) ), array( 'si-industry-farming-milk-bottle' => __( 'Farming milk bottle', 'covercase' ) ), array( 'si-industry-farming-milk-bucket' => __( 'Farming milk bucket', 'covercase' ) ), array( 'si-industry-farming-nature' => __( 'Farming nature', 'covercase' ) ), array( 'si-industry-farming-new-plant' => __( 'Farming new plant', 'covercase' ) ), array( 'si-industry-farming-offshore-drilling' => __( 'Farming offshore drilling', 'covercase' ) ), array( 'si-industry-farming-oil-barrel' => __( 'Farming oil barrel', 'covercase' ) ), array( 'si-industry-farming-oil-barrel-2' => __( 'Farming oil barrel 2', 'covercase' ) ), array( 'si-industry-farming-pipe' => __( 'Farming pipe', 'covercase' ) ), array( 'si-industry-farming-pipe-2' => __( 'Farming pipe 2', 'covercase' ) ), array( 'si-industry-farming-pipes' => __( 'Farming pipes', 'covercase' ) ), array( 'si-industry-farming-rake' => __( 'Farming rake', 'covercase' ) ), array( 'si-industry-farming-rake-shovel' => __( 'Farming rake shovel', 'covercase' ) ), array( 'si-industry-farming-refinery' => __( 'Farming refinery', 'covercase' ) ), array( 'si-industry-farming-sack' => __( 'Farming sack', 'covercase' ) ), array( 'si-industry-farming-scarey-man' => __( 'Farming scarey man', 'covercase' ) ), array( 'si-industry-farming-trolley' => __( 'Farming trolley', 'covercase' ) ), array( 'si-industry-farming-trolley-loaded' => __( 'Farming trolley loaded', 'covercase' ) ), array( 'si-industry-farming-warehouse' => __( 'Farming warehouse', 'covercase' ) ), array( 'si-industry-farming-watering-can' => __( 'Farming watering can', 'covercase' ) ), array( 'si-industry-farming-wheelbarrow' => __( 'Farming wheelbarrow', 'covercase' ) ), array( 'si-industry-farming-wheelbarrow-loaded' => __( 'Farming wheelbarrow loaded', 'covercase' ) ), array( 'si-industry-farming-wood-fence' => __( 'Farming wood fence', 'covercase' ) ), array( 'si-industry-farming-wood-fence-2' => __( 'Farming wood fence 2', 'covercase' ) ) ), __( 'Laundry', 'covercase' ) => array( array( 'si-laundry-30c' => __( '30c', 'covercase' ) ), array( 'si-laundry-40c' => __( '40c', 'covercase' ) ), array( 'si-laundry-50c' => __( '50c', 'covercase' ) ), array( 'si-laundry-60c' => __( '60c', 'covercase' ) ), array( 'si-laundry-70c' => __( '70c', 'covercase' ) ), array( 'si-laundry-95c' => __( '95c', 'covercase' ) ), array( 'si-laundry-any-solvent' => __( 'Any solvent', 'covercase' ) ), array( 'si-laundry-any-solvent-except-tetrachlorethylene' => __( 'Any solvent except tetrachlorethylene', 'covercase' ) ), array( 'si-laundry-bleach-if-needed' => __( 'Bleach if needed', 'covercase' ) ), array( 'si-laundry-clean-clothes' => __( 'Clean clothes', 'covercase' ) ), array( 'si-laundry-detergent' => __( 'Detergent', 'covercase' ) ), array( 'si-laundry-dirty-clothes' => __( 'Dirty clothes', 'covercase' ) ), array( 'si-laundry-do-not-bleach' => __( 'Do not bleach', 'covercase' ) ), array( 'si-laundry-do-not-dryclean' => __( 'Do not dryclean', 'covercase' ) ), array( 'si-laundry-do-not-tumble-dry' => __( 'Do not tumble dry', 'covercase' ) ), array( 'si-laundry-do-not-wash' => __( 'Do not wash', 'covercase' ) ), array( 'si-laundry-do-not-wring' => __( 'Do not wring', 'covercase' ) ), array( 'si-laundry-drip-dry' => __( 'Drip dry', 'covercase' ) ), array( 'si-laundry-dry' => __( 'Dry', 'covercase' ) ), array( 'si-laundry-dry-flat' => __( 'Dry flat', 'covercase' ) ), array( 'si-laundry-dry-in-the-shade' => __( 'Dry in the shade', 'covercase' ) ), array( 'si-laundry-dry-normal-high-heat' => __( 'Dry normal high heat', 'covercase' ) ), array( 'si-laundry-dry-normal-low-heat' => __( 'Dry normal low heat', 'covercase' ) ), array( 'si-laundry-dry-normal-medium-heat' => __( 'Dry normal medium heat', 'covercase' ) ), array( 'si-laundry-dryclean' => __( 'Dryclean', 'covercase' ) ), array( 'si-laundry-gentle-delicate' => __( 'Gentle delicate', 'covercase' ) ), array( 'si-laundry-hand-wash' => __( 'Hand wash', 'covercase' ) ), array( 'si-laundry-hang-to-dry' => __( 'Hang to dry', 'covercase' ) ), array( 'si-laundry-iron' => __( 'Iron', 'covercase' ) ), array( 'si-laundry-iron-max-no-steam' => __( 'Iron max no steam', 'covercase' ) ), array( 'si-laundry-iron-max-steam' => __( 'Iron max steam', 'covercase' ) ), array( 'si-laundry-iron-max-temp-110' => __( 'Iron max temp 110', 'covercase' ) ), array( 'si-laundry-iron-max-temp-150' => __( 'Iron max temp 150', 'covercase' ) ), array( 'si-laundry-iron-max-temp-200' => __( 'Iron max temp 200', 'covercase' ) ), array( 'si-laundry-l' => __( 'L', 'covercase' ) ), array( 'si-laundry-low-heat' => __( 'Low heat', 'covercase' ) ), array( 'si-laundry-m' => __( 'M', 'covercase' ) ), array( 'si-laundry-machine-wash' => __( 'Machine wash', 'covercase' ) ), array( 'si-laundry-machine-wash-gentle-delicate' => __( 'Machine wash gentle delicate', 'covercase' ) ), array( 'si-laundry-machine-wash-permanent-press' => __( 'Machine wash permanent press', 'covercase' ) ), array( 'si-laundry-no-detergent' => __( 'No detergent', 'covercase' ) ), array( 'si-laundry-no-iron' => __( 'No iron', 'covercase' ) ), array( 'si-laundry-no-steam-finishing' => __( 'No steam finishing', 'covercase' ) ), array( 'si-laundry-non-chlorine' => __( 'Non chlorine', 'covercase' ) ), array( 'si-laundry-non-chlorine-2' => __( 'Non chlorine 2', 'covercase' ) ), array( 'si-laundry-permanent-press' => __( 'Permanent press', 'covercase' ) ), array( 'si-laundry-petroleum-solvent-only' => __( 'Petroleum solvent only', 'covercase' ) ), array( 'si-laundry-reduced-moisture' => __( 'Reduced moisture', 'covercase' ) ), array( 'si-laundry-s' => __( 'S', 'covercase' ) ), array( 'si-laundry-short-cycle' => __( 'Short cycle', 'covercase' ) ), array( 'si-laundry-tumble-dry' => __( 'Tumble dry', 'covercase' ) ), array( 'si-laundry-wash30c' => __( 'Wash30c', 'covercase' ) ), array( 'si-laundry-wash-40c' => __( 'Wash 40c', 'covercase' ) ), array( 'si-laundry-wash-50c' => __( 'Wash 50c', 'covercase' ) ), array( 'si-laundry-wash-60c' => __( 'Wash 60c', 'covercase' ) ), array( 'si-laundry-wash-70c' => __( 'Wash 70c', 'covercase' ) ), array( 'si-laundry-wash-80c' => __( 'Wash 80c', 'covercase' ) ), array( 'si-laundry-wash-90c' => __( 'Wash 90c', 'covercase' ) ), array( 'si-laundry-washing-machine' => __( 'Washing machine', 'covercase' ) ), array( 'si-laundry-washing-machine-2' => __( 'Washing machine 2', 'covercase' ) ), array( 'si-laundry-wet-cleaning' => __( 'Wet cleaning', 'covercase' ) ), array( 'si-laundry-wring' => __( 'Wring', 'covercase' ) ), array( 'si-laundry-xl' => __( 'Xl', 'covercase' ) ), array( 'si-laundry-xs' => __( 'Xs', 'covercase' ) ), array( 'si-laundry-xxl' => __( 'Xxl', 'covercase' ) ) ), __( 'Letters', 'covercase' ) => array( array( 'si-letters-numbers-0-number' => __( 'Numbers 0 number', 'covercase' ) ), array( 'si-letters-numbers-1-number' => __( 'Numbers 1 number', 'covercase' ) ), array( 'si-letters-numbers-2-number' => __( 'Numbers 2 number', 'covercase' ) ), array( 'si-letters-numbers-3-number' => __( 'Numbers 3 number', 'covercase' ) ), array( 'si-letters-numbers-4-number' => __( 'Numbers 4 number', 'covercase' ) ), array( 'si-letters-numbers-5-number' => __( 'Numbers 5 number', 'covercase' ) ), array( 'si-letters-numbers-6-number' => __( 'Numbers 6 number', 'covercase' ) ), array( 'si-letters-numbers-7-number' => __( 'Numbers 7 number', 'covercase' ) ), array( 'si-letters-numbers-8-number' => __( 'Numbers 8 number', 'covercase' ) ), array( 'si-letters-numbers-9-number' => __( 'Numbers 9 number', 'covercase' ) ), array( 'si-letters-numbers-a-letter' => __( 'Numbers a letter', 'covercase' ) ), array( 'si-letters-numbers-b-letter' => __( 'Numbers b letter', 'covercase' ) ), array( 'si-letters-numbers-c-letter' => __( 'Numbers c letter', 'covercase' ) ), array( 'si-letters-numbers-d-letter' => __( 'Numbers d letter', 'covercase' ) ), array( 'si-letters-numbers-e-letter' => __( 'Numbers e letter', 'covercase' ) ), array( 'si-letters-numbers-f-letter' => __( 'Numbers f letter', 'covercase' ) ), array( 'si-letters-numbers-g-letter' => __( 'Numbers g letter', 'covercase' ) ), array( 'si-letters-numbers-h-letter' => __( 'Numbers h letter', 'covercase' ) ), array( 'si-letters-numbers-hash-letter-symbol' => __( 'Numbers hash letter symbol', 'covercase' ) ), array( 'si-letters-numbers-i-letter' => __( 'Numbers i letter', 'covercase' ) ), array( 'si-letters-numbers-j-letter' => __( 'Numbers j letter', 'covercase' ) ), array( 'si-letters-numbers-k-letter' => __( 'Numbers k letter', 'covercase' ) ), array( 'si-letters-numbers-l-letter' => __( 'Numbers l letter', 'covercase' ) ), array( 'si-letters-numbers-letter' => __( 'Numbers letter', 'covercase' ) ), array( 'si-letters-numbers-letter-1' => __( 'Numbers letter 1', 'covercase' ) ), array( 'si-letters-numbers-m-letter' => __( 'Numbers m letter', 'covercase' ) ), array( 'si-letters-numbers-n-letter' => __( 'Numbers n letter', 'covercase' ) ), array( 'si-letters-numbers-o-letter' => __( 'Numbers o letter', 'covercase' ) ), array( 'si-letters-numbers-p-letter' => __( 'Numbers p letter', 'covercase' ) ), array( 'si-letters-numbers-percentage-letter' => __( 'Numbers percentage letter', 'covercase' ) ), array( 'si-letters-numbers-q-letter' => __( 'Numbers q letter', 'covercase' ) ), array( 'si-letters-numbers-r-letter' => __( 'Numbers r letter', 'covercase' ) ), array( 'si-letters-numbers-s-letter' => __( 'Numbers s letter', 'covercase' ) ), array( 'si-letters-numbers-t-letter' => __( 'Numbers t letter', 'covercase' ) ), array( 'si-letters-numbers-u-letter' => __( 'Numbers u letter', 'covercase' ) ), array( 'si-letters-numbers-v-letter' => __( 'Numbers v letter', 'covercase' ) ), array( 'si-letters-numbers-w-letter' => __( 'Numbers w letter', 'covercase' ) ), array( 'si-letters-numbers-x-letter' => __( 'Numbers x letter', 'covercase' ) ), array( 'si-letters-numbers-y-letter' => __( 'Numbers y letter', 'covercase' ) ), array( 'si-letters-numbers-z-letter' => __( 'Numbers z letter', 'covercase' ) ) ), __( 'Mail', 'covercase' ) => array( array( 'si-mail-add-mail' => __( 'Add mail', 'covercase' ) ), array( 'si-mail-attach' => __( 'Attach', 'covercase' ) ), array( 'si-mail-attach-mail' => __( 'Attach mail', 'covercase' ) ), array( 'si-mail-delete-mail' => __( 'Delete mail', 'covercase' ) ), array( 'si-mail-empty-inbox' => __( 'Empty inbox', 'covercase' ) ), array( 'si-mail-favorite-mail' => __( 'Favorite mail', 'covercase' ) ), array( 'si-mail-favorite-mail-3' => __( 'Favorite mail 3', 'covercase' ) ), array( 'si-mail-inbox' => __( 'Inbox', 'covercase' ) ), array( 'si-mail-inbox-add' => __( 'Inbox add', 'covercase' ) ), array( 'si-mail-inbox-confirm' => __( 'Inbox confirm', 'covercase' ) ), array( 'si-mail-inbox-cut' => __( 'Inbox cut', 'covercase' ) ), array( 'si-mail-inbox-delete' => __( 'Inbox delete', 'covercase' ) ), array( 'si-mail-inbox-income' => __( 'Inbox income', 'covercase' ) ), array( 'si-mail-inbox-letter' => __( 'Inbox letter', 'covercase' ) ), array( 'si-mail-inbox-move' => __( 'Inbox move', 'covercase' ) ), array( 'si-mail-inbox-outcome' => __( 'Inbox outcome', 'covercase' ) ), array( 'si-mail-inbox-receive' => __( 'Inbox receive', 'covercase' ) ), array( 'si-mail-inbox-remove' => __( 'Inbox remove', 'covercase' ) ), array( 'si-mail-inbox-send' => __( 'Inbox send', 'covercase' ) ), array( 'si-mail-letter-details' => __( 'Letter details', 'covercase' ) ), array( 'si-mail-lock-mail' => __( 'Lock mail', 'covercase' ) ), array( 'si-mail-mail' => __( 'Mail', 'covercase' ) ), array( 'si-mail-mail-2' => __( 'Mail 2', 'covercase' ) ), array( 'si-mail-mail-address' => __( 'Mail address', 'covercase' ) ), array( 'si-mail-mail-confirm' => __( 'Mail confirm', 'covercase' ) ), array( 'si-mail-mail-cut' => __( 'Mail cut', 'covercase' ) ), array( 'si-mail-mail-delete' => __( 'Mail delete', 'covercase' ) ), array( 'si-mail-mail-favorites' => __( 'Mail favorites', 'covercase' ) ), array( 'si-mail-mail-images' => __( 'Mail images', 'covercase' ) ), array( 'si-mail-mail-letter' => __( 'Mail letter', 'covercase' ) ), array( 'si-mail-mail-move' => __( 'Mail move', 'covercase' ) ), array( 'si-mail-mail-receive' => __( 'Mail receive', 'covercase' ) ), array( 'si-mail-mail-send' => __( 'Mail send', 'covercase' ) ), array( 'si-mail-mail-support' => __( 'Mail support', 'covercase' ) ), array( 'si-mail-mail-unknown' => __( 'Mail unknown', 'covercase' ) ), array( 'si-mail-mail-videos' => __( 'Mail videos', 'covercase' ) ), array( 'si-mail-post-box' => __( 'Post box', 'covercase' ) ), array( 'si-mail-post-box-2' => __( 'Post box 2', 'covercase' ) ), array( 'si-mail-post-box-3' => __( 'Post box 3', 'covercase' ) ), array( 'si-mail-print-mail' => __( 'Print mail', 'covercase' ) ), array( 'si-mail-read-mail' => __( 'Read mail', 'covercase' ) ), array( 'si-mail-receive-mail-2' => __( 'Receive mail 2', 'covercase' ) ), array( 'si-mail-receive-mail-3' => __( 'Receive mail 3', 'covercase' ) ), array( 'si-mail-remove-mail' => __( 'Remove mail', 'covercase' ) ), array( 'si-mail-search-mail' => __( 'Search mail', 'covercase' ) ), array( 'si-mail-secure-mail' => __( 'Secure mail', 'covercase' ) ), array( 'si-mail-send-mail' => __( 'Send mail', 'covercase' ) ), array( 'si-mail-send-mail-2' => __( 'Send mail 2', 'covercase' ) ), array( 'si-mail-send-mail-3' => __( 'Send mail 3', 'covercase' ) ), array( 'si-mail-spam-mail' => __( 'Spam mail', 'covercase' ) ), array( 'si-mail-stamp' => __( 'Stamp', 'covercase' ) ), array( 'si-mail-stamp-2' => __( 'Stamp 2', 'covercase' ) ), array( 'si-mail-stamp-3' => __( 'Stamp 3', 'covercase' ) ), array( 'si-mail-stamp-4' => __( 'Stamp 4', 'covercase' ) ), array( 'si-mail-urgent-mail' => __( 'Urgent mail', 'covercase' ) ) ), __( 'Medical', 'covercase' ) => array( array( 'si-medical-ambulance' => __( 'Ambulance', 'covercase' ) ), array( 'si-medical-blood-drop' => __( 'Blood drop', 'covercase' ) ), array( 'si-medical-blood-drop-2' => __( 'Blood drop 2', 'covercase' ) ), array( 'si-medical-blood-drop-3' => __( 'Blood drop 3', 'covercase' ) ), array( 'si-medical-cross' => __( 'Cross', 'covercase' ) ), array( 'si-medical-cross-2' => __( 'Cross 2', 'covercase' ) ), array( 'si-medical-cross-3' => __( 'Cross 3', 'covercase' ) ), array( 'si-medical-diagnose-heart' => __( 'Diagnose heart', 'covercase' ) ), array( 'si-medical-doctor-bag' => __( 'Doctor bag', 'covercase' ) ), array( 'si-medical-doctor-notes' => __( 'Doctor notes', 'covercase' ) ), array( 'si-medical-drug' => __( 'Drug', 'covercase' ) ), array( 'si-medical-gauze' => __( 'Gauze', 'covercase' ) ), array( 'si-medical-heart' => __( 'Heart', 'covercase' ) ), array( 'si-medical-heart-cross' => __( 'Heart cross', 'covercase' ) ), array( 'si-medical-helicopter-passageway' => __( 'Helicopter passageway', 'covercase' ) ), array( 'si-medical-home-care' => __( 'Home care', 'covercase' ) ), array( 'si-medical-hospital-bed' => __( 'Hospital bed', 'covercase' ) ), array( 'si-medical-hospital-bed-2' => __( 'Hospital bed 2', 'covercase' ) ), array( 'si-medical-hospital-point' => __( 'Hospital point', 'covercase' ) ), array( 'si-medical-medical-note' => __( 'Medical note', 'covercase' ) ), array( 'si-medical-medical-sign' => __( 'Medical sign', 'covercase' ) ), array( 'si-medical-medicine-drug' => __( 'Medicine drug', 'covercase' ) ), array( 'si-medical-nurse' => __( 'Nurse', 'covercase' ) ), array( 'si-medical-nurse-hat' => __( 'Nurse hat', 'covercase' ) ), array( 'si-medical-patient-wheelchair' => __( 'Patient wheelchair', 'covercase' ) ), array( 'si-medical-pill' => __( 'Pill', 'covercase' ) ), array( 'si-medical-pills' => __( 'Pills', 'covercase' ) ), array( 'si-medical-plaster' => __( 'Plaster', 'covercase' ) ), array( 'si-medical-plaster-2' => __( 'Plaster 2', 'covercase' ) ), array( 'si-medical-pulse' => __( 'Pulse', 'covercase' ) ), array( 'si-medical-pulse-histogram' => __( 'Pulse histogram', 'covercase' ) ), array( 'si-medical-ribbon' => __( 'Ribbon', 'covercase' ) ), array( 'si-medical-sterthooscope' => __( 'Sterthooscope', 'covercase' ) ), array( 'si-medical-syringe' => __( 'Syringe', 'covercase' ) ), array( 'si-medical-temperature' => __( 'Temperature', 'covercase' ) ) ), __( 'Music', 'covercase' ) => array( array( 'si-music-add-mic' => __( 'Add mic', 'covercase' ) ), array( 'si-music-add-sound-folder' => __( 'Add sound folder', 'covercase' ) ), array( 'si-music-antena' => __( 'Antena', 'covercase' ) ), array( 'si-music-app-settings' => __( 'App settings', 'covercase' ) ), array( 'si-music-app-sound-settings' => __( 'App sound settings', 'covercase' ) ), array( 'si-music-audio-jack' => __( 'Audio jack', 'covercase' ) ), array( 'si-music-backward-button' => __( 'Backward button', 'covercase' ) ), array( 'si-music-burn-disc' => __( 'Burn disc', 'covercase' ) ), array( 'si-music-cassette' => __( 'Cassette', 'covercase' ) ), array( 'si-music-confirm-mic' => __( 'Confirm mic', 'covercase' ) ), array( 'si-music-delete-sound-folder' => __( 'Delete sound folder', 'covercase' ) ), array( 'si-music-digital-sound' => __( 'Digital sound', 'covercase' ) ), array( 'si-music-disc' => __( 'Disc', 'covercase' ) ), array( 'si-music-disc-cover' => __( 'Disc cover', 'covercase' ) ), array( 'si-music-disc-cover-2' => __( 'Disc cover 2', 'covercase' ) ), array( 'si-music-eject' => __( 'Eject', 'covercase' ) ), array( 'si-music-expand' => __( 'Expand', 'covercase' ) ), array( 'si-music-fast-backward' => __( 'Fast backward', 'covercase' ) ), array( 'si-music-fast-forward' => __( 'Fast forward', 'covercase' ) ), array( 'si-music-favorites' => __( 'Favorites', 'covercase' ) ), array( 'si-music-forward-button' => __( 'Forward button', 'covercase' ) ), array( 'si-music-guitar' => __( 'Guitar', 'covercase' ) ), array( 'si-music-headphones' => __( 'Headphones', 'covercase' ) ), array( 'si-music-headphones-connected' => __( 'Headphones connected', 'covercase' ) ), array( 'si-music-headphones-mic' => __( 'Headphones mic', 'covercase' ) ), array( 'si-music-knob' => __( 'Knob', 'covercase' ) ), array( 'si-music-lyrics' => __( 'Lyrics', 'covercase' ) ), array( 'si-music-memory-card' => __( 'Memory card', 'covercase' ) ), array( 'si-music-mic' => __( 'Mic', 'covercase' ) ), array( 'si-music-microphone' => __( 'Microphone', 'covercase' ) ), array( 'si-music-minimize' => __( 'Minimize', 'covercase' ) ), array( 'si-music-mp3-player' => __( 'Mp3 player', 'covercase' ) ), array( 'si-music-multimedia-player' => __( 'Multimedia player', 'covercase' ) ), array( 'si-music-music-app-store' => __( 'Music app store', 'covercase' ) ), array( 'si-music-note' => __( 'Note', 'covercase' ) ), array( 'si-music-note-2' => __( 'Note 2', 'covercase' ) ), array( 'si-music-note-3' => __( 'Note 3', 'covercase' ) ), array( 'si-music-note-4' => __( 'Note 4', 'covercase' ) ), array( 'si-music-pause-button' => __( 'Pause button', 'covercase' ) ), array( 'si-music-piano' => __( 'Piano', 'covercase' ) ), array( 'si-music-pick-up-vinyl' => __( 'Pick up vinyl', 'covercase' ) ), array( 'si-music-pin' => __( 'Pin', 'covercase' ) ), array( 'si-music-play-button' => __( 'Play button', 'covercase' ) ), array( 'si-music-pop-up-windows' => __( 'Pop up windows', 'covercase' ) ), array( 'si-music-power-off' => __( 'Power off', 'covercase' ) ), array( 'si-music-radio' => __( 'Radio', 'covercase' ) ), array( 'si-music-record-button' => __( 'Record button', 'covercase' ) ), array( 'si-music-remove-headphones' => __( 'Remove headphones', 'covercase' ) ), array( 'si-music-remove-headphones-2' => __( 'Remove headphones 2', 'covercase' ) ), array( 'si-music-remove-mic' => __( 'Remove mic', 'covercase' ) ), array( 'si-music-remove-mic-2' => __( 'Remove mic 2', 'covercase' ) ), array( 'si-music-repeat' => __( 'Repeat', 'covercase' ) ), array( 'si-music-search' => __( 'Search', 'covercase' ) ), array( 'si-music-search-sound-folder' => __( 'Search sound folder', 'covercase' ) ), array( 'si-music-share-audio' => __( 'Share audio', 'covercase' ) ), array( 'si-music-shuffle' => __( 'Shuffle', 'covercase' ) ), array( 'si-music-shuffle-2' => __( 'Shuffle 2', 'covercase' ) ), array( 'si-music-song-favorites' => __( 'Song favorites', 'covercase' ) ), array( 'si-music-song-file' => __( 'Song file', 'covercase' ) ), array( 'si-music-song-info' => __( 'Song info', 'covercase' ) ), array( 'si-music-song-lyrics' => __( 'Song lyrics', 'covercase' ) ), array( 'si-music-song-lyrics-2' => __( 'Song lyrics 2', 'covercase' ) ), array( 'si-music-sound-bass' => __( 'Sound bass', 'covercase' ) ), array( 'si-music-sound-control' => __( 'Sound control', 'covercase' ) ), array( 'si-music-sound-favorites' => __( 'Sound favorites', 'covercase' ) ), array( 'si-music-sound-folder' => __( 'Sound folder', 'covercase' ) ), array( 'si-music-sound-folder-2' => __( 'Sound folder 2', 'covercase' ) ), array( 'si-music-sound-waves' => __( 'Sound waves', 'covercase' ) ), array( 'si-music-speaker' => __( 'Speaker', 'covercase' ) ), array( 'si-music-speaker-1' => __( 'Speaker 1', 'covercase' ) ), array( 'si-music-speaker-2' => __( 'Speaker 2', 'covercase' ) ), array( 'si-music-speaker-volume-1' => __( 'Speaker volume 1', 'covercase' ) ), array( 'si-music-speaker-volume-2' => __( 'Speaker volume 2', 'covercase' ) ), array( 'si-music-speaker-volume-3' => __( 'Speaker volume 3', 'covercase' ) ), array( 'si-music-speaker-volume-decrease' => __( 'Speaker volume decrease', 'covercase' ) ), array( 'si-music-speaker-volume-increase' => __( 'Speaker volume increase', 'covercase' ) ), array( 'si-music-speaker-volume-mute' => __( 'Speaker volume mute', 'covercase' ) ), array( 'si-music-stop-button' => __( 'Stop button', 'covercase' ) ), array( 'si-music-add-headphones' => __( 'Add headphones', 'covercase' ) ), array( 'si-music-top-favorites' => __( 'Top favorites', 'covercase' ) ) ), __( 'Nature', 'covercase' ) => array( array( 'si-nature-air' => __( 'Air', 'covercase' ) ), array( 'si-nature-butterfly' => __( 'Butterfly', 'covercase' ) ), array( 'si-nature-cactus' => __( 'Cactus', 'covercase' ) ), array( 'si-nature-deep-water' => __( 'Deep water', 'covercase' ) ), array( 'si-nature-easter-bug' => __( 'Easter bug', 'covercase' ) ), array( 'si-nature-fire' => __( 'Fire', 'covercase' ) ), array( 'si-nature-flower' => __( 'Flower', 'covercase' ) ), array( 'si-nature-flower-2' => __( 'Flower 2', 'covercase' ) ), array( 'si-nature-flower-3' => __( 'Flower 3', 'covercase' ) ), array( 'si-nature-grass' => __( 'Grass', 'covercase' ) ), array( 'si-nature-honey' => __( 'Honey', 'covercase' ) ), array( 'si-nature-hurricane' => __( 'Hurricane', 'covercase' ) ), array( 'si-nature-leaf' => __( 'Leaf', 'covercase' ) ), array( 'si-nature-leaf-2' => __( 'Leaf 2', 'covercase' ) ), array( 'si-nature-leaf-3' => __( 'Leaf 3', 'covercase' ) ), array( 'si-nature-leaf-4' => __( 'Leaf 4', 'covercase' ) ), array( 'si-nature-mushroom' => __( 'Mushroom', 'covercase' ) ), array( 'si-nature-nature' => __( 'Nature', 'covercase' ) ), array( 'si-nature-plant' => __( 'Plant', 'covercase' ) ), array( 'si-nature-plant-2' => __( 'Plant 2', 'covercase' ) ), array( 'si-nature-sea' => __( 'Sea', 'covercase' ) ), array( 'si-nature-sun' => __( 'Sun', 'covercase' ) ), array( 'si-nature-sunset' => __( 'Sunset', 'covercase' ) ), array( 'si-nature-tree' => __( 'Tree', 'covercase' ) ), array( 'si-nature-tree-2' => __( 'Tree 2', 'covercase' ) ), array( 'si-nature-tree-3' => __( 'Tree 3', 'covercase' ) ), array( 'si-nature-tree-4' => __( 'Tree 4', 'covercase' ) ), array( 'si-nature-tree-5' => __( 'Tree 5', 'covercase' ) ), array( 'si-nature-tree-6' => __( 'Tree 6', 'covercase' ) ), array( 'si-nature-tree-7' => __( 'Tree 7', 'covercase' ) ), array( 'si-nature-tree-8' => __( 'Tree 8', 'covercase' ) ), array( 'si-nature-tree-9' => __( 'Tree 9', 'covercase' ) ), array( 'si-nature-volcano' => __( 'Volcano', 'covercase' ) ), array( 'si-nature-water-drop' => __( 'Water drop', 'covercase' ) ), array( 'si-nature-water-plant' => __( 'Water plant', 'covercase' ) ) ), __( 'Network', 'covercase' ) => array( array( 'si-network-database-add-database' => __( 'Database add database', 'covercase' ) ), array( 'si-network-database-antena' => __( 'Database antena', 'covercase' ) ), array( 'si-network-database-antena-2' => __( 'Database antena 2', 'covercase' ) ), array( 'si-network-database-cloud' => __( 'Database cloud', 'covercase' ) ), array( 'si-network-database-cloud-add' => __( 'Database cloud add', 'covercase' ) ), array( 'si-network-database-cloud-confirm' => __( 'Database cloud confirm', 'covercase' ) ), array( 'si-network-database-cloud-delete' => __( 'Database cloud delete', 'covercase' ) ), array( 'si-network-database-cloud-download' => __( 'Database cloud download', 'covercase' ) ), array( 'si-network-database-cloud-favorites' => __( 'Database cloud favorites', 'covercase' ) ), array( 'si-network-database-cloud-loading' => __( 'Database cloud loading', 'covercase' ) ), array( 'si-network-database-cloud-lock' => __( 'Database cloud lock', 'covercase' ) ), array( 'si-network-database-cloud-network' => __( 'Database cloud network', 'covercase' ) ), array( 'si-network-database-cloud-network-2' => __( 'Database cloud network 2', 'covercase' ) ), array( 'si-network-database-cloud-refresh' => __( 'Database cloud refresh', 'covercase' ) ), array( 'si-network-database-cloud-remove' => __( 'Database cloud remove', 'covercase' ) ), array( 'si-network-database-cloud-safety' => __( 'Database cloud safety', 'covercase' ) ), array( 'si-network-database-cloud-upload' => __( 'Database cloud upload', 'covercase' ) ), array( 'si-network-database-connected' => __( 'Database connected', 'covercase' ) ), array( 'si-network-database-connection-points' => __( 'Database connection points', 'covercase' ) ), array( 'si-network-database-connection-ports' => __( 'Database connection ports', 'covercase' ) ), array( 'si-network-database-connection-ports-2' => __( 'Database connection ports 2', 'covercase' ) ), array( 'si-network-database-connection-types' => __( 'Database connection types', 'covercase' ) ), array( 'si-network-database-connection-types-2' => __( 'Database connection types 2', 'covercase' ) ), array( 'si-network-database-connection-types-3' => __( 'Database connection types 3', 'covercase' ) ), array( 'si-network-database-database' => __( 'Database database', 'covercase' ) ), array( 'si-network-database-database-center' => __( 'Database database center', 'covercase' ) ), array( 'si-network-database-database-confrim' => __( 'Database database confrim', 'covercase' ) ), array( 'si-network-database-delete-database' => __( 'Database delete database', 'covercase' ) ), array( 'si-network-database-earth' => __( 'Database earth', 'covercase' ) ), array( 'si-network-database-hard-disc' => __( 'Database hard disc', 'covercase' ) ), array( 'si-network-database-hard-disc-cloud' => __( 'Database hard disc cloud', 'covercase' ) ), array( 'si-network-database-hard-disc-lock' => __( 'Database hard disc lock', 'covercase' ) ), array( 'si-network-database-hard-disc-multimedia' => __( 'Database hard disc multimedia', 'covercase' ) ), array( 'si-network-database-hard-disc-safety' => __( 'Database hard disc safety', 'covercase' ) ), array( 'si-network-database-home-network' => __( 'Database home network', 'covercase' ) ), array( 'si-network-database-hub' => __( 'Database hub', 'covercase' ) ), array( 'si-network-database-hub-connection' => __( 'Database hub connection', 'covercase' ) ), array( 'si-network-database-infranet' => __( 'Database infranet', 'covercase' ) ), array( 'si-network-database-lock-database' => __( 'Database lock database', 'covercase' ) ), array( 'si-network-database-lock-server' => __( 'Database lock server', 'covercase' ) ), array( 'si-network-database-network-computers' => __( 'Database network computers', 'covercase' ) ), array( 'si-network-database-network-connections' => __( 'Database network connections', 'covercase' ) ), array( 'si-network-database-network-connections-2' => __( 'Database network connections 2', 'covercase' ) ), array( 'si-network-database-network-disconnect' => __( 'Database network disconnect', 'covercase' ) ), array( 'si-network-database-network-lock' => __( 'Database network lock', 'covercase' ) ), array( 'si-network-database-network-routers' => __( 'Database network routers', 'covercase' ) ), array( 'si-network-database-network-routers-2' => __( 'Database network routers 2', 'covercase' ) ), array( 'si-network-database-network-server' => __( 'Database network server', 'covercase' ) ), array( 'si-network-database-network-servers' => __( 'Database network servers', 'covercase' ) ), array( 'si-network-database-no-wifi' => __( 'Database no wifi', 'covercase' ) ), array( 'si-network-database-phone-cable' => __( 'Database phone cable', 'covercase' ) ), array( 'si-network-database-phone-jack' => __( 'Database phone jack', 'covercase' ) ), array( 'si-network-database-remove-database' => __( 'Database remove database', 'covercase' ) ), array( 'si-network-database-router' => __( 'Database router', 'covercase' ) ), array( 'si-network-database-router-2' => __( 'Database router 2', 'covercase' ) ), array( 'si-network-database-safe-database' => __( 'Database safe database', 'covercase' ) ), array( 'si-network-database-safe-network' => __( 'Database safe network', 'covercase' ) ), array( 'si-network-database-safe-server' => __( 'Database safe server', 'covercase' ) ), array( 'si-network-database-search-hard-disc' => __( 'Database search hard disc', 'covercase' ) ), array( 'si-network-database-search-server' => __( 'Database search server', 'covercase' ) ), array( 'si-network-database-server-2' => __( 'Database server 2', 'covercase' ) ), array( 'si-network-database-server-3' => __( 'Database server 3', 'covercase' ) ), array( 'si-network-database-share' => __( 'Database share', 'covercase' ) ), array( 'si-network-database-signal' => __( 'Database signal', 'covercase' ) ), array( 'si-network-database-signal-2' => __( 'Database signal 2', 'covercase' ) ), array( 'si-network-database-signal-3' => __( 'Database signal 3', 'covercase' ) ), array( 'si-network-database-signal-4' => __( 'Database signal 4', 'covercase' ) ), array( 'si-network-database-signal-5' => __( 'Database signal 5', 'covercase' ) ), array( 'si-network-database-signal-lost' => __( 'Database signal lost', 'covercase' ) ), array( 'si-network-database-signal-wave' => __( 'Database signal wave', 'covercase' ) ), array( 'si-network-database-wifi' => __( 'Database wifi', 'covercase' ) ), array( 'si-network-database-wifi-2' => __( 'Database wifi 2', 'covercase' ) ), array( 'si-network-database-wifi-3' => __( 'Database wifi 3', 'covercase' ) ), array( 'si-network-database-wireless-cloud' => __( 'Database wireless cloud', 'covercase' ) ), array( 'si-network-database-wireless-hard-disc' => __( 'Database wireless hard disc', 'covercase' ) ) ), __( 'Phone', 'covercase' ) => array( array( 'si-phone-add-call' => __( 'Add call', 'covercase' ) ), array( 'si-phone-add-phone' => __( 'Add phone', 'covercase' ) ), array( 'si-phone-call' => __( 'Call', 'covercase' ) ), array( 'si-phone-call-speaker' => __( 'Call speaker', 'covercase' ) ), array( 'si-phone-call-symbol' => __( 'Call symbol', 'covercase' ) ), array( 'si-phone-call-symbol-2' => __( 'Call symbol 2', 'covercase' ) ), array( 'si-phone-delete-phone' => __( 'Delete phone', 'covercase' ) ), array( 'si-phone-drop-call' => __( 'Drop call', 'covercase' ) ), array( 'si-phone-full-signal' => __( 'Full signal', 'covercase' ) ), array( 'si-phone-hold-call' => __( 'Hold call', 'covercase' ) ), array( 'si-phone-incoming-call-2' => __( 'Incoming call 2', 'covercase' ) ), array( 'si-phone-incoming-calls' => __( 'Incoming calls', 'covercase' ) ), array( 'si-phone-incoming-outgoing-calls' => __( 'Incoming outgoing calls', 'covercase' ) ), array( 'si-phone-keypad' => __( 'Keypad', 'covercase' ) ), array( 'si-phone-lost-call-2' => __( 'Lost call 2', 'covercase' ) ), array( 'si-phone-lost-call-3' => __( 'Lost call 3', 'covercase' ) ), array( 'si-phone-lost-calls' => __( 'Lost calls', 'covercase' ) ), array( 'si-phone-low-signal' => __( 'Low signal', 'covercase' ) ), array( 'si-phone-medium-signal' => __( 'Medium signal', 'covercase' ) ), array( 'si-phone-mic' => __( 'Mic', 'covercase' ) ), array( 'si-phone-miss-call' => __( 'Miss call', 'covercase' ) ), array( 'si-phone-mute-mic' => __( 'Mute mic', 'covercase' ) ), array( 'si-phone-no-signal' => __( 'No signal', 'covercase' ) ), array( 'si-phone-outgoing-calls' => __( 'Outgoing calls', 'covercase' ) ), array( 'si-phone-phone-battery' => __( 'Phone battery', 'covercase' ) ), array( 'si-phone-phone-battery-2' => __( 'Phone battery 2', 'covercase' ) ), array( 'si-phone-phone-battery-empty' => __( 'Phone battery empty', 'covercase' ) ), array( 'si-phone-phone-battery-full' => __( 'Phone battery full', 'covercase' ) ), array( 'si-phone-phone-battery-half' => __( 'Phone battery half', 'covercase' ) ), array( 'si-phone-phone-battery-pin' => __( 'Phone battery pin', 'covercase' ) ), array( 'si-phone-phone-battery-share' => __( 'Phone battery share', 'covercase' ) ), array( 'si-phone-phone-charging' => __( 'Phone charging', 'covercase' ) ), array( 'si-phone-phone-chat' => __( 'Phone chat', 'covercase' ) ), array( 'si-phone-phone-chat-2' => __( 'Phone chat 2', 'covercase' ) ), array( 'si-phone-phone-chat-3' => __( 'Phone chat 3', 'covercase' ) ), array( 'si-phone-phone-cloud' => __( 'Phone cloud', 'covercase' ) ), array( 'si-phone-phone-confirm' => __( 'Phone confirm', 'covercase' ) ), array( 'si-phone-phone-contacts' => __( 'Phone contacts', 'covercase' ) ), array( 'si-phone-phone-favorites' => __( 'Phone favorites', 'covercase' ) ), array( 'si-phone-phone-favorites-2' => __( 'Phone favorites 2', 'covercase' ) ), array( 'si-phone-phone-incoming' => __( 'Phone incoming', 'covercase' ) ), array( 'si-phone-phone-loading' => __( 'Phone loading', 'covercase' ) ), array( 'si-phone-phone-loading-2' => __( 'Phone loading 2', 'covercase' ) ), array( 'si-phone-phone-lock' => __( 'Phone lock', 'covercase' ) ), array( 'si-phone-phone-messages' => __( 'Phone messages', 'covercase' ) ), array( 'si-phone-phone-multimedia' => __( 'Phone multimedia', 'covercase' ) ), array( 'si-phone-phone-music' => __( 'Phone music', 'covercase' ) ), array( 'si-phone-phone-outgoing' => __( 'Phone outgoing', 'covercase' ) ), array( 'si-phone-phone-password' => __( 'Phone password', 'covercase' ) ), array( 'si-phone-phone-phone-call' => __( 'Phone phone call', 'covercase' ) ), array( 'si-phone-phone-search' => __( 'Phone search', 'covercase' ) ), array( 'si-phone-phone-send-message' => __( 'Phone send message', 'covercase' ) ), array( 'si-phone-phone-settings' => __( 'Phone settings', 'covercase' ) ), array( 'si-phone-phone-shopping' => __( 'Phone shopping', 'covercase' ) ), array( 'si-phone-phone-signal' => __( 'Phone signal', 'covercase' ) ), array( 'si-phone-phone-signal-2' => __( 'Phone signal 2', 'covercase' ) ), array( 'si-phone-phone-sound' => __( 'Phone sound', 'covercase' ) ), array( 'si-phone-phone-vibrating' => __( 'Phone vibrating', 'covercase' ) ), array( 'si-phone-phone-web' => __( 'Phone web', 'covercase' ) ), array( 'si-phone-record-mic' => __( 'Record mic', 'covercase' ) ), array( 'si-phone-remove-call' => __( 'Remove call', 'covercase' ) ), array( 'si-phone-remove-phone' => __( 'Remove phone', 'covercase' ) ), array( 'si-phone-smartphone' => __( 'Smartphone', 'covercase' ) ), array( 'si-phone-smartphone-2' => __( 'Smartphone 2', 'covercase' ) ), array( 'si-phone-very-low-signal' => __( 'Very low signal', 'covercase' ) ) ), __( 'Photography', 'covercase' ) => array( array( 'si-photography-add-camera' => __( 'Add camera', 'covercase' ) ), array( 'si-photography-all-points' => __( 'All points', 'covercase' ) ), array( 'si-photography-aperture' => __( 'Aperture', 'covercase' ) ), array( 'si-photography-bulb-white-balance' => __( 'Bulb white balance', 'covercase' ) ), array( 'si-photography-camera-auto-focusing' => __( 'Camera auto focusing', 'covercase' ) ), array( 'si-photography-camera-bag' => __( 'Camera bag', 'covercase' ) ), array( 'si-photography-camera-connected' => __( 'Camera connected', 'covercase' ) ), array( 'si-photography-camera-flash' => __( 'Camera flash', 'covercase' ) ), array( 'si-photography-center-weighted-metering' => __( 'Center weighted metering', 'covercase' ) ), array( 'si-photography-delete' => __( 'Delete', 'covercase' ) ), array( 'si-photography-delete-camera' => __( 'Delete camera', 'covercase' ) ), array( 'si-photography-diffuser-umbrella' => __( 'Diffuser umbrella', 'covercase' ) ), array( 'si-photography-digital-camera' => __( 'Digital camera', 'covercase' ) ), array( 'si-photography-digital-camera-2' => __( 'Digital camera 2', 'covercase' ) ), array( 'si-photography-digital-camera-3' => __( 'Digital camera 3', 'covercase' ) ), array( 'si-photography-exposure-2' => __( 'Exposure 2', 'covercase' ) ), array( 'si-photography-exposure-compensation' => __( 'Exposure compensation', 'covercase' ) ), array( 'si-photography-exposure-control' => __( 'Exposure control', 'covercase' ) ), array( 'si-photography-face-detection' => __( 'Face detection', 'covercase' ) ), array( 'si-photography-favorite-camera' => __( 'Favorite camera', 'covercase' ) ), array( 'si-photography-favorite-camera-2' => __( 'Favorite camera 2', 'covercase' ) ), array( 'si-photography-fiew-points' => __( 'Fiew points', 'covercase' ) ), array( 'si-photography-film' => __( 'Film', 'covercase' ) ), array( 'si-photography-flash' => __( 'Flash', 'covercase' ) ), array( 'si-photography-flash-battery' => __( 'Flash battery', 'covercase' ) ), array( 'si-photography-flash-fire' => __( 'Flash fire', 'covercase' ) ), array( 'si-photography-focus-area' => __( 'Focus area', 'covercase' ) ), array( 'si-photography-full-battery' => __( 'Full battery', 'covercase' ) ), array( 'si-photography-image' => __( 'Image', 'covercase' ) ), array( 'si-photography-image-2' => __( 'Image 2', 'covercase' ) ), array( 'si-photography-image-add' => __( 'Image add', 'covercase' ) ), array( 'si-photography-image-confirm' => __( 'Image confirm', 'covercase' ) ), array( 'si-photography-image-copy' => __( 'Image copy', 'covercase' ) ), array( 'si-photography-image-crop' => __( 'Image crop', 'covercase' ) ), array( 'si-photography-image-delete' => __( 'Image delete', 'covercase' ) ), array( 'si-photography-image-element' => __( 'Image element', 'covercase' ) ), array( 'si-photography-image-favorites' => __( 'Image favorites', 'covercase' ) ), array( 'si-photography-image-favorites-2' => __( 'Image favorites 2', 'covercase' ) ), array( 'si-photography-image-files' => __( 'Image files', 'covercase' ) ), array( 'si-photography-image-paste' => __( 'Image paste', 'covercase' ) ), array( 'si-photography-image-remove' => __( 'Image remove', 'covercase' ) ), array( 'si-photography-images' => __( 'Images', 'covercase' ) ), array( 'si-photography-large-aperture' => __( 'Large aperture', 'covercase' ) ), array( 'si-photography-lens' => __( 'Lens', 'covercase' ) ), array( 'si-photography-low-battery' => __( 'Low battery', 'covercase' ) ), array( 'si-photography-matrix-metering' => __( 'Matrix metering', 'covercase' ) ), array( 'si-photography-micro-sd' => __( 'Micro sd', 'covercase' ) ), array( 'si-photography-move-camera' => __( 'Move camera', 'covercase' ) ), array( 'si-photography-move-camera-2' => __( 'Move camera 2', 'covercase' ) ), array( 'si-photography-no-flash' => __( 'No flash', 'covercase' ) ), array( 'si-photography-octagon-softbox' => __( 'Octagon softbox', 'covercase' ) ), array( 'si-photography-old-camera' => __( 'Old camera', 'covercase' ) ), array( 'si-photography-old-camera-2' => __( 'Old camera 2', 'covercase' ) ), array( 'si-photography-old-camera-3' => __( 'Old camera 3', 'covercase' ) ), array( 'si-photography-on-flash' => __( 'On flash', 'covercase' ) ), array( 'si-photography-pictures-2' => __( 'Pictures 2', 'covercase' ) ), array( 'si-photography-place-on-map' => __( 'Place on map', 'covercase' ) ), array( 'si-photography-red-eye' => __( 'Red eye', 'covercase' ) ), array( 'si-photography-remove-camera' => __( 'Remove camera', 'covercase' ) ), array( 'si-photography-retro-camera' => __( 'Retro camera', 'covercase' ) ), array( 'si-photography-rgb' => __( 'Rgb', 'covercase' ) ), array( 'si-photography-rule-of-thirds' => __( 'Rule of thirds', 'covercase' ) ), array( 'si-photography-sd-card' => __( 'Sd card', 'covercase' ) ), array( 'si-photography-self-timer' => __( 'Self timer', 'covercase' ) ), array( 'si-photography-settings' => __( 'Settings', 'covercase' ) ), array( 'si-photography-shade-white-balance' => __( 'Shade white balance', 'covercase' ) ), array( 'si-photography-single-point' => __( 'Single point', 'covercase' ) ), array( 'si-photography-small-aperture' => __( 'Small aperture', 'covercase' ) ), array( 'si-photography-softbox' => __( 'Softbox', 'covercase' ) ), array( 'si-photography-spot-metering' => __( 'Spot metering', 'covercase' ) ), array( 'si-photography-sunlight-white-balance' => __( 'Sunlight white balance', 'covercase' ) ), array( 'si-photography-tripod' => __( 'Tripod', 'covercase' ) ), array( 'si-photography-tripod-2' => __( 'Tripod 2', 'covercase' ) ), array( 'si-photography-waterproof-camera' => __( 'Waterproof camera', 'covercase' ) ), array( 'si-photography-white-balance-point' => __( 'White balance point', 'covercase' ) ), array( 'si-photography-wireless-camera' => __( 'Wireless camera', 'covercase' ) ), array( 'si-photography-wireless-controller' => __( 'Wireless controller', 'covercase' ) ), array( 'si-photography-wireless-controller-2' => __( 'Wireless controller 2', 'covercase' ) ), array( 'si-photography-zoom-in' => __( 'Zoom in', 'covercase' ) ), array( 'si-photography-zoum-out' => __( 'Zoum out', 'covercase' ) ) ), __( 'Science', 'covercase' ) => array( array( 'si-science-education-3d-box' => __( 'Education 3d box', 'covercase' ) ), array( 'si-science-education-astronaut' => __( 'Education astronaut', 'covercase' ) ), array( 'si-science-education-atom' => __( 'Education atom', 'covercase' ) ), array( 'si-science-education-atom-2' => __( 'Education atom 2', 'covercase' ) ), array( 'si-science-education-bio-hazard' => __( 'Education bio hazard', 'covercase' ) ), array( 'si-science-education-biohazard' => __( 'Education biohazard', 'covercase' ) ), array( 'si-science-education-bomb' => __( 'Education bomb', 'covercase' ) ), array( 'si-science-education-bulb' => __( 'Education bulb', 'covercase' ) ), array( 'si-science-education-candle' => __( 'Education candle', 'covercase' ) ), array( 'si-science-education-chemical' => __( 'Education chemical', 'covercase' ) ), array( 'si-science-education-chemical-2' => __( 'Education chemical 2', 'covercase' ) ), array( 'si-science-education-danger' => __( 'Education danger', 'covercase' ) ), array( 'si-science-education-dna' => __( 'Education dna', 'covercase' ) ), array( 'si-science-education-dna-2' => __( 'Education dna 2', 'covercase' ) ), array( 'si-science-education-galaxy' => __( 'Education galaxy', 'covercase' ) ), array( 'si-science-education-injection' => __( 'Education injection', 'covercase' ) ), array( 'si-science-education-laboratory' => __( 'Education laboratory', 'covercase' ) ), array( 'si-science-education-magnets' => __( 'Education magnets', 'covercase' ) ), array( 'si-science-education-medicine' => __( 'Education medicine', 'covercase' ) ), array( 'si-science-education-meteorite' => __( 'Education meteorite', 'covercase' ) ), array( 'si-science-education-microscope' => __( 'Education microscope', 'covercase' ) ), array( 'si-science-education-nanosomes' => __( 'Education nanosomes', 'covercase' ) ), array( 'si-science-education-observatory' => __( 'Education observatory', 'covercase' ) ), array( 'si-science-education-physics' => __( 'Education physics', 'covercase' ) ), array( 'si-science-education-planet-earth' => __( 'Education planet earth', 'covercase' ) ), array( 'si-science-education-planets' => __( 'Education planets', 'covercase' ) ), array( 'si-science-education-robot' => __( 'Education robot', 'covercase' ) ), array( 'si-science-education-satellite' => __( 'Education satellite', 'covercase' ) ), array( 'si-science-education-science-book' => __( 'Education science book', 'covercase' ) ), array( 'si-science-education-signal' => __( 'Education signal', 'covercase' ) ), array( 'si-science-education-space-ship' => __( 'Education space ship', 'covercase' ) ), array( 'si-science-education-space-vehicle' => __( 'Education space vehicle', 'covercase' ) ), array( 'si-science-education-spaceship-2' => __( 'Education spaceship 2', 'covercase' ) ), array( 'si-science-education-stars' => __( 'Education stars', 'covercase' ) ), array( 'si-science-education-synthesis' => __( 'Education synthesis', 'covercase' ) ), array( 'si-science-education-telescope' => __( 'Education telescope', 'covercase' ) ), array( 'si-science-education-temperature' => __( 'Education temperature', 'covercase' ) ), array( 'si-science-education-test-drop' => __( 'Education test drop', 'covercase' ) ), array( 'si-science-education-test-tube' => __( 'Education test tube', 'covercase' ) ), array( 'si-science-education-test-tube-2' => __( 'Education test tube 2', 'covercase' ) ), array( 'si-science-education-time' => __( 'Education time', 'covercase' ) ), array( 'si-science-education-ufo' => __( 'Education ufo', 'covercase' ) ), array( 'si-science-education-ufo-spaceship' => __( 'Education ufo spaceship', 'covercase' ) ), array( 'si-science-education-virus' => __( 'Education virus', 'covercase' ) ), array( 'si-science-education-virus-search' => __( 'Education virus search', 'covercase' ) ) ), __( 'Security', 'covercase' ) => array( array( 'si-security-alarm' => __( 'Alarm', 'covercase' ) ), array( 'si-security-alarm-2' => __( 'Alarm 2', 'covercase' ) ), array( 'si-security-brick-wall' => __( 'Brick wall', 'covercase' ) ), array( 'si-security-bullet' => __( 'Bullet', 'covercase' ) ), array( 'si-security-check-point' => __( 'Check point', 'covercase' ) ), array( 'si-security-door-alarm' => __( 'Door alarm', 'covercase' ) ), array( 'si-security-enter-pin' => __( 'Enter pin', 'covercase' ) ), array( 'si-security-eye' => __( 'Eye', 'covercase' ) ), array( 'si-security-fingerprint' => __( 'Fingerprint', 'covercase' ) ), array( 'si-security-fingerprint-detection' => __( 'Fingerprint detection', 'covercase' ) ), array( 'si-security-fingerprint-symbol' => __( 'Fingerprint symbol', 'covercase' ) ), array( 'si-security-fire-extinguisher' => __( 'Fire extinguisher', 'covercase' ) ), array( 'si-security-handcuffs' => __( 'Handcuffs', 'covercase' ) ), array( 'si-security-jail' => __( 'Jail', 'covercase' ) ), array( 'si-security-keyhole' => __( 'Keyhole', 'covercase' ) ), array( 'si-security-keylock' => __( 'Keylock', 'covercase' ) ), array( 'si-security-lock-unlock' => __( 'Lock unlock', 'covercase' ) ), array( 'si-security-lockpad' => __( 'Lockpad', 'covercase' ) ), array( 'si-security-lockpad-2' => __( 'Lockpad 2', 'covercase' ) ), array( 'si-security-lockpad-3' => __( 'Lockpad 3', 'covercase' ) ), array( 'si-security-money-box' => __( 'Money box', 'covercase' ) ), array( 'si-security-password' => __( 'Password', 'covercase' ) ), array( 'si-security-pin' => __( 'Pin', 'covercase' ) ), array( 'si-security-safe-shield' => __( 'Safe shield', 'covercase' ) ), array( 'si-security-safe-shield-2' => __( 'Safe shield 2', 'covercase' ) ), array( 'si-security-safe-shield-3' => __( 'Safe shield 3', 'covercase' ) ), array( 'si-security-safe-shield-4' => __( 'Safe shield 4', 'covercase' ) ), array( 'si-security-safe-shield-5' => __( 'Safe shield 5', 'covercase' ) ), array( 'si-security-safe-shield-6' => __( 'Safe shield 6', 'covercase' ) ), array( 'si-security-safe-shield-confirm' => __( 'Safe shield confirm', 'covercase' ) ), array( 'si-security-safe-shield-danger' => __( 'Safe shield danger', 'covercase' ) ), array( 'si-security-safe-tower' => __( 'Safe tower', 'covercase' ) ), array( 'si-security-security-camera' => __( 'Security camera', 'covercase' ) ), array( 'si-security-security-camera-2' => __( 'Security camera 2', 'covercase' ) ), array( 'si-security-sheriff-medal' => __( 'Sheriff medal', 'covercase' ) ), array( 'si-security-sirine' => __( 'Sirine', 'covercase' ) ), array( 'si-security-spy-watch' => __( 'Spy watch', 'covercase' ) ), array( 'si-security-target' => __( 'Target', 'covercase' ) ), array( 'si-security-target-2' => __( 'Target 2', 'covercase' ) ), array( 'si-security-thief' => __( 'Thief', 'covercase' ) ) ), __( 'Seo', 'covercase' ) => array( array( 'si-seo-add-hyperlink' => __( 'Add hyperlink', 'covercase' ) ), array( 'si-seo-bug' => __( 'Bug', 'covercase' ) ), array( 'si-seo-campaign-research' => __( 'Campaign research', 'covercase' ) ), array( 'si-seo-check' => __( 'Check', 'covercase' ) ), array( 'si-seo-check-list' => __( 'Check list', 'covercase' ) ), array( 'si-seo-click-target' => __( 'Click target', 'covercase' ) ), array( 'si-seo-cloud' => __( 'Cloud', 'covercase' ) ), array( 'si-seo-cloud-links' => __( 'Cloud links', 'covercase' ) ), array( 'si-seo-cloud-stats' => __( 'Cloud stats', 'covercase' ) ), array( 'si-seo-computer-stats' => __( 'Computer stats', 'covercase' ) ), array( 'si-seo-cup' => __( 'Cup', 'covercase' ) ), array( 'si-seo-delete-hyperlink' => __( 'Delete hyperlink', 'covercase' ) ), array( 'si-seo-email-marketing' => __( 'Email marketing', 'covercase' ) ), array( 'si-seo-favorite-stats' => __( 'Favorite stats', 'covercase' ) ), array( 'si-seo-high-rankings' => __( 'High rankings', 'covercase' ) ), array( 'si-seo-hyperlink' => __( 'Hyperlink', 'covercase' ) ), array( 'si-seo-keyword-search' => __( 'Keyword search', 'covercase' ) ), array( 'si-seo-keyword-search-2' => __( 'Keyword search 2', 'covercase' ) ), array( 'si-seo-magic-trick' => __( 'Magic trick', 'covercase' ) ), array( 'si-seo-medal' => __( 'Medal', 'covercase' ) ), array( 'si-seo-niche' => __( 'Niche', 'covercase' ) ), array( 'si-seo-page-search' => __( 'Page search', 'covercase' ) ), array( 'si-seo-page-settings' => __( 'Page settings', 'covercase' ) ), array( 'si-seo-pie-chart' => __( 'Pie chart', 'covercase' ) ), array( 'si-seo-pie-charts-3' => __( 'Pie charts 3', 'covercase' ) ), array( 'si-seo-puzzle' => __( 'Puzzle', 'covercase' ) ), array( 'si-seo-pyramid-rankings' => __( 'Pyramid rankings', 'covercase' ) ), array( 'si-seo-rank-1' => __( 'Rank 1', 'covercase' ) ), array( 'si-seo-remove-hyperlink' => __( 'Remove hyperlink', 'covercase' ) ), array( 'si-seo-search' => __( 'Search', 'covercase' ) ), array( 'si-seo-search-completed' => __( 'Search completed', 'covercase' ) ), array( 'si-seo-search-spy' => __( 'Search spy', 'covercase' ) ), array( 'si-seo-servers' => __( 'Servers', 'covercase' ) ), array( 'si-seo-settings' => __( 'Settings', 'covercase' ) ), array( 'si-seo-share' => __( 'Share', 'covercase' ) ), array( 'si-seo-statistics-2' => __( 'Statistics 2', 'covercase' ) ), array( 'si-seo-statistics-3' => __( 'Statistics 3', 'covercase' ) ), array( 'si-seo-stats' => __( 'Stats', 'covercase' ) ), array( 'si-seo-support' => __( 'Support', 'covercase' ) ), array( 'si-seo-tags' => __( 'Tags', 'covercase' ) ), array( 'si-seo-target' => __( 'Target', 'covercase' ) ), array( 'si-seo-target-money' => __( 'Target money', 'covercase' ) ), array( 'si-seo-target-money-campaign' => __( 'Target money campaign', 'covercase' ) ), array( 'si-seo-top-rankings' => __( 'Top rankings', 'covercase' ) ), array( 'si-seo-web-multimedia' => __( 'Web multimedia', 'covercase' ) ), array( 'si-seo-web-optimization' => __( 'Web optimization', 'covercase' ) ), array( 'si-seo-web-page-settings' => __( 'Web page settings', 'covercase' ) ), array( 'si-seo-web-settings' => __( 'Web settings', 'covercase' ) ), array( 'si-seo-website-code' => __( 'Website code', 'covercase' ) ), array( 'si-seo-xls-extract' => __( 'Xls extract', 'covercase' ) ) ), __( 'Separators', 'covercase' ) => array( array( 'si-separators-wave-h' => __( 'Wave horizontal', 'covercase' ) ), array( 'si-separators-wave-v' => __( 'Wave vertical', 'covercase' ) ), array( 'si-separators-zigzag-h' => __( 'Zigzag horizontal', 'covercase' ) ), array( 'si-separators-zigzag-v' => __( 'Zigzag vertical', 'covercase' ) ) ), __( 'Service', 'covercase' ) => array( array( 'si-service-abs' => __( 'Abs', 'covercase' ) ), array( 'si-service-add-engine-oil' => __( 'Add engine oil', 'covercase' ) ), array( 'si-service-battery' => __( 'Battery', 'covercase' ) ), array( 'si-service-brakes' => __( 'Brakes', 'covercase' ) ), array( 'si-service-broken-engine' => __( 'Broken engine', 'covercase' ) ), array( 'si-service-broken-engine-2' => __( 'Broken engine 2', 'covercase' ) ), array( 'si-service-car-pedals' => __( 'Car pedals', 'covercase' ) ), array( 'si-service-check-engine' => __( 'Check engine', 'covercase' ) ), array( 'si-service-clean-window' => __( 'Clean window', 'covercase' ) ), array( 'si-service-cooling-fan' => __( 'Cooling fan', 'covercase' ) ), array( 'si-service-engine' => __( 'Engine', 'covercase' ) ), array( 'si-service-engine-gears' => __( 'Engine gears', 'covercase' ) ), array( 'si-service-engine-oil' => __( 'Engine oil', 'covercase' ) ), array( 'si-service-engine-pistons' => __( 'Engine pistons', 'covercase' ) ), array( 'si-service-engine-service' => __( 'Engine service', 'covercase' ) ), array( 'si-service-engine-warning' => __( 'Engine warning', 'covercase' ) ), array( 'si-service-eps' => __( 'Eps', 'covercase' ) ), array( 'si-service-flash-lights' => __( 'Flash lights', 'covercase' ) ), array( 'si-service-front-cracked-glass' => __( 'Front cracked glass', 'covercase' ) ), array( 'si-service-front-glass' => __( 'Front glass', 'covercase' ) ), array( 'si-service-fuel-small-tank' => __( 'Fuel small tank', 'covercase' ) ), array( 'si-service-gear' => __( 'Gear', 'covercase' ) ), array( 'si-service-gear-2' => __( 'Gear 2', 'covercase' ) ), array( 'si-service-gear-3' => __( 'Gear 3', 'covercase' ) ), array( 'si-service-gear-4' => __( 'Gear 4', 'covercase' ) ), array( 'si-service-gear-5' => __( 'Gear 5', 'covercase' ) ), array( 'si-service-gears' => __( 'Gears', 'covercase' ) ), array( 'si-service-gears-2' => __( 'Gears 2', 'covercase' ) ), array( 'si-service-heat-engine' => __( 'Heat engine', 'covercase' ) ), array( 'si-service-light-bulb-on' => __( 'Light bulb on', 'covercase' ) ), array( 'si-service-lights-off' => __( 'Lights off', 'covercase' ) ), array( 'si-service-lights-on' => __( 'Lights on', 'covercase' ) ), array( 'si-service-oil-engine' => __( 'Oil engine', 'covercase' ) ), array( 'si-service-open-doors' => __( 'Open doors', 'covercase' ) ), array( 'si-service-parking-brake' => __( 'Parking brake', 'covercase' ) ), array( 'si-service-parking-on' => __( 'Parking on', 'covercase' ) ), array( 'si-service-piston-engine' => __( 'Piston engine', 'covercase' ) ), array( 'si-service-power-engine' => __( 'Power engine', 'covercase' ) ), array( 'si-service-power-engine-2' => __( 'Power engine 2', 'covercase' ) ), array( 'si-service-side-window' => __( 'Side window', 'covercase' ) ), array( 'si-service-side-window-close' => __( 'Side window close', 'covercase' ) ), array( 'si-service-side-window-open' => __( 'Side window open', 'covercase' ) ), array( 'si-service-steering-wheel' => __( 'Steering wheel', 'covercase' ) ), array( 'si-service-temperature' => __( 'Temperature', 'covercase' ) ), array( 'si-service-transmission' => __( 'Transmission', 'covercase' ) ), array( 'si-service-transmission-2' => __( 'Transmission 2', 'covercase' ) ), array( 'si-service-turbo' => __( 'Turbo', 'covercase' ) ), array( 'si-service-warning-triangle' => __( 'Warning triangle', 'covercase' ) ), array( 'si-service-wheel' => __( 'Wheel', 'covercase' ) ), array( 'si-service-window-hot-air' => __( 'Window hot air', 'covercase' ) ) ), __( 'Space', 'covercase' ) => array( array( 'si-space-astronaut-helmet' => __( 'Astronaut helmet', 'covercase' ) ), array( 'si-space-astronaut-suit' => __( 'Astronaut suit', 'covercase' ) ), array( 'si-space-big-bang' => __( 'Big bang', 'covercase' ) ), array( 'si-space-black-hole' => __( 'Black hole', 'covercase' ) ), array( 'si-space-falling-star' => __( 'Falling star', 'covercase' ) ), array( 'si-space-galaxy' => __( 'Galaxy', 'covercase' ) ), array( 'si-space-meteor-crash' => __( 'Meteor crash', 'covercase' ) ), array( 'si-space-meteorite' => __( 'Meteorite', 'covercase' ) ), array( 'si-space-milky-way' => __( 'Milky way', 'covercase' ) ), array( 'si-space-moon' => __( 'Moon', 'covercase' ) ), array( 'si-space-moon-landing' => __( 'Moon landing', 'covercase' ) ), array( 'si-space-observatory' => __( 'Observatory', 'covercase' ) ), array( 'si-space-observatory-2' => __( 'Observatory 2', 'covercase' ) ), array( 'si-space-planet' => __( 'Planet', 'covercase' ) ), array( 'si-space-planet-2' => __( 'Planet 2', 'covercase' ) ), array( 'si-space-planet-stars' => __( 'Planet stars', 'covercase' ) ), array( 'si-space-satellite' => __( 'Satellite', 'covercase' ) ), array( 'si-space-satellite-dish' => __( 'Satellite dish', 'covercase' ) ), array( 'si-space-space-capsule' => __( 'Space capsule', 'covercase' ) ), array( 'si-space-space-robot' => __( 'Space robot', 'covercase' ) ), array( 'si-space-space-vehicle' => __( 'Space vehicle', 'covercase' ) ), array( 'si-space-spaceship' => __( 'Spaceship', 'covercase' ) ), array( 'si-space-spaceship-2' => __( 'Spaceship 2', 'covercase' ) ), array( 'si-space-stars' => __( 'Stars', 'covercase' ) ), array( 'si-space-telescope' => __( 'Telescope', 'covercase' ) ), array( 'si-space-ufo-face' => __( 'Ufo face', 'covercase' ) ), array( 'si-space-ufo-spaceship' => __( 'Ufo spaceship', 'covercase' ) ), array( 'si-space-ufo-spaceship-2' => __( 'Ufo spaceship 2', 'covercase' ) ), array( 'si-space-ufo-takeoff' => __( 'Ufo takeoff', 'covercase' ) ), array( 'si-space-universe' => __( 'Universe', 'covercase' ) ) ), __( 'Sport', 'covercase' ) => array( array( 'si-sport-aerobic-trimmer' => __( 'Aerobic trimmer', 'covercase' ) ), array( 'si-sport-badminton' => __( 'Badminton', 'covercase' ) ), array( 'si-sport-ball' => __( 'Ball', 'covercase' ) ), array( 'si-sport-baseball' => __( 'Baseball', 'covercase' ) ), array( 'si-sport-baseball-2' => __( 'Baseball 2', 'covercase' ) ), array( 'si-sport-baseball-arena' => __( 'Baseball arena', 'covercase' ) ), array( 'si-sport-basketball' => __( 'Basketball', 'covercase' ) ), array( 'si-sport-basketball-arena' => __( 'Basketball arena', 'covercase' ) ), array( 'si-sport-basketball-cup' => __( 'Basketball cup', 'covercase' ) ), array( 'si-sport-basketball-table' => __( 'Basketball table', 'covercase' ) ), array( 'si-sport-beach-volley' => __( 'Beach volley', 'covercase' ) ), array( 'si-sport-billiard' => __( 'Billiard', 'covercase' ) ), array( 'si-sport-billiard-2' => __( 'Billiard 2', 'covercase' ) ), array( 'si-sport-billiard-8-ball' => __( 'Billiard 8 ball', 'covercase' ) ), array( 'si-sport-billiard-balls' => __( 'Billiard balls', 'covercase' ) ), array( 'si-sport-billiard-table' => __( 'Billiard table', 'covercase' ) ), array( 'si-sport-bowling' => __( 'Bowling', 'covercase' ) ), array( 'si-sport-bowling-2' => __( 'Bowling 2', 'covercase' ) ), array( 'si-sport-bowling-3' => __( 'Bowling 3', 'covercase' ) ), array( 'si-sport-box-glove' => __( 'Box glove', 'covercase' ) ), array( 'si-sport-casino-tip' => __( 'Casino tip', 'covercase' ) ), array( 'si-sport-casino-tips' => __( 'Casino tips', 'covercase' ) ), array( 'si-sport-chess' => __( 'Chess', 'covercase' ) ), array( 'si-sport-chess-bishop' => __( 'Chess bishop', 'covercase' ) ), array( 'si-sport-chess-king' => __( 'Chess king', 'covercase' ) ), array( 'si-sport-chess-knight' => __( 'Chess knight', 'covercase' ) ), array( 'si-sport-chess-pawn' => __( 'Chess pawn', 'covercase' ) ), array( 'si-sport-chess-queen' => __( 'Chess queen', 'covercase' ) ), array( 'si-sport-chess-table' => __( 'Chess table', 'covercase' ) ), array( 'si-sport-clocks-2' => __( 'Clocks 2', 'covercase' ) ), array( 'si-sport-cup' => __( 'Cup', 'covercase' ) ), array( 'si-sport-cup-2' => __( 'Cup 2', 'covercase' ) ), array( 'si-sport-cup-3' => __( 'Cup 3', 'covercase' ) ), array( 'si-sport-cup-4' => __( 'Cup 4', 'covercase' ) ), array( 'si-sport-dice' => __( 'Dice', 'covercase' ) ), array( 'si-sport-dice-2' => __( 'Dice 2', 'covercase' ) ), array( 'si-sport-fencing' => __( 'Fencing', 'covercase' ) ), array( 'si-sport-first-place' => __( 'First place', 'covercase' ) ), array( 'si-sport-flag' => __( 'Flag', 'covercase' ) ), array( 'si-sport-flag-2' => __( 'Flag 2', 'covercase' ) ), array( 'si-sport-flag-3' => __( 'Flag 3', 'covercase' ) ), array( 'si-sport-football-arena' => __( 'Football arena', 'covercase' ) ), array( 'si-sport-football-ball' => __( 'Football ball', 'covercase' ) ), array( 'si-sport-football-goalpost' => __( 'Football goalpost', 'covercase' ) ), array( 'si-sport-golf-2' => __( 'Golf 2', 'covercase' ) ), array( 'si-sport-golf-4' => __( 'Golf 4', 'covercase' ) ), array( 'si-sport-golf-ball' => __( 'Golf ball', 'covercase' ) ), array( 'si-sport-golf-ball-3' => __( 'Golf ball 3', 'covercase' ) ), array( 'si-sport-hockey' => __( 'Hockey', 'covercase' ) ), array( 'si-sport-hockey-ball' => __( 'Hockey ball', 'covercase' ) ), array( 'si-sport-hockey-sticks' => __( 'Hockey sticks', 'covercase' ) ), array( 'si-sport-king' => __( 'King', 'covercase' ) ), array( 'si-sport-medal' => __( 'Medal', 'covercase' ) ), array( 'si-sport-medal-2' => __( 'Medal 2', 'covercase' ) ), array( 'si-sport-medal-3' => __( 'Medal 3', 'covercase' ) ), array( 'si-sport-medal-4' => __( 'Medal 4', 'covercase' ) ), array( 'si-sport-medal-5' => __( 'Medal 5', 'covercase' ) ), array( 'si-sport-medal-6' => __( 'Medal 6', 'covercase' ) ), array( 'si-sport-medal-7' => __( 'Medal 7', 'covercase' ) ), array( 'si-sport-medal-8' => __( 'Medal 8', 'covercase' ) ), array( 'si-sport-medal-first-place' => __( 'Medal first place', 'covercase' ) ), array( 'si-sport-medal-second-place' => __( 'Medal second place', 'covercase' ) ), array( 'si-sport-medal-third-place' => __( 'Medal third place', 'covercase' ) ), array( 'si-sport-ping-pong' => __( 'Ping pong', 'covercase' ) ), array( 'si-sport-podium' => __( 'Podium', 'covercase' ) ), array( 'si-sport-poker-card-1' => __( 'Poker card 1', 'covercase' ) ), array( 'si-sport-poker-card-2' => __( 'Poker card 2', 'covercase' ) ), array( 'si-sport-praise-card' => __( 'Praise card', 'covercase' ) ), array( 'si-sport-roulette-wheel' => __( 'Roulette wheel', 'covercase' ) ), array( 'si-sport-rugby' => __( 'Rugby', 'covercase' ) ), array( 'si-sport-score-table' => __( 'Score table', 'covercase' ) ), array( 'si-sport-score-table-2' => __( 'Score table 2', 'covercase' ) ), array( 'si-sport-sharpshooting' => __( 'Sharpshooting', 'covercase' ) ), array( 'si-sport-skateboard' => __( 'Skateboard', 'covercase' ) ), array( 'si-sport-swimming' => __( 'Swimming', 'covercase' ) ), array( 'si-sport-target-3' => __( 'Target 3', 'covercase' ) ), array( 'si-sport-tennis-2' => __( 'Tennis 2', 'covercase' ) ), array( 'si-sport-tennis-3' => __( 'Tennis 3', 'covercase' ) ), array( 'si-sport-tennis-arena' => __( 'Tennis arena', 'covercase' ) ), array( 'si-sport-tennis-ball' => __( 'Tennis ball', 'covercase' ) ), array( 'si-sport-tennis-ball-2' => __( 'Tennis ball 2', 'covercase' ) ), array( 'si-sport-ticket' => __( 'Ticket', 'covercase' ) ), array( 'si-sport-volleyball' => __( 'Volleyball', 'covercase' ) ), array( 'si-sport-weight-lifting' => __( 'Weight lifting', 'covercase' ) ), array( 'si-sport-whistle' => __( 'Whistle', 'covercase' ) ) ), __( 'Transport', 'covercase' ) => array( array( 'si-transport-airplane' => __( 'Airplane', 'covercase' ) ), array( 'si-transport-airplane-1' => __( 'Airplane 1', 'covercase' ) ), array( 'si-transport-airplane-2' => __( 'Airplane 2', 'covercase' ) ), array( 'si-transport-airplane-3' => __( 'Airplane 3', 'covercase' ) ), array( 'si-transport-bicycle' => __( 'Bicycle', 'covercase' ) ), array( 'si-transport-bike' => __( 'Bike', 'covercase' ) ), array( 'si-transport-bus' => __( 'Bus', 'covercase' ) ), array( 'si-transport-car-1' => __( 'Car 1', 'covercase' ) ), array( 'si-transport-car-2' => __( 'Car 2', 'covercase' ) ), array( 'si-transport-cargo-ship' => __( 'Cargo ship', 'covercase' ) ), array( 'si-transport-city-train' => __( 'City train', 'covercase' ) ), array( 'si-transport-different-ways' => __( 'Different ways', 'covercase' ) ), array( 'si-transport-electric-bike' => __( 'Electric bike', 'covercase' ) ), array( 'si-transport-empty-gas-gauge' => __( 'Empty gas gauge', 'covercase' ) ), array( 'si-transport-gas-gauge' => __( 'Gas gauge', 'covercase' ) ), array( 'si-transport-gas-pump' => __( 'Gas pump', 'covercase' ) ), array( 'si-transport-gas-pump-2' => __( 'Gas pump 2', 'covercase' ) ), array( 'si-transport-gauge' => __( 'Gauge', 'covercase' ) ), array( 'si-transport-helicopter' => __( 'Helicopter', 'covercase' ) ), array( 'si-transport-hot-air-balloon' => __( 'Hot air balloon', 'covercase' ) ), array( 'si-transport-hot-air-balloon-1' => __( 'Hot air balloon 1', 'covercase' ) ), array( 'si-transport-intersection' => __( 'Intersection', 'covercase' ) ), array( 'si-transport-learn-driving' => __( 'Learn driving', 'covercase' ) ), array( 'si-transport-military-suv' => __( 'Military suv', 'covercase' ) ), array( 'si-transport-military-truck' => __( 'Military truck', 'covercase' ) ), array( 'si-transport-old-plane' => __( 'Old plane', 'covercase' ) ), array( 'si-transport-road' => __( 'Road', 'covercase' ) ), array( 'si-transport-ship' => __( 'Ship', 'covercase' ) ), array( 'si-transport-small-bike' => __( 'Small bike', 'covercase' ) ), array( 'si-transport-steering-wheel' => __( 'Steering wheel', 'covercase' ) ), array( 'si-transport-suv' => __( 'Suv', 'covercase' ) ), array( 'si-transport-tractor' => __( 'Tractor', 'covercase' ) ), array( 'si-transport-traffic-light' => __( 'Traffic light', 'covercase' ) ), array( 'si-transport-traffic-light-1' => __( 'Traffic light 1', 'covercase' ) ), array( 'si-transport-traffic-light-2' => __( 'Traffic light 2', 'covercase' ) ), array( 'si-transport-trailer' => __( 'Trailer', 'covercase' ) ), array( 'si-transport-train' => __( 'Train', 'covercase' ) ), array( 'si-transport-truck' => __( 'Truck', 'covercase' ) ), array( 'si-transport-truck-1' => __( 'Truck 1', 'covercase' ) ), array( 'si-transport-truck-2' => __( 'Truck 2', 'covercase' ) ) ), __( 'Traveling', 'covercase' ) => array( array( 'si-traveling-airplane' => __( 'Airplane', 'covercase' ) ), array( 'si-traveling-anchor' => __( 'Anchor', 'covercase' ) ), array( 'si-traveling-ancient-column' => __( 'Ancient column', 'covercase' ) ), array( 'si-traveling-bed' => __( 'Bed', 'covercase' ) ), array( 'si-traveling-binoculars' => __( 'Binoculars', 'covercase' ) ), array( 'si-traveling-boat' => __( 'Boat', 'covercase' ) ), array( 'si-traveling-camcorder' => __( 'Camcorder', 'covercase' ) ), array( 'si-traveling-cigarette' => __( 'Cigarette', 'covercase' ) ), array( 'si-traveling-cigarette-2' => __( 'Cigarette 2', 'covercase' ) ), array( 'si-traveling-clothes-hanger-1' => __( 'Clothes hanger 1', 'covercase' ) ), array( 'si-traveling-clothes-hanger-2' => __( 'Clothes hanger 2', 'covercase' ) ), array( 'si-traveling-compass' => __( 'Compass', 'covercase' ) ), array( 'si-traveling-credit-card' => __( 'Credit card', 'covercase' ) ), array( 'si-traveling-credit-card-2' => __( 'Credit card 2', 'covercase' ) ), array( 'si-traveling-credit-cards' => __( 'Credit cards', 'covercase' ) ), array( 'si-traveling-digital-camera' => __( 'Digital camera', 'covercase' ) ), array( 'si-traveling-door-hanger' => __( 'Door hanger', 'covercase' ) ), array( 'si-traveling-door-hanger-2' => __( 'Door hanger 2', 'covercase' ) ), array( 'si-traveling-door-hanger-3' => __( 'Door hanger 3', 'covercase' ) ), array( 'si-traveling-earth' => __( 'Earth', 'covercase' ) ), array( 'si-traveling-earth-2' => __( 'Earth 2', 'covercase' ) ), array( 'si-traveling-fish' => __( 'Fish', 'covercase' ) ), array( 'si-traveling-flag' => __( 'Flag', 'covercase' ) ), array( 'si-traveling-hot-air-balloon' => __( 'Hot air balloon', 'covercase' ) ), array( 'si-traveling-hotel' => __( 'Hotel', 'covercase' ) ), array( 'si-traveling-ice-cream' => __( 'Ice cream', 'covercase' ) ), array( 'si-traveling-id-card' => __( 'Id card', 'covercase' ) ), array( 'si-traveling-lighthouse' => __( 'Lighthouse', 'covercase' ) ), array( 'si-traveling-map' => __( 'Map', 'covercase' ) ), array( 'si-traveling-map-route' => __( 'Map route', 'covercase' ) ), array( 'si-traveling-mountains' => __( 'Mountains', 'covercase' ) ), array( 'si-traveling-passport' => __( 'Passport', 'covercase' ) ), array( 'si-traveling-passport-2' => __( 'Passport 2', 'covercase' ) ), array( 'si-traveling-pin' => __( 'Pin', 'covercase' ) ), array( 'si-traveling-pin-2' => __( 'Pin 2', 'covercase' ) ), array( 'si-traveling-pin-3' => __( 'Pin 3', 'covercase' ) ), array( 'si-traveling-pin-4' => __( 'Pin 4', 'covercase' ) ), array( 'si-traveling-pin-5' => __( 'Pin 5', 'covercase' ) ), array( 'si-traveling-pin-6' => __( 'Pin 6', 'covercase' ) ), array( 'si-traveling-pin-7' => __( 'Pin 7', 'covercase' ) ), array( 'si-traveling-pin-8' => __( 'Pin 8', 'covercase' ) ), array( 'si-traveling-pin-9' => __( 'Pin 9', 'covercase' ) ), array( 'si-traveling-pin-10' => __( 'Pin 10', 'covercase' ) ), array( 'si-traveling-pin-11' => __( 'Pin 11', 'covercase' ) ), array( 'si-traveling-pin-on-map' => __( 'Pin on map', 'covercase' ) ), array( 'si-traveling-place-on-map' => __( 'Place on map', 'covercase' ) ), array( 'si-traveling-road-sign' => __( 'Road sign', 'covercase' ) ), array( 'si-traveling-route-signs' => __( 'Route signs', 'covercase' ) ), array( 'si-traveling-sea-ball' => __( 'Sea ball', 'covercase' ) ), array( 'si-traveling-shipweel' => __( 'Shipweel', 'covercase' ) ), array( 'si-traveling-shower' => __( 'Shower', 'covercase' ) ), array( 'si-traveling-ski-lift' => __( 'Ski lift', 'covercase' ) ), array( 'si-traveling-slippers' => __( 'Slippers', 'covercase' ) ), array( 'si-traveling-sun' => __( 'Sun', 'covercase' ) ), array( 'si-traveling-sun-2' => __( 'Sun 2', 'covercase' ) ), array( 'si-traveling-sun-umbrella-2' => __( 'Sun umbrella 2', 'covercase' ) ), array( 'si-traveling-sun-umbrella-3' => __( 'Sun umbrella 3', 'covercase' ) ), array( 'si-traveling-sunglasses' => __( 'Sunglasses', 'covercase' ) ), array( 'si-traveling-swimming-pool' => __( 'Swimming pool', 'covercase' ) ), array( 'si-traveling-tent' => __( 'Tent', 'covercase' ) ), array( 'si-traveling-ticket' => __( 'Ticket', 'covercase' ) ), array( 'si-traveling-tickets' => __( 'Tickets', 'covercase' ) ), array( 'si-traveling-travel-bag' => __( 'Travel bag', 'covercase' ) ), array( 'si-traveling-travel-bag-2' => __( 'Travel bag 2', 'covercase' ) ), array( 'si-traveling-underwater-goggles' => __( 'Underwater goggles', 'covercase' ) ) ), __( 'User Interface', 'covercase' ) => array( array( 'si-user-interface-app-tabs' => __( 'Interface app tabs', 'covercase' ) ), array( 'si-user-interface-app-tabs-add' => __( 'Interface app tabs add', 'covercase' ) ), array( 'si-user-interface-app-tabs-remove' => __( 'Interface app tabs remove', 'covercase' ) ), array( 'si-user-interface-check-list' => __( 'Interface check list', 'covercase' ) ), array( 'si-user-interface-check-success-confirm' => __( 'Interface check success confirm', 'covercase' ) ), array( 'si-user-interface-checklist-writing' => __( 'Interface checklist writing', 'covercase' ) ), array( 'si-user-interface-delete-bin-trash' => __( 'Interface delete bin trash', 'covercase' ) ), array( 'si-user-interface-download-web-button' => __( 'Interface download web button', 'covercase' ) ), array( 'si-user-interface-edit-user-profile' => __( 'Interface edit user profile', 'covercase' ) ), array( 'si-user-interface-home-menu' => __( 'Interface home menu', 'covercase' ) ), array( 'si-user-interface-option-settings' => __( 'Interface option settings', 'covercase' ) ), array( 'si-user-interface-puzzle-piece' => __( 'Interface puzzle piece', 'covercase' ) ), array( 'si-user-interface-upload-web-button' => __( 'Interface upload web button', 'covercase' ) ), array( 'si-user-interface-user' => __( 'Interface user', 'covercase' ) ), array( 'si-user-interface-user-2' => __( 'Interface user 2', 'covercase' ) ), array( 'si-user-interface-user-3' => __( 'Interface user 3', 'covercase' ) ), array( 'si-user-interface-user-add' => __( 'Interface user add', 'covercase' ) ), array( 'si-user-interface-user-add-3' => __( 'Interface user add 3', 'covercase' ) ), array( 'si-user-interface-user-button' => __( 'Interface user button', 'covercase' ) ), array( 'si-user-interface-user-delete' => __( 'Interface user delete', 'covercase' ) ), array( 'si-user-interface-user-delete-3' => __( 'Interface user delete 3', 'covercase' ) ), array( 'si-user-interface-user-profile' => __( 'Interface user profile', 'covercase' ) ), array( 'si-user-interface-user-remove' => __( 'Interface user remove', 'covercase' ) ), array( 'si-user-interface-user-remove-3' => __( 'Interface user remove 3', 'covercase' ) ), array( 'si-user-interface-users' => __( 'Interface users', 'covercase' ) ), array( 'si-user-interface-vertical-pin' => __( 'Interface vertical pin', 'covercase' ) ), array( 'si-user-interface-web-code' => __( 'Interface web code', 'covercase' ) ), array( 'si-user-interface-web-layout' => __( 'Interface web layout', 'covercase' ) ), array( 'si-user-interface-wifi-network' => __( 'Interface wifi network', 'covercase' ) ), array( 'si-user-interface-wifi-network-data' => __( 'Interface wifi network data', 'covercase' ) ) ), __( 'Vegetables', 'covercase' ) => array( array( 'si-vegetables-fruits-apple' => __( 'Fruits apple', 'covercase' ) ), array( 'si-vegetables-fruits-apple-2' => __( 'Fruits apple 2', 'covercase' ) ), array( 'si-vegetables-fruits-avocado' => __( 'Fruits avocado', 'covercase' ) ), array( 'si-vegetables-fruits-banana' => __( 'Fruits banana', 'covercase' ) ), array( 'si-vegetables-fruits-basilico' => __( 'Fruits basilico', 'covercase' ) ), array( 'si-vegetables-fruits-cabbage' => __( 'Fruits cabbage', 'covercase' ) ), array( 'si-vegetables-fruits-carrot' => __( 'Fruits carrot', 'covercase' ) ), array( 'si-vegetables-fruits-cherries' => __( 'Fruits cherries', 'covercase' ) ), array( 'si-vegetables-fruits-chestnuts' => __( 'Fruits chestnuts', 'covercase' ) ), array( 'si-vegetables-fruits-chilli-pepper' => __( 'Fruits chilli pepper', 'covercase' ) ), array( 'si-vegetables-fruits-corn' => __( 'Fruits corn', 'covercase' ) ), array( 'si-vegetables-fruits-eggplant' => __( 'Fruits eggplant', 'covercase' ) ), array( 'si-vegetables-fruits-garlic' => __( 'Fruits garlic', 'covercase' ) ), array( 'si-vegetables-fruits-grapes' => __( 'Fruits grapes', 'covercase' ) ), array( 'si-vegetables-fruits-hazelnut' => __( 'Fruits hazelnut', 'covercase' ) ), array( 'si-vegetables-fruits-lemon' => __( 'Fruits lemon', 'covercase' ) ), array( 'si-vegetables-fruits-lemon-2' => __( 'Fruits lemon 2', 'covercase' ) ), array( 'si-vegetables-fruits-lettuce' => __( 'Fruits lettuce', 'covercase' ) ), array( 'si-vegetables-fruits-onion' => __( 'Fruits onion', 'covercase' ) ), array( 'si-vegetables-fruits-onions' => __( 'Fruits onions', 'covercase' ) ), array( 'si-vegetables-fruits-peach' => __( 'Fruits peach', 'covercase' ) ), array( 'si-vegetables-fruits-pear' => __( 'Fruits pear', 'covercase' ) ), array( 'si-vegetables-fruits-pear-2' => __( 'Fruits pear 2', 'covercase' ) ), array( 'si-vegetables-fruits-peas' => __( 'Fruits peas', 'covercase' ) ), array( 'si-vegetables-fruits-pepper' => __( 'Fruits pepper', 'covercase' ) ), array( 'si-vegetables-fruits-pineapple' => __( 'Fruits pineapple', 'covercase' ) ), array( 'si-vegetables-fruits-plum' => __( 'Fruits plum', 'covercase' ) ), array( 'si-vegetables-fruits-pomegrade' => __( 'Fruits pomegrade', 'covercase' ) ), array( 'si-vegetables-fruits-potato' => __( 'Fruits potato', 'covercase' ) ), array( 'si-vegetables-fruits-radish' => __( 'Fruits radish', 'covercase' ) ), array( 'si-vegetables-fruits-strawberry' => __( 'Fruits strawberry', 'covercase' ) ), array( 'si-vegetables-fruits-tomato' => __( 'Fruits tomato', 'covercase' ) ), array( 'si-vegetables-fruits-watermelon' => __( 'Fruits watermelon', 'covercase' ) ), array( 'si-vegetables-fruits-watermelon-2' => __( 'Fruits watermelon 2', 'covercase' ) ), array( 'si-vegetables-fruits-watermelon-slice' => __( 'Fruits watermelon slice', 'covercase' ) ) ), __( 'Weather', 'covercase' ) => array( array( 'si-weather-celsius-symbol' => __( 'Celsius symbol', 'covercase' ) ), array( 'si-weather-cloud' => __( 'Cloud', 'covercase' ) ), array( 'si-weather-clouds-lightning' => __( 'Clouds lightning', 'covercase' ) ), array( 'si-weather-cloudy' => __( 'Cloudy', 'covercase' ) ), array( 'si-weather-cloudy-lightning' => __( 'Cloudy lightning', 'covercase' ) ), array( 'si-weather-cloudy-rain' => __( 'Cloudy rain', 'covercase' ) ), array( 'si-weather-cloudy-snow-rain' => __( 'Cloudy snow rain', 'covercase' ) ), array( 'si-weather-cloudy-sun' => __( 'Cloudy sun', 'covercase' ) ), array( 'si-weather-east' => __( 'East', 'covercase' ) ), array( 'si-weather-fahrenheit-symbol' => __( 'Fahrenheit symbol', 'covercase' ) ), array( 'si-weather-freezing-temperature' => __( 'Freezing temperature', 'covercase' ) ), array( 'si-weather-half-moon' => __( 'Half moon', 'covercase' ) ), array( 'si-weather-half-moon-rise' => __( 'Half moon rise', 'covercase' ) ), array( 'si-weather-half-moon-set' => __( 'Half moon set', 'covercase' ) ), array( 'si-weather-half-sun' => __( 'Half sun', 'covercase' ) ), array( 'si-weather-hurricane' => __( 'Hurricane', 'covercase' ) ), array( 'si-weather-hurricane-2' => __( 'Hurricane 2', 'covercase' ) ), array( 'si-weather-ice-flake' => __( 'Ice flake', 'covercase' ) ), array( 'si-weather-lake' => __( 'Lake', 'covercase' ) ), array( 'si-weather-lightning' => __( 'Lightning', 'covercase' ) ), array( 'si-weather-moon' => __( 'Moon', 'covercase' ) ), array( 'si-weather-moon-cloud-snow' => __( 'Moon cloud snow', 'covercase' ) ), array( 'si-weather-moon-stars' => __( 'Moon stars', 'covercase' ) ), array( 'si-weather-moonset' => __( 'Moonset', 'covercase' ) ), array( 'si-weather-moonset-2' => __( 'Moonset 2', 'covercase' ) ), array( 'si-weather-night-clouds-moon' => __( 'Night clouds moon', 'covercase' ) ), array( 'si-weather-north' => __( 'North', 'covercase' ) ), array( 'si-weather-northeast' => __( 'Northeast', 'covercase' ) ), array( 'si-weather-northwest' => __( 'Northwest', 'covercase' ) ), array( 'si-weather-partly-suny' => __( 'Partly suny', 'covercase' ) ), array( 'si-weather-planet' => __( 'Planet', 'covercase' ) ), array( 'si-weather-rain' => __( 'Rain', 'covercase' ) ), array( 'si-weather-rain-3' => __( 'Rain 3', 'covercase' ) ), array( 'si-weather-rain-drop' => __( 'Rain drop', 'covercase' ) ), array( 'si-weather-rain-drops' => __( 'Rain drops', 'covercase' ) ), array( 'si-weather-rainbow' => __( 'Rainbow', 'covercase' ) ), array( 'si-weather-rainy-day' => __( 'Rainy day', 'covercase' ) ), array( 'si-weather-rainy-night' => __( 'Rainy night', 'covercase' ) ), array( 'si-weather-sea' => __( 'Sea', 'covercase' ) ), array( 'si-weather-sleeping-moon' => __( 'Sleeping moon', 'covercase' ) ), array( 'si-weather-snow-clouds' => __( 'Snow clouds', 'covercase' ) ), array( 'si-weather-snow-clouds-2' => __( 'Snow clouds 2', 'covercase' ) ), array( 'si-weather-snow-flake' => __( 'Snow flake', 'covercase' ) ), array( 'si-weather-snow-flakes' => __( 'Snow flakes', 'covercase' ) ), array( 'si-weather-snow-water-flakes' => __( 'Snow water flakes', 'covercase' ) ), array( 'si-weather-south' => __( 'South', 'covercase' ) ), array( 'si-weather-southeast' => __( 'Southeast', 'covercase' ) ), array( 'si-weather-southwest' => __( 'Southwest', 'covercase' ) ), array( 'si-weather-sun' => __( 'Sun', 'covercase' ) ), array( 'si-weather-sunny-coulds-snow' => __( 'Sunny coulds snow', 'covercase' ) ), array( 'si-weather-sunrise-3' => __( 'Sunrise 3', 'covercase' ) ), array( 'si-weather-sunrise-4' => __( 'Sunrise 4', 'covercase' ) ), array( 'si-weather-sunset' => __( 'Sunset', 'covercase' ) ), array( 'si-weather-sunset-2' => __( 'Sunset 2', 'covercase' ) ), array( 'si-weather-sunset-3' => __( 'Sunset 3', 'covercase' ) ), array( 'si-weather-sunset-4' => __( 'Sunset 4', 'covercase' ) ), array( 'si-weather-temperature-drop' => __( 'Temperature drop', 'covercase' ) ), array( 'si-weather-temperature-drop-2' => __( 'Temperature drop 2', 'covercase' ) ), array( 'si-weather-temperature-hot' => __( 'Temperature hot', 'covercase' ) ), array( 'si-weather-temperature-increase' => __( 'Temperature increase', 'covercase' ) ), array( 'si-weather-temperature-raising' => __( 'Temperature raising', 'covercase' ) ), array( 'si-weather-thermometer' => __( 'Thermometer', 'covercase' ) ), array( 'si-weather-thermometer-2' => __( 'Thermometer 2', 'covercase' ) ), array( 'si-weather-thermometer-3' => __( 'Thermometer 3', 'covercase' ) ), array( 'si-weather-umbrella' => __( 'Umbrella', 'covercase' ) ), array( 'si-weather-umbrella-rain' => __( 'Umbrella rain', 'covercase' ) ), array( 'si-weather-umbrella-snow' => __( 'Umbrella snow', 'covercase' ) ), array( 'si-weather-west' => __( 'West', 'covercase' ) ), array( 'si-weather-wind' => __( 'Wind', 'covercase' ) ), array( 'si-weather-wind-cloudy' => __( 'Wind cloudy', 'covercase' ) ) ), __( 'Wedding', 'covercase' ) => array( array( 'si-wedding-valentine-balloons' => __( 'Valentine balloons', 'covercase' ) ), array( 'si-wedding-valentine-bible' => __( 'Valentine bible', 'covercase' ) ), array( 'si-wedding-valentine-bow' => __( 'Valentine bow', 'covercase' ) ), array( 'si-wedding-valentine-bride-dress' => __( 'Valentine bride dress', 'covercase' ) ), array( 'si-wedding-valentine-cake' => __( 'Valentine cake', 'covercase' ) ), array( 'si-wedding-valentine-candle' => __( 'Valentine candle', 'covercase' ) ), array( 'si-wedding-valentine-candles' => __( 'Valentine candles', 'covercase' ) ), array( 'si-wedding-valentine-candy' => __( 'Valentine candy', 'covercase' ) ), array( 'si-wedding-valentine-champagne' => __( 'Valentine champagne', 'covercase' ) ), array( 'si-wedding-valentine-chat-love' => __( 'Valentine chat love', 'covercase' ) ), array( 'si-wedding-valentine-church' => __( 'Valentine church', 'covercase' ) ), array( 'si-wedding-valentine-costume' => __( 'Valentine costume', 'covercase' ) ), array( 'si-wedding-valentine-diamond' => __( 'Valentine diamond', 'covercase' ) ), array( 'si-wedding-valentine-diamond-ring' => __( 'Valentine diamond ring', 'covercase' ) ), array( 'si-wedding-valentine-digital-camera' => __( 'Valentine digital camera', 'covercase' ) ), array( 'si-wedding-valentine-female' => __( 'Valentine female', 'covercase' ) ), array( 'si-wedding-valentine-filming' => __( 'Valentine filming', 'covercase' ) ), array( 'si-wedding-valentine-flower' => __( 'Valentine flower', 'covercase' ) ), array( 'si-wedding-valentine-flowers' => __( 'Valentine flowers', 'covercase' ) ), array( 'si-wedding-valentine-heart' => __( 'Valentine heart', 'covercase' ) ), array( 'si-wedding-valentine-heart-lock' => __( 'Valentine heart lock', 'covercase' ) ), array( 'si-wedding-valentine-heart-ring' => __( 'Valentine heart ring', 'covercase' ) ), array( 'si-wedding-valentine-hearts' => __( 'Valentine hearts', 'covercase' ) ), array( 'si-wedding-valentine-hearts-2' => __( 'Valentine hearts 2', 'covercase' ) ), array( 'si-wedding-valentine-hearts-3' => __( 'Valentine hearts 3', 'covercase' ) ), array( 'si-wedding-valentine-hearts-4' => __( 'Valentine hearts 4', 'covercase' ) ), array( 'si-wedding-valentine-i-love-you' => __( 'Valentine i love you', 'covercase' ) ), array( 'si-wedding-valentine-love-birds' => __( 'Valentine love birds', 'covercase' ) ), array( 'si-wedding-valentine-love-bow' => __( 'Valentine love bow', 'covercase' ) ), array( 'si-wedding-valentine-love-cake' => __( 'Valentine love cake', 'covercase' ) ), array( 'si-wedding-valentine-love-coffee' => __( 'Valentine love coffee', 'covercase' ) ), array( 'si-wedding-valentine-love-drinks' => __( 'Valentine love drinks', 'covercase' ) ), array( 'si-wedding-valentine-love-flower' => __( 'Valentine love flower', 'covercase' ) ), array( 'si-wedding-valentine-love-heart' => __( 'Valentine love heart', 'covercase' ) ), array( 'si-wedding-valentine-love-key' => __( 'Valentine love key', 'covercase' ) ), array( 'si-wedding-valentine-love-message' => __( 'Valentine love message', 'covercase' ) ), array( 'si-wedding-valentine-love-message-2' => __( 'Valentine love message 2', 'covercase' ) ), array( 'si-wedding-valentine-love-shopping' => __( 'Valentine love shopping', 'covercase' ) ), array( 'si-wedding-valentine-love-target' => __( 'Valentine love target', 'covercase' ) ), array( 'si-wedding-valentine-male' => __( 'Valentine male', 'covercase' ) ), array( 'si-wedding-valentine-marriage-date' => __( 'Valentine marriage date', 'covercase' ) ), array( 'si-wedding-valentine-meeting-point' => __( 'Valentine meeting point', 'covercase' ) ), array( 'si-wedding-valentine-neclare' => __( 'Valentine neclare', 'covercase' ) ), array( 'si-wedding-valentine-piano' => __( 'Valentine piano', 'covercase' ) ), array( 'si-wedding-valentine-present' => __( 'Valentine present', 'covercase' ) ), array( 'si-wedding-valentine-single-balloon' => __( 'Valentine single balloon', 'covercase' ) ), array( 'si-wedding-valentine-st-valentine' => __( 'Valentine st valentine', 'covercase' ) ), array( 'si-wedding-valentine-wedding-letter' => __( 'Valentine wedding letter', 'covercase' ) ), array( 'si-wedding-valentine-wine-bottle' => __( 'Valentine wine bottle', 'covercase' ) ), array( 'si-wedding-valentine-wine-glass-love' => __( 'Valentine wine glass love', 'covercase' ) ) ) ); } add_filter( 'vc_iconpicker-type-sharpicons', 'covercase_vc_iconpicker_type_sharpicons', 999 ); }