Merge branch 'i18n' of https://github.com/RivelleDays/SillyTavern into i18n

8514ac29fca3721ce40787404ed90f264f6e5f86

Rivelle <rivelle.days@gmail.com>

2 files changed, +3 -3Showing whitespace changes
public/scripts/openai.js+2 -2
@@ -3335,7 +3335,7 @@ async function getStatusOpen() {
33353335 chat_completion_sources.GROQ,
33363336 ];
33373337 if (noValidateSources.includes(oai_settings.chat_completion_source)) {
33383338 let status = 't`Unable to verify key; press \"Test Message\" to validate.'`;
33393339 setOnlineStatus(status);
33403340 return resultCheckStatus();
33413341 }
@@ -3813,7 +3813,7 @@ function onLogitBiasPresetExportClick() {
38133813}
38143814
38153815async function onDeletePresetClick() {
38163816 const confirm = await callPopup('t`Delete the preset? This action is irreversible and your current settings will be overwritten.'`, 'confirm');
38173817
38183818 if (!confirm) {
38193819 return;
public/scripts/personas.js+1 -1
@@ -892,7 +892,7 @@ async function setDefaultPersona(e) {
892892 }
893893 delete power_user.default_persona;
894894 } else {
895895 const confirm = await Popup.show.confirm(t`Are you sure you want to set \"${personaName}\" as the default persona?`, t`This name and avatar will be used for all new chats, as well as existing chats where the user persona is not locked.`);
896896
897897 if (!confirm) {
898898 console.debug('User cancelled setting default persona');