Skip to content

Commit 3ff7a70

Browse files
Added Ingrian inflection keyphrases
1 parent f4f232a commit 3ff7a70

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

wiktextract/inflectiondata.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6768,11 +6768,14 @@
67686768
"ki vos": "second-person plural subjunctive",
67696769
"k' i (il)": "third-person plural subjunctive",
67706770

6771-
6771+
# sannoa/Ingrian, rest of these
6772+
"Imperfekta": "imperfect",
6773+
"Pluskvamperfekta": "pluperfect",
6774+
"Infinitivat": "infinitive",
6775+
"Partisipat": "participle",
67726776

67736777
}
67746778

6775-
BOOKMARK = True
67766779

67776780
def check_tags(k, v):
67786781
assert isinstance(k, str)

wiktextract/linkages.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,9 +467,7 @@ def parse_linkage_item_text(ctx, word, data, field, item, sense, ruby,
467467
# descriptions, which can sometimes essentially be tags
468468
# Some word (bleki/Esperanto...) can have parentheses inside
469469
# the quotes, so let's make this regex even more unreadable.
470-
print(item1)
471470
m = re.search(r"\s*\(“([^”]+)”\)", item1)
472-
print(m)
473471
if m:
474472
t = m.group(1)
475473
item1 = (item1[:m.start()] + item1[m.end():]).strip()

0 commit comments

Comments
 (0)