Changeset 3282600
- Timestamp:
- 04/27/2025 07:49:57 AM (11 months ago)
- Location:
- so-pinyin-slugs
- Files:
-
- 25 added
- 3 edited
-
tags/2.3.5 (added)
-
tags/2.3.5/README.md (added)
-
tags/2.3.5/admin (added)
-
tags/2.3.5/admin/settings.php (added)
-
tags/2.3.5/assets (added)
-
tags/2.3.5/assets/screenshot-1.jpg (added)
-
tags/2.3.5/assets/screenshot-2.jpg (added)
-
tags/2.3.5/assets/screenshot-3.png (added)
-
tags/2.3.5/assets/wpml-ready-badge.png (added)
-
tags/2.3.5/css (added)
-
tags/2.3.5/css/settings.css (added)
-
tags/2.3.5/images (added)
-
tags/2.3.5/images/pieterbos.jpg (added)
-
tags/2.3.5/inc (added)
-
tags/2.3.5/inc/dictionary.php (added)
-
tags/2.3.5/inc/functions.php (added)
-
tags/2.3.5/languages (added)
-
tags/2.3.5/languages/so-pinyin-slugs-nl_NL.mo (added)
-
tags/2.3.5/languages/so-pinyin-slugs-nl_NL.po (added)
-
tags/2.3.5/languages/so-pinyin-slugs-zh_CN.mo (added)
-
tags/2.3.5/languages/so-pinyin-slugs-zh_CN.po (added)
-
tags/2.3.5/languages/so-pinyin-slugs.po (added)
-
tags/2.3.5/languages/so-pinyin-slugs.pot (added)
-
tags/2.3.5/readme.txt (added)
-
tags/2.3.5/so-pinyin-slugs.php (added)
-
trunk/images/pieterbos.jpg (modified) (previous)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/so-pinyin-slugs.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
so-pinyin-slugs/trunk/readme.txt
r3254338 r3282600 2 2 Contributors: senlin 3 3 Tags: pinyin, permalinks, slugs, Chinese, Mandarin 4 Requires at least: 4. 45 Tested up to: 6. 76 Stable tag: 2.3. 44 Requires at least: 4.6 5 Tested up to: 6.8 6 Stable tag: 2.3.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 79 79 80 80 == Changelog == 81 82 = 2.3.5 = 83 84 * date: April 27, 2025 85 * removed redundant `load_plugin_textdomain()` function and increased min required WP version 86 * tested up to WP 6.8 81 87 82 88 = 2.3.4 = -
so-pinyin-slugs/trunk/so-pinyin-slugs.php
r3254338 r3282600 5 5 Description: Transforms Simplified or Traditional Chinese character titles into Pinyin to create a permalink friendly slug. 6 6 Author: SO WP 7 Version: 2.3. 47 Version: 2.3.5 8 8 Author URI: https://so-wp.com 9 9 Text Domain: so-pinyin-slugs … … 56 56 add_action( 'plugins_loaded', array( $this, 'constants' ) ); 57 57 58 /* Internationalize the text strings used. */59 add_action( 'plugins_loaded', array( $this, 'i18n' ) );60 61 58 /* Load the functions files. */ 62 59 add_action( 'plugins_loaded', array( $this, 'includes' ) ); … … 85 82 86 83 /* Set the version number of the plugin. */ 87 define( 'SOPS_VERSION', '2.3. 4' );84 define( 'SOPS_VERSION', '2.3.5' ); 88 85 89 86 /* Set constant path to the plugin directory. */ … … 99 96 define( 'SOPS_ADMIN', SOPS_DIR . trailingslashit( 'admin' ) ); 100 97 101 }102 103 /**104 * Loads the translation file.105 *106 * @since 2014.07.28107 */108 function i18n() {109 110 /* Load the translation of the plugin. */111 load_plugin_textdomain( 'so-pinyin-slugs', false, basename( dirname( __FILE__ ) ) . '/languages/' );112 98 } 113 99
Note: See TracChangeset
for help on using the changeset viewer.