mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 16:44:13 +08:00
docs
This commit is contained in:
parent
802f8086de
commit
92f17fd88c
@ -21,7 +21,6 @@
|
|||||||
- [Translation Source Settings](/en/guochandamoxing.redirect)
|
- [Translation Source Settings](/en/guochandamoxing.redirect)
|
||||||
- [Using Large Model API for Translation](/en/guochandamoxing.md)
|
- [Using Large Model API for Translation](/en/guochandamoxing.md)
|
||||||
- [Using Large Model Offline Translation](/en/offlinellm.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)
|
- [Using Debug Browser for Translation](/en/tiaoshiliulanqi.md)
|
||||||
- [Text Processing & Translation Optimization](/en/textprocess.redirect)
|
- [Text Processing & Translation Optimization](/en/textprocess.redirect)
|
||||||
- [Functions and Usage of Various Text Processing Methods](/en/textprocess.md)
|
- [Functions and Usage of Various Text Processing Methods](/en/textprocess.md)
|
||||||
|
10
docs/main.js
10
docs/main.js
@ -87,7 +87,7 @@ window.$docsify = {
|
|||||||
hook.doneEach(() => {
|
hook.doneEach(() => {
|
||||||
var elements = document.querySelectorAll('code');
|
var elements = document.querySelectorAll('code');
|
||||||
elements.forEach(function (element) {
|
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 () {
|
element.addEventListener('click', function () {
|
||||||
copyToClipboard(element.innerText)
|
copyToClipboard(element.innerText)
|
||||||
});
|
});
|
||||||
@ -201,21 +201,21 @@ function copyToClipboard(text) {
|
|||||||
let thislang = getcurrlang(url)
|
let thislang = getcurrlang(url)
|
||||||
const langs = {
|
const langs = {
|
||||||
zh: {
|
zh: {
|
||||||
ok: '已复制到剪贴板!',
|
ok: '已复制到剪贴板',
|
||||||
fail: '无法复制:',
|
fail: '无法复制:',
|
||||||
},
|
},
|
||||||
en: {
|
en: {
|
||||||
ok: 'Copy to clipboard!',
|
ok: 'Copy to clipboard',
|
||||||
fail: 'Cannot copy:',
|
fail: 'Cannot copy:',
|
||||||
},
|
},
|
||||||
ru: {
|
ru: {
|
||||||
ok: 'Копировать в буфер обмена!',
|
ok: 'Копировать в буфер обмена',
|
||||||
fail: 'Невозможно скопировать:',
|
fail: 'Невозможно скопировать:',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
navigator.clipboard.writeText(text).then(function () {
|
navigator.clipboard.writeText(text).then(function () {
|
||||||
showToast(langs[thislang].ok);
|
showToast(langs[thislang].ok + '\n' + text);
|
||||||
}, function (err) {
|
}, function (err) {
|
||||||
showToast(langs[thislang].fail + err);
|
showToast(langs[thislang].fail + err);
|
||||||
});
|
});
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
- [Настройки источника перевода](/ru/guochandamoxing.redirect)
|
- [Настройки источника перевода](/ru/guochandamoxing.redirect)
|
||||||
- [Использование API большой модели для перевода](/ru/guochandamoxing.md)
|
- [Использование API большой модели для перевода](/ru/guochandamoxing.md)
|
||||||
- [Использование офлайн-перевода большой модели](/ru/offlinellm.md)
|
- [Использование офлайн-перевода большой модели](/ru/offlinellm.md)
|
||||||
- [Развертывание SakuraLLM на онлайн-платформе GPU](/ru/sakurallmcolab.md)
|
|
||||||
- [Использование отладочного браузера для перевода](/ru/tiaoshiliulanqi.md)
|
- [Использование отладочного браузера для перевода](/ru/tiaoshiliulanqi.md)
|
||||||
- [Обработка текста и оптимизация перевода](/ru/textprocess.redirect)
|
- [Обработка текста и оптимизация перевода](/ru/textprocess.redirect)
|
||||||
- [Функции и использование различных методов обработки текста](/ru/textprocess.md)
|
- [Функции и использование различных методов обработки текста](/ru/textprocess.md)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user