| @@ -1,9 +1,9 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | namespace Elementor\Modules\Library\Documents; |
| 3 | 3 | |
| 4 | 4 | if ( ! defined( 'ABSPATH' ) ) { |
| 5 | - exit; // Exit if accessed directly. | |
| 5 | + exit; // Exit if accessed directly | |
| 6 | 6 | } |
| 7 | 7 | |
| 8 | 8 | /** |
| 9 | 9 | * Elementor section library document. |
| @@ -18,9 +18,8 @@ | ||
| 18 | 18 | public static function get_properties() { |
| 19 | 19 | $properties = parent::get_properties(); |
| 20 | 20 | |
| 21 | 21 | $properties['support_kit'] = true; |
| 22 | - $properties['show_in_finder'] = true; | |
| 23 | 22 | |
| 24 | 23 | return $properties; |
| 25 | 24 | } |
| 26 | 25 | |
| @@ -39,11 +38,11 @@ | ||
| 39 | 38 | * |
| 40 | 39 | * @return string Document title. |
| 41 | 40 | */ |
| 42 | 41 | public static function get_title() { |
| 43 | - return esc_html__( 'Section', 'elementor' ); | |
| 42 | + return __( 'Section', 'elementor' ); | |
| 44 | 43 | } |
| 45 | 44 | |
| 46 | 45 | public static function get_plural_title() { |
| 47 | - return esc_html__( 'Sections', 'elementor' ); | |
| 46 | + return __( 'Sections', 'elementor' ); | |
| 48 | 47 | } |
| 49 | 48 | } |