PluginProbe
QuickWebP – WebP & AVIF Image Optimizer, Compression & SEO for WordPress / 3.1.0
QuickWebP – WebP & AVIF Image Optimizer, Compression & SEO for WordPress v3.1.0
4.1.2 4.1.1 4.1.0 4.0.1 4.0.0 3.3.1 3.3.0 trunk 1.0.0 2.0.0 2.1.0 3.0.0 3.1.0 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8
quickwebp / includes / class-quickwebp-i18n.php

class-quickwebp-i18n.php in QuickWebP – WebP & AVIF Image Optimizer, Compression & SEO for WordPress 3.1.0, at includes/class-quickwebp-i18n.php

48 lines 887 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 http://webdeclic.com
10 * @since 1.0.0
11 *
12 * @package Quickwebp
13 * @subpackage Quickwebp/includes
14 */
15
16 /**
17 * Define the internationalization functionality.
18 *
19 * Loads and defines the internationalization files for this plugin
20 * so that it is ready for translation.
21 *
22 * @since 1.0.0
23 * @package Quickwebp
24 * @subpackage Quickwebp/includes
25 * @author Webdeclic <contact@webdeclic.com>
26 */
27 class Quickwebp_i18n {
28
29
30 /**
31 * Load the plugin text domain for translation.
32 *
33 * @since 1.0.0
34 */
35 public function load_plugin_textdomain() {
36
37 load_plugin_textdomain(
38 'quickwebp',
39 false,
40 dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
41 );
42
43 }
44
45
46
47 }
48