Plugin Directory

Changeset 3471926


Ignore:
Timestamp:
03/01/2026 08:03:06 AM (4 weeks ago)
Author:
timwhitlock
Message:

Published 2.8.2

Location:
loco-translate
Files:
6 edited
13 copied

Legend:

Unmodified
Added
Removed
  • loco-translate/tags/2.8.2/languages/loco-translate.pot

    r3471025 r3471926  
    22msgid ""
    33msgstr ""
    4 "Project-Id-Version: Loco Translate 2.8.2-dev\n"
     4"Project-Id-Version: Loco Translate 2.8.2\n"
    55"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/loco-translate/\n"
    6 "POT-Creation-Date: 2026-02-27 11:36+0000\n"
     6"POT-Creation-Date: 2026-03-01 07:58+0000\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1414"Content-Transfer-Encoding: 8bit\n"
    1515"X-Generator: Loco https://localise.biz/\n"
    16 "X-Loco-Version: 2.8.2-dev; wp-6.9.1; php-8.3.27\n"
     16"X-Loco-Version: 2.8.2; wp-6.9.1; php-8.3.27\n"
    1717"X-Domain: loco-translate"
    1818
     
    17191719
    17201720#: tpl/admin/config/settings.php:31
    1721 msgid "Skip PHP files larger than:"
     1721msgid "Skip source files larger than:"
    17221722msgstr ""
    17231723
     
    17281728#: src/admin/file/BaseController.php:118
    17291729msgid "Source"
    1730 msgstr ""
    1731 
    1732 #: tpl/admin/config/settings.php:207
    1733 msgid "Source code viewer access"
    17341730msgstr ""
    17351731
     
    21972193msgstr ""
    21982194
     2195#: tpl/admin/config/settings.php:207
     2196msgid "Viewing of referenced source code"
     2197msgstr ""
     2198
    21992199#: src/package/Header.php:93
    22002200msgid "Visit official site"
  • loco-translate/tags/2.8.2/loco.php

    r3471026 r3471926  
    55Description: Translate themes and plugins directly in WordPress
    66Author: Tim Whitlock
    7 Version: 2.8.2-dev
     7Version: 2.8.2
    88Requires at least: 6.6
    99Requires PHP: 7.4
     
    3232 */
    3333function loco_plugin_version(): string {
    34     return '2.8.2-dev';
     34    return '2.8.2';
    3535}
    3636
  • loco-translate/tags/2.8.2/readme.txt

    r3471026 r3471926  
    55Requires PHP: 7.4
    66Tested up to: 6.9.1
    7 Stable tag: 2.8.1
     7Stable tag: 2.8.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    105105* Fix for LLMs retaining escaped forward slashes
    106106* Bumped WordPress compatibility to 6.9.1
    107 * Bolstered security for viewing source code references:
    108 * 1) Added file reference access control via `code_view` setting
    109 * 2) Validating i18n JSON schemas (blocks|theme.json)
    110 * 3) Validating PHP/JS sources contain extractable strings
     107* New security features for viewing source code refs:
     108* - Access permission via `code_view` setting
     109* - JSON schemas must validate as blocks|theme.json
     110* - PHP/JS sources must contain extractable strings
    111111
    112112= 2.8.1 =
  • loco-translate/tags/2.8.2/tpl/admin/config/settings.php

    r3470689 r3471926  
    2929                            <p>
    3030                                <label for="loco--max_php_size">
    31                                     <?php esc_html_e('Skip PHP files larger than:','loco-translate')?>
     31                                    <?php esc_html_e('Skip source files larger than:','loco-translate')?>
    3232                                </label>
    3333                                <input type="text" size="5" name="opts[max_php_size]" id="loco--max_php_size" value="<?php echo esc_attr( $opts->max_php_size)?>" placeholder="<?php echo esc_attr($dflt->max_php_size)?>" />
     
    3535                            <p>
    3636                                <label for="loco--php_alias">
    37                                     <?php esc_html_e('Scan PHP files with extensions:','loco-translate')?>
     37                                    <?php esc_html_e('Scan PHP files with extensions:','loco-translate')?> 
    3838                                </label>
    3939                                <input type="text" size="15" name="opts[php_alias]" id="loco--php_alias" value="<?php echo esc_attr( implode(' ',$opts->php_alias) )?>" placeholder="<?php echo esc_attr(implode(' ',$dflt->php_alias))?>" />
     
    4141                            <p>
    4242                                <label for="loco--jsx_alias">
    43                                     <?php esc_html_e('Scan JavaScript files with extensions:','loco-translate')?>
     43                                    <?php esc_html_e('Scan JavaScript files with extensions:','loco-translate')?> 
    4444                                </label>
    4545                                <input type="text" size="15" name="opts[jsx_alias]" id="loco--jsx_alias" value="<?php echo esc_attr( implode(' ',$opts->jsx_alias) )?>" placeholder="<?php echo esc_attr(implode(' ',$dflt->jsx_alias))?>" />
     
    205205                            <p>
    206206                                <label for="loco--code-view">
    207                                     <?php esc_html_e('Source code viewer access','loco-translate');?>:
     207                                    <?php esc_html_e('Viewing of referenced source code','loco-translate');?>:
    208208                                </label>
    209209                                <select name="opts[code_view]" id="loco--code-view">
  • loco-translate/trunk/languages/loco-translate.pot

    r3471025 r3471926  
    22msgid ""
    33msgstr ""
    4 "Project-Id-Version: Loco Translate 2.8.2-dev\n"
     4"Project-Id-Version: Loco Translate 2.8.2\n"
    55"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/loco-translate/\n"
    6 "POT-Creation-Date: 2026-02-27 11:36+0000\n"
     6"POT-Creation-Date: 2026-03-01 07:58+0000\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1414"Content-Transfer-Encoding: 8bit\n"
    1515"X-Generator: Loco https://localise.biz/\n"
    16 "X-Loco-Version: 2.8.2-dev; wp-6.9.1; php-8.3.27\n"
     16"X-Loco-Version: 2.8.2; wp-6.9.1; php-8.3.27\n"
    1717"X-Domain: loco-translate"
    1818
     
    17191719
    17201720#: tpl/admin/config/settings.php:31
    1721 msgid "Skip PHP files larger than:"
     1721msgid "Skip source files larger than:"
    17221722msgstr ""
    17231723
     
    17281728#: src/admin/file/BaseController.php:118
    17291729msgid "Source"
    1730 msgstr ""
    1731 
    1732 #: tpl/admin/config/settings.php:207
    1733 msgid "Source code viewer access"
    17341730msgstr ""
    17351731
     
    21972193msgstr ""
    21982194
     2195#: tpl/admin/config/settings.php:207
     2196msgid "Viewing of referenced source code"
     2197msgstr ""
     2198
    21992199#: src/package/Header.php:93
    22002200msgid "Visit official site"
  • loco-translate/trunk/loco.php

    r3457848 r3471926  
    55Description: Translate themes and plugins directly in WordPress
    66Author: Tim Whitlock
    7 Version: 2.8.2-dev
     7Version: 2.8.2
    88Requires at least: 6.6
    99Requires PHP: 7.4
     
    3232 */
    3333function loco_plugin_version(): string {
    34     return '2.8.2-dev';
     34    return '2.8.2';
    3535}
    3636
  • loco-translate/trunk/readme.txt

    r3471025 r3471926  
    55Requires PHP: 7.4
    66Tested up to: 6.9.1
    7 Stable tag: 2.8.1
     7Stable tag: 2.8.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    105105* Fix for LLMs retaining escaped forward slashes
    106106* Bumped WordPress compatibility to 6.9.1
    107 * Bolstered security for viewing source code references:
    108 * 1) Added file reference access control via `code_view` setting
    109 * 2) Validating i18n JSON schemas (blocks|theme.json)
    110 * 3) Validating PHP/JS sources contain extractable strings
     107* New security features for viewing source code refs:
     108* - Access permission via `code_view` setting
     109* - JSON schemas must validate as blocks|theme.json
     110* - PHP/JS sources must contain extractable strings
    111111
    112112= 2.8.1 =
  • loco-translate/trunk/tpl/admin/config/settings.php

    r3470689 r3471926  
    2929                            <p>
    3030                                <label for="loco--max_php_size">
    31                                     <?php esc_html_e('Skip PHP files larger than:','loco-translate')?>
     31                                    <?php esc_html_e('Skip source files larger than:','loco-translate')?>
    3232                                </label>
    3333                                <input type="text" size="5" name="opts[max_php_size]" id="loco--max_php_size" value="<?php echo esc_attr( $opts->max_php_size)?>" placeholder="<?php echo esc_attr($dflt->max_php_size)?>" />
     
    3535                            <p>
    3636                                <label for="loco--php_alias">
    37                                     <?php esc_html_e('Scan PHP files with extensions:','loco-translate')?>
     37                                    <?php esc_html_e('Scan PHP files with extensions:','loco-translate')?> 
    3838                                </label>
    3939                                <input type="text" size="15" name="opts[php_alias]" id="loco--php_alias" value="<?php echo esc_attr( implode(' ',$opts->php_alias) )?>" placeholder="<?php echo esc_attr(implode(' ',$dflt->php_alias))?>" />
     
    4141                            <p>
    4242                                <label for="loco--jsx_alias">
    43                                     <?php esc_html_e('Scan JavaScript files with extensions:','loco-translate')?>
     43                                    <?php esc_html_e('Scan JavaScript files with extensions:','loco-translate')?> 
    4444                                </label>
    4545                                <input type="text" size="15" name="opts[jsx_alias]" id="loco--jsx_alias" value="<?php echo esc_attr( implode(' ',$opts->jsx_alias) )?>" placeholder="<?php echo esc_attr(implode(' ',$dflt->jsx_alias))?>" />
     
    205205                            <p>
    206206                                <label for="loco--code-view">
    207                                     <?php esc_html_e('Source code viewer access','loco-translate');?>:
     207                                    <?php esc_html_e('Viewing of referenced source code','loco-translate');?>:
    208208                                </label>
    209209                                <select name="opts[code_view]" id="loco--code-view">
Note: See TracChangeset for help on using the changeset viewer.