Changeset 3488456
- Timestamp:
- 03/22/2026 10:10:04 PM (6 days ago)
- File:
-
- 1 edited
-
gptranslate/trunk/settings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gptranslate/trunk/settings.php
r3487763 r3488456 90 90 <option value='gpt-5.1'<?php selected($options["chatgpt_model"] ?? "gpt-3.5-turbo", "gpt-5.1"); ?>>GPT-5.1</option> 91 91 <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> 92 95 <option value='deepseek-chat'<?php selected($options["chatgpt_model"] ?? "gpt-3.5-turbo", "deepseek-chat"); ?>>DeepSeek Chat</option> 93 96 <option value='gemini-2.5-flash' <?php selected($options["chatgpt_model"] ?? "gpt-3.5-turbo", "gemini-2.5-flash"); ?>>Gemini 2.5 Flash</option> … … 1211 1214 <th scope='row'><label for='words_leafnodes_excluded'><?php echo esc_html($this->loadTranslations('PLG_GPTRANSLATE_WORDS_LEAFNODES_EXCLUDED')); ?></label></th> 1212 1215 <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> 1217 1218 <p class='description'><?php echo esc_html($this->loadTranslations('PLG_GPTRANSLATE_WORDS_LEAFNODES_EXCLUDED_DESC')); ?></p> 1218 1219 </td>
Note: See TracChangeset
for help on using the changeset viewer.