This commit is contained in:
恍兮惚兮 2024-09-27 21:33:03 +08:00
parent 802f8086de
commit 92f17fd88c
3 changed files with 5 additions and 7 deletions

View File

@ -21,7 +21,6 @@
- [Translation Source Settings](/en/guochandamoxing.redirect)
- [Using Large Model API for Translation](/en/guochandamoxing.md)
- [Using Large Model Offline Translation](/en/offlinellm.md)
- [Deploying SakuraLLM to an Online GPU Platform](/en/sakurallmcolab.md)
- [Using Debug Browser for Translation](/en/tiaoshiliulanqi.md)
- [Text Processing & Translation Optimization](/en/textprocess.redirect)
- [Functions and Usage of Various Text Processing Methods](/en/textprocess.md)

View File

@ -87,7 +87,7 @@ window.$docsify = {
hook.doneEach(() => {
var elements = document.querySelectorAll('code');
elements.forEach(function (element) {
if (!element.innerHTML.startsWith('https://')) return
if (!(window.location.href.endsWith('guochandamoxing') || window.location.href.endsWith('baipiaojiekou'))) return
element.addEventListener('click', function () {
copyToClipboard(element.innerText)
});
@ -201,21 +201,21 @@ function copyToClipboard(text) {
let thislang = getcurrlang(url)
const langs = {
zh: {
ok: '已复制到剪贴板',
ok: '已复制到剪贴板',
fail: '无法复制:',
},
en: {
ok: 'Copy to clipboard!',
ok: 'Copy to clipboard',
fail: 'Cannot copy:',
},
ru: {
ok: 'Копировать в буфер обмена!',
ok: 'Копировать в буфер обмена',
fail: 'Невозможно скопировать:',
},
}
navigator.clipboard.writeText(text).then(function () {
showToast(langs[thislang].ok);
showToast(langs[thislang].ok + '\n' + text);
}, function (err) {
showToast(langs[thislang].fail + err);
});

View File

@ -21,7 +21,6 @@
- [Настройки источника перевода](/ru/guochandamoxing.redirect)
- [Использование API большой модели для перевода](/ru/guochandamoxing.md)
- [Использование офлайн-перевода большой модели](/ru/offlinellm.md)
- [Развертывание SakuraLLM на онлайн-платформе GPU](/ru/sakurallmcolab.md)
- [Использование отладочного браузера для перевода](/ru/tiaoshiliulanqi.md)
- [Обработка текста и оптимизация перевода](/ru/textprocess.redirect)
- [Функции и использование различных методов обработки текста](/ru/textprocess.md)