Añadido importacion y exportacion de datos.

This commit is contained in:
Lil_Carpi
2025-12-04 17:45:59 +01:00
parent 4233ed559d
commit 539c8a2399
14 changed files with 160 additions and 19 deletions

View File

@@ -0,0 +1,17 @@
{
"serverUrl": "https://api.languagetool.org",
"autoCheckDelay": 3000,
"shouldAutoCheck": true,
"languageVariety": {
"en": "en-US",
"de": "de-DE",
"pt": "pt-PT",
"ca": "ca-ES"
},
"dictionary": [],
"syncDictionary": false,
"remoteDictionary": [],
"pickyMode": false,
"longCheckNotification": true,
"staticLanguage": "es-ES"
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "languagetool",
"name": "LanguageTool",
"version": "1.4.2",
"minAppVersion": "1.8.7",
"description": "Unofficial integration of the LanguageTool spell and grammar checker.",
"author": "Lars Wrenger, Clemens Ertle",
"authorUrl": "https://github.com/wrenger",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,54 @@
:root {
--lt-minor: #e9b35f;
--lt-major: #da615c;
--lt-style: #8981f3;
}
.lt-minor {
--lt-highlight: var(--lt-minor)
}
.lt-major {
--lt-highlight: var(--lt-major)
}
.lt-style {
--lt-highlight: var(--lt-style)
}
.lt-settings-grid {
display: inline-grid;
}
.lt-dictionary-words {
display: flex;
}
.lt-menu-info {
max-width: 200px;
}
.lt-menu-message {
font-size: 0.8em;
}
.lt-menu-title + .lt-menu-message {
margin-top: 5pt;
}
.lt-status-bar-btn {
cursor: pointer;
&:hover {
background-color: var(--background-modifier-hover);
}
}
.lt-loading > svg {
animation-name: spin;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}