PluginProbe ʕ •ᴥ•ʔ
Catch Scroll Progress Bar / 1.5
Catch Scroll Progress Bar v1.5
trunk 1.0.0 1.1 1.2 1.3 1.4 1.5 1.6 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 2.0 2.1 2.2
catch-scroll-progress-bar / includes / class-catch-scroll-progress-bar-i18n.php
catch-scroll-progress-bar / includes Last commit date
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