Changeset 3402145
- Timestamp:
- 11/25/2025 01:11:26 AM (4 months ago)
- Location:
- quick-translate-pot-po-mo
- Files:
-
- 16 added
- 2 edited
-
tags/2.1.2 (added)
-
tags/2.1.2/assets (added)
-
tags/2.1.2/assets/pafh-admin.css (added)
-
tags/2.1.2/assets/pafh-admin.js (added)
-
tags/2.1.2/assets/qtppm-admin.css (added)
-
tags/2.1.2/assets/qtppm-admin.js (added)
-
tags/2.1.2/languages (added)
-
tags/2.1.2/languages/quick-translate-pot-po-mo-ja.mo (added)
-
tags/2.1.2/languages/quick-translate-pot-po-mo-ja.po (added)
-
tags/2.1.2/languages/quick-translate-pot-po-mo.pot (added)
-
tags/2.1.2/po-auto-fill-helper.php (added)
-
tags/2.1.2/quick-translate-pot-po-mo.php (added)
-
tags/2.1.2/readme.txt (added)
-
tags/2.1.2/screenshot-1.png (added)
-
tags/2.1.2/screenshot-2.png (added)
-
tags/2.1.2/screenshot-3.png (added)
-
trunk/quick-translate-pot-po-mo.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-translate-pot-po-mo/trunk/quick-translate-pot-po-mo.php
r3394770 r3402145 3 3 * Plugin Name: Quick Translate POT/PO/MO 4 4 * Description: With this plugin, you can easily generate and edit a plugin’s translation files, quickly apply the results, and even automatically translate them using Google Translate or DeepL. 5 * Version: 2.1. 15 * Version: 2.1.2 6 6 * Author: Kasuga 7 7 * License: GPLv2 or later … … 1268 1268 $msgid_plural = $data['msgid_plural']; 1269 1269 1270 $pot_content .= 'msgid "' . addcslashes( $msgid, '"') . "\"\n";1270 $pot_content .= 'msgid "' . preg_replace( '/(?<!\\\\)"/', '\\"', $msgid ) . "\"\n"; 1271 1271 1272 1272 if ( $msgid_plural ) { 1273 $pot_content .= 'msgid_plural "' . addcslashes( $msgid_plural, '"') . "\"\n";1273 $pot_content .= 'msgid_plural "' . preg_replace( '/(?<!\\\\)"/', '\\"', $msgid_plural ) . "\"\n"; 1274 1274 $pot_content .= "msgstr[0] \"\"\n"; 1275 1275 $pot_content .= "msgstr[1] \"\"\n\n"; -
quick-translate-pot-po-mo/trunk/readme.txt
r3394770 r3402145 6 6 Requires PHP: 7.4 7 7 Tested up to: 6.8 8 Stable tag: 2.1. 18 Stable tag: 2.1.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 134 134 135 135 == Changelog == 136 = 2.1.2 = 137 * Fixed bugs related to special characters. 138 136 139 = 2.1.1 = 137 140 * Fixed bugs related to special characters.
Note: See TracChangeset
for help on using the changeset viewer.