Changeset 3380246
- Timestamp:
- 10/17/2025 04:24:52 PM (5 months ago)
- Location:
- glotpress
- Files:
-
- 10 edited
- 1 copied
-
tags/4.0.3 (copied) (copied from glotpress/trunk)
-
tags/4.0.3/CHANGELOG.md (modified) (3 diffs)
-
tags/4.0.3/glotpress.php (modified) (2 diffs)
-
tags/4.0.3/gp-includes/things/glossary-entry.php (modified) (1 diff)
-
tags/4.0.3/gp-templates/project.php (modified) (1 diff)
-
tags/4.0.3/readme.txt (modified) (1 diff)
-
trunk/CHANGELOG.md (modified) (3 diffs)
-
trunk/glotpress.php (modified) (2 diffs)
-
trunk/gp-includes/things/glossary-entry.php (modified) (1 diff)
-
trunk/gp-templates/project.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
glotpress/tags/4.0.3/CHANGELOG.md
r3378742 r3380246 1 1 All notable changes to this project will be documented in this file. 2 2 This project adheres to [Semantic Versioning](http://semver.org/). 3 4 ## [4.0.3] (October 17, 2025) 5 6 **Bugfixes** 7 * Check if ->all_count is > 0 ([#1941]) 8 * Add the untranslated parts of speech ([#1943]) 3 9 4 10 ## [4.0.2] (October 15, 2025) … … 672 678 * Initial release. 673 679 674 [Unreleased]: https://github.com/GlotPress/GlotPress/compare/4.0.2...HEAD 680 [Unreleased]: https://github.com/GlotPress/GlotPress/compare/4.0.3...HEAD 681 [4.0.3]: https://github.com/GlotPress/GlotPress/compare/4.0.2...4.0.3 675 682 [4.0.2]: https://github.com/GlotPress/GlotPress/compare/4.0.1...4.0.2 676 683 [4.0.1]: https://github.com/GlotPress/GlotPress/compare/4.0.0...4.0.1 … … 906 913 [#1842]: https://github.com/GlotPress/GlotPress/pull/1842 907 914 [#1844]: https://github.com/GlotPress/GlotPress/pull/1844 915 [#1941]: https://github.com/GlotPress/GlotPress/pull/1941 916 [#1943]: https://github.com/GlotPress/GlotPress/pull/1943 -
glotpress/tags/4.0.3/glotpress.php
r3378742 r3380246 4 4 * Plugin URI: https://wordpress.org/plugins/glotpress/ 5 5 * Description: GlotPress is a tool to help translators collaborate. 6 * Version: 4.0. 26 * Version: 4.0.3 7 7 * Requires at least: 4.6 8 8 * Tested up to: 6.8 … … 30 30 */ 31 31 32 define( 'GP_VERSION', '4.0. 2' );32 define( 'GP_VERSION', '4.0.3' ); 33 33 define( 'GP_DB_VERSION', '980' ); 34 34 define( 'GP_CACHE_VERSION', '3.0' ); -
glotpress/tags/4.0.3/gp-includes/things/glossary-entry.php
r3378742 r3380246 57 57 } 58 58 59 $this->parts_of_speech = array( 60 'noun' => 'noun', 61 'verb' => 'verb', 62 'adjective' => 'adjective', 63 'adverb' => 'adverb', 64 'interjection' => 'interjection', 65 'conjunction' => 'conjunction', 66 'preposition' => 'preposition', 67 'pronoun' => 'pronoun', 68 'expression' => 'expression', 69 'abbreviation' => 'abbreviation', 70 ); 71 59 72 add_action( 'init', array( $this, 'translate_parts_of_speech' ) ); 60 73 } -
glotpress/tags/4.0.3/gp-templates/project.php
r2979634 r3380246 94 94 <strong><?php gp_link( gp_url_project( $project, gp_url_join( $set->locale, $set->slug ) ), $set->name_with_locale() ); ?></strong> 95 95 <?php 96 if ( $set->current_count && $set-> current_count >= $set->all_count * 0.9 ) :96 if ( $set->current_count && $set->all_count && $set->current_count >= $set->all_count * 0.9 ) : 97 97 $percent = floor( $set->current_count / $set->all_count * 100 ); 98 98 ?> -
glotpress/tags/4.0.3/readme.txt
r3378742 r3380246 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 4.0. 27 Stable tag: 4.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
glotpress/trunk/CHANGELOG.md
r3378742 r3380246 1 1 All notable changes to this project will be documented in this file. 2 2 This project adheres to [Semantic Versioning](http://semver.org/). 3 4 ## [4.0.3] (October 17, 2025) 5 6 **Bugfixes** 7 * Check if ->all_count is > 0 ([#1941]) 8 * Add the untranslated parts of speech ([#1943]) 3 9 4 10 ## [4.0.2] (October 15, 2025) … … 672 678 * Initial release. 673 679 674 [Unreleased]: https://github.com/GlotPress/GlotPress/compare/4.0.2...HEAD 680 [Unreleased]: https://github.com/GlotPress/GlotPress/compare/4.0.3...HEAD 681 [4.0.3]: https://github.com/GlotPress/GlotPress/compare/4.0.2...4.0.3 675 682 [4.0.2]: https://github.com/GlotPress/GlotPress/compare/4.0.1...4.0.2 676 683 [4.0.1]: https://github.com/GlotPress/GlotPress/compare/4.0.0...4.0.1 … … 906 913 [#1842]: https://github.com/GlotPress/GlotPress/pull/1842 907 914 [#1844]: https://github.com/GlotPress/GlotPress/pull/1844 915 [#1941]: https://github.com/GlotPress/GlotPress/pull/1941 916 [#1943]: https://github.com/GlotPress/GlotPress/pull/1943 -
glotpress/trunk/glotpress.php
r3378742 r3380246 4 4 * Plugin URI: https://wordpress.org/plugins/glotpress/ 5 5 * Description: GlotPress is a tool to help translators collaborate. 6 * Version: 4.0. 26 * Version: 4.0.3 7 7 * Requires at least: 4.6 8 8 * Tested up to: 6.8 … … 30 30 */ 31 31 32 define( 'GP_VERSION', '4.0. 2' );32 define( 'GP_VERSION', '4.0.3' ); 33 33 define( 'GP_DB_VERSION', '980' ); 34 34 define( 'GP_CACHE_VERSION', '3.0' ); -
glotpress/trunk/gp-includes/things/glossary-entry.php
r3378742 r3380246 57 57 } 58 58 59 $this->parts_of_speech = array( 60 'noun' => 'noun', 61 'verb' => 'verb', 62 'adjective' => 'adjective', 63 'adverb' => 'adverb', 64 'interjection' => 'interjection', 65 'conjunction' => 'conjunction', 66 'preposition' => 'preposition', 67 'pronoun' => 'pronoun', 68 'expression' => 'expression', 69 'abbreviation' => 'abbreviation', 70 ); 71 59 72 add_action( 'init', array( $this, 'translate_parts_of_speech' ) ); 60 73 } -
glotpress/trunk/gp-templates/project.php
r2979634 r3380246 94 94 <strong><?php gp_link( gp_url_project( $project, gp_url_join( $set->locale, $set->slug ) ), $set->name_with_locale() ); ?></strong> 95 95 <?php 96 if ( $set->current_count && $set-> current_count >= $set->all_count * 0.9 ) :96 if ( $set->current_count && $set->all_count && $set->current_count >= $set->all_count * 0.9 ) : 97 97 $percent = floor( $set->current_count / $set->all_count * 100 ); 98 98 ?> -
glotpress/trunk/readme.txt
r3378742 r3380246 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 4.0. 27 Stable tag: 4.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.