Plugin Directory

Changeset 3488456


Ignore:
Timestamp:
03/22/2026 10:10:04 PM (6 days ago)
Author:
John Dagelmore
Message:

2.27.5 trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gptranslate/trunk/settings.php

    r3487763 r3488456  
    9090                    <option value='gpt-5.1'<?php selected($options["chatgpt_model"] ?? "gpt-3.5-turbo", "gpt-5.1"); ?>>GPT-5.1</option>
    9191                    <option value='gpt-5.2'<?php selected($options["chatgpt_model"] ?? "gpt-3.5-turbo", "gpt-5.2"); ?>>GPT-5.2</option>
     92                    <option value='gpt-5.4-mini'<?php selected($options["chatgpt_model"] ?? "gpt-3.5-turbo", "gpt-5.4-mini"); ?>>GPT-5.4 Mini</option>
     93                    <option value='gpt-5.4-nano'<?php selected($options["chatgpt_model"] ?? "gpt-3.5-turbo", "gpt-5.4-nano"); ?>>GPT-5.4 Nano</option>
     94                    <option value='gpt-5.4'<?php selected($options["chatgpt_model"] ?? "gpt-3.5-turbo", "gpt-5.4"); ?>>GPT-5.4</option>
    9295                    <option value='deepseek-chat'<?php selected($options["chatgpt_model"] ?? "gpt-3.5-turbo", "deepseek-chat"); ?>>DeepSeek Chat</option>
    9396                    <option value='gemini-2.5-flash' <?php selected($options["chatgpt_model"] ?? "gpt-3.5-turbo", "gemini-2.5-flash"); ?>>Gemini 2.5 Flash</option>
     
    12111214                <th scope='row'><label for='words_leafnodes_excluded'><?php echo esc_html($this->loadTranslations('PLG_GPTRANSLATE_WORDS_LEAFNODES_EXCLUDED')); ?></label></th>
    12121215                <td>
    1213                    <input type='text' name="gptranslate_options[words_leafnodes_excluded]"
    1214                       id='words_leafnodes_excluded'
    1215                       value='<?php echo esc_attr($options["words_leafnodes_excluded"] ?? ""); ?>'
    1216                       class='large-text regular-text' />
     1216                   <textarea name="gptranslate_options[words_leafnodes_excluded]"
     1217                      id='words_leafnodes_excluded' class='large-text' rows='5'><?php echo esc_textarea($options["words_leafnodes_excluded"] ?? ""); ?></textarea>
    12171218                   <p class='description'><?php echo esc_html($this->loadTranslations('PLG_GPTRANSLATE_WORDS_LEAFNODES_EXCLUDED_DESC')); ?></p>
    12181219                </td>
Note: See TracChangeset for help on using the changeset viewer.