Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions release/radoslove/radoslove.isv-latn.wordlist/HISTORY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Medžuslovjansky slovnik Change History
====================

1.0 (2026-08-08)
----------------
* Created by Radoslove
21 changes: 21 additions & 0 deletions release/radoslove/radoslove.isv-latn.wordlist/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright © 2026 Radoslove

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
38 changes: 38 additions & 0 deletions release/radoslove/radoslove.isv-latn.wordlist/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
Medžuslovjansky slovnik — Interslavic lexical model
===================================================

Description
-----------
Word prediction and autocorrect for **Interslavic** (medžuslovjansky, `isv`),
standard orthography.

39,777 **inflected forms**, not lemmas. The distinction matters: you type
`slovami`, not `slovo`, so a lemma-only model predicts almost nothing useful in
a language this heavily inflected.

Source and trimming
-------------------
Derived from the same wordlist as the Interslavic HeliBoard swipe dictionary —
248,845 forms generated from the medzuslove dictionary database.

The full list compiles to a 33 MB trie, which is well past what an iOS keyboard
*extension* can hold, so this model is cut to forms with frequency ≥ 100
(~5 MB). Vocabulary specific to Interslavic itself is kept regardless of
frequency: the underlying corpus scores `medžuslovjansky` and `slovjansky` at
f=26 and `tipkovnica` at 99, so a plain cut-off would have dropped precisely the
words its users type most.

Orthography
-----------
Standard only — `č š ž ě`. Forms using the extended alphabet are excluded, so
the suggestion bar never proposes a spelling the standard does not use. This
matches the companion keyboard `isv_latin`.

Links
-----
- Keyboard and full sources: https://github.com/radoslove/keyboard-interslavic
- Companion keyboard: `isv_latin` (Medžuslovjansky (latinica))

Copyright
---------
See [LICENSE.md](LICENSE.md)
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<KeymanDeveloperProject>
<Options>
<Version>2.0</Version>
<SkipMetadataFiles>True</SkipMetadataFiles>
<ProjectType>lexicalmodel</ProjectType>
<CompilerWarningsAsErrors>True</CompilerWarningsAsErrors>
<CheckFilenameConventions>True</CheckFilenameConventions>
</Options>
</KeymanDeveloperProject>
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="utf-8"?>
<Package>
<System>
<KeymanDeveloperVersion>18.0.249.0</KeymanDeveloperVersion>
<FileVersion>12.0</FileVersion>
</System>
<Options>
<ExecuteProgram></ExecuteProgram>
<ReadMeFile>readme.htm</ReadMeFile>
<LicenseFile>..\LICENSE.md</LicenseFile>
</Options>
<Info>
<Name URL="">Medžuslovjansky slovnik</Name>
<Copyright URL="">© Radoslove</Copyright>
<Author URL="">Radoslove</Author>
<Version URL="">1.0</Version>
<Description URL="">Medžuslovjansky slovnik</Description>
</Info>
<Files>
<File>
<Name>..\build\radoslove.isv-latn.wordlist.model.js</Name>
</File>
<File>
<Name>welcome.htm</Name>
</File>
<File>
<Name>readme.htm</Name>
</File>
<File>
<Name>..\LICENSE.md</Name>
</File>
</Files>
<Keyboards/>
<LexicalModels>
<LexicalModel>
<Name>Medžuslovjansky slovnik</Name>
<ID>radoslove.isv-latn.wordlist</ID>
<Languages>
<Language ID="isv-Latn">Interslavic</Language>
</Languages>
</LexicalModel>
</LexicalModels>
<RelatedPackages/>
</Package>
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
Medžuslovjansky slovnik 1.0

This is a minimal lexical model source that uses a tab delimited wordlist.
See documentation online at https://help.keyman.com/developer/ for
additional parameters.
*/

const source: LexicalModelSource = {
format: 'trie-1.0',
wordBreaker: 'default',
sources: ['wordlist.tsv'],
};
export default source;
24 changes: 24 additions & 0 deletions release/radoslove/radoslove.isv-latn.wordlist/source/readme.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Medžuslovjansky slovnik</title>
<style type="text/css">
p { font: 10pt Tahoma; }
h1 { font: bold 16pt Tahoma; color: #4444cc; margin-bottom: 2px }
h2 { font: bold 12pt Tahoma; color: #4444cc; }
</style>
</head>
<body>

<h1>Medžuslovjansky slovnik</h1>

<p>
Medžuslovjansky slovnik
</p>

<p>© Radoslove</p>

</body>
</html>
42 changes: 42 additions & 0 deletions release/radoslove/radoslove.isv-latn.wordlist/source/welcome.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="isv">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Medžuslovjansky slovnik</title>
<style type="text/css">
body { font: 11pt -apple-system, "Segoe UI", Tahoma, sans-serif;
margin: 1em; line-height: 1.45; }
h1 { font-size: 15pt; color: #4444cc; margin-bottom: 2px }
em { color: #555; }
</style>
</head>
<body>

<h1>Medžuslovjansky slovnik</h1>

<p>
Slovnik za medžuslovjansky jezyk — podpovědji i avtokorektura.<br>
<em>Interslavic dictionary — word suggestions and autocorrect.</em>
</p>

<p>
<b>39 777</b> slov s formami, ne samo lematami. To jest važno: pišeš
<b>slovami</b>, ne <b>slovo</b>.<br>
<em><b>39,777</b> words with inflected forms, not just lemmas. That matters:
you type <b>slovami</b>, not <b>slovo</b>.</em>
</p>

<p>
Rabotaje s tipkovniceju <b>Medžuslovjansky (latinica)</b>.
Samo standardna ortografija — <b>č š ž ě</b>.<br>
<em>Works with the <b>Medžuslovjansky (latinica)</b> keyboard. Standard
orthography only — <b>č š ž ě</b>.</em>
</p>

<p>
<a href="https://github.com/radoslove/keyboard-interslavic">github.com/radoslove/keyboard-interslavic</a>
</p>

</body>
</html>
Loading