CatchThemesThemePlugin.php
4 years ago
class-catch-scroll-progress-bar-activator.php
4 years ago
class-catch-scroll-progress-bar-deactivator.php
4 years ago
class-catch-scroll-progress-bar-i18n.php
4 years ago
class-catch-scroll-progress-bar-loader.php
4 years ago
class-catch-scroll-progress-bar.php
4 years ago
ctp-tabs-removal.php
4 years ago
index.php
4 years ago
class-catch-scroll-progress-bar-i18n.php
38 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Define the internationalization functionality |
| 5 | * |
| 6 | * Loads and defines the internationalization files for this plugin |
| 7 | * so that it is ready for translation. |
| 8 | * |
| 9 | * @link www.catchplugins.com |
| 10 | * @since 1.0.0 |
| 11 | * |
| 12 | * @package Catch_Scroll_Progress_Bar |
| 13 | * @subpackage Catch_Scroll_Progress_Bar/includes |
| 14 | */ |
| 15 | |
| 16 | |
| 17 | class Catch_Scroll_Progress_Bar_i18n { |
| 18 | |
| 19 | |
| 20 | /** |
| 21 | * Load the plugin text domain for translation. |
| 22 | * |
| 23 | * @since 1.0.0 |
| 24 | */ |
| 25 | public function load_plugin_textdomain() { |
| 26 | |
| 27 | load_plugin_textdomain( |
| 28 | 'catch-scroll-progress-bar', |
| 29 | false, |
| 30 | dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/' |
| 31 | ); |
| 32 | |
| 33 | } |
| 34 | |
| 35 | |
| 36 | |
| 37 | } |
| 38 |