supervertaler 1.9.116__py3-none-any.whl → 1.9.172__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- Supervertaler.py +4210 -965
- modules/ai_attachment_manager.py +3 -3
- modules/config_manager.py +10 -10
- modules/database_manager.py +197 -52
- modules/keyboard_shortcuts_widget.py +7 -0
- modules/non_translatables_manager.py +1 -1
- modules/prompt_library_migration.py +1 -1
- modules/setup_wizard.py +8 -8
- modules/shortcut_manager.py +29 -1
- modules/superbrowser.py +16 -12
- modules/superlookup.py +18 -10
- modules/tag_manager.py +20 -2
- modules/termview_widget.py +29 -14
- modules/tm_metadata_manager.py +41 -0
- modules/tmx_editor_qt.py +1 -1
- modules/translation_memory.py +54 -9
- modules/unified_prompt_library.py +13 -10
- modules/unified_prompt_manager_qt.py +363 -139
- {supervertaler-1.9.116.dist-info → supervertaler-1.9.172.dist-info}/METADATA +133 -7
- {supervertaler-1.9.116.dist-info → supervertaler-1.9.172.dist-info}/RECORD +24 -24
- {supervertaler-1.9.116.dist-info → supervertaler-1.9.172.dist-info}/WHEEL +1 -1
- {supervertaler-1.9.116.dist-info → supervertaler-1.9.172.dist-info}/entry_points.txt +0 -0
- {supervertaler-1.9.116.dist-info → supervertaler-1.9.172.dist-info}/licenses/LICENSE +0 -0
- {supervertaler-1.9.116.dist-info → supervertaler-1.9.172.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: supervertaler
|
|
3
|
-
Version: 1.9.
|
|
4
|
-
Summary: Professional AI-
|
|
3
|
+
Version: 1.9.172
|
|
4
|
+
Summary: Professional AI-enhanced translation workbench with multi-LLM support, glossary system, TM, spellcheck, voice commands, and PyQt6 interface. Batteries included (core).
|
|
5
5
|
Home-page: https://supervertaler.com
|
|
6
6
|
Author: Michael Beijer
|
|
7
7
|
Author-email: Michael Beijer <info@michaelbeijer.co.uk>
|
|
@@ -71,7 +71,7 @@ Dynamic: home-page
|
|
|
71
71
|
Dynamic: license-file
|
|
72
72
|
Dynamic: requires-python
|
|
73
73
|
|
|
74
|
-
# 🚀 Supervertaler v1.9.
|
|
74
|
+
# 🚀 Supervertaler v1.9.172
|
|
75
75
|
|
|
76
76
|
[](https://pypi.org/project/Supervertaler/)
|
|
77
77
|
[](https://www.python.org/downloads/)
|
|
@@ -79,7 +79,133 @@ Dynamic: requires-python
|
|
|
79
79
|
|
|
80
80
|
AI-enhanced CAT tool with multi-LLM support (GPT-4, Claude, Gemini, Ollama), innovative Superlookup concordance system offering access to multiple terminology sources (TMs, glossaries, web resources, etc.), and seamless CAT tool integration (memoQ, Trados, CafeTran, Phrase).
|
|
81
81
|
|
|
82
|
-
|
|
82
|
+
|
|
83
|
+
**Current Version:** v1.9.172 (January 28, 2026)
|
|
84
|
+
|
|
85
|
+
### FIXED in v1.9.172 - 🐛 Fresh Projects Start Clean
|
|
86
|
+
|
|
87
|
+
- **Fresh Projects Start Clean**: Fixed bug where TMs and glossaries remained activated from previous sessions when loading/creating new projects. Now all resources are properly deactivated, giving you a clean slate.
|
|
88
|
+
|
|
89
|
+
### FIXED in v1.9.171 - 🐛 TM Target & Alt+0 Badge Regression
|
|
90
|
+
|
|
91
|
+
- **TM Target & Alt+0 Badge Restored**: Fixed regression where the TM Target and its blue "0" badge (Alt+0 shortcut) were missing from the Match Panel.
|
|
92
|
+
|
|
93
|
+
### NEW in v1.9.170 - 📝 Scratchpad Tab, Cache Defaults, TM Target Shortcut Badge
|
|
94
|
+
|
|
95
|
+
- **Scratchpad Tab in Right Panel**: The Scratchpad is now available as a permanent tab in the right panel for easier access.
|
|
96
|
+
- **Location**: Right panel tabs → last tab after "Session Log"
|
|
97
|
+
- **Auto-Update**: Content automatically syncs with project's scratchpad notes
|
|
98
|
+
- **Dual Access**: Available both as popup dialog (`Ctrl+Shift+P`) and as permanent tab
|
|
99
|
+
- **Project-Aware**: Tab clears when creating new project, populates when loading project
|
|
100
|
+
|
|
101
|
+
- **Settings Improvement**: "Disable ALL caches" is now checked by default for new installs, ensuring maximum privacy and control for new users.
|
|
102
|
+
|
|
103
|
+
- **TM Target Shortcut Badge**: Added a blue "0" badge next to the TM Target in the Match Panel, indicating the Alt+0 shortcut for instant TM match insertion. Shortcut is documented and works out of the box.
|
|
104
|
+
|
|
105
|
+
### Previously in v1.9.168 - 📝 Markdown File Import with Syntax Highlighting
|
|
106
|
+
|
|
107
|
+
Import Markdown files (`.md`) with full syntax highlighting! Headings, bold/italic markers, code blocks, links, images, blockquotes, and lists are all highlighted with distinctive colors. ([#127](https://github.com/michaelbeijer/Supervertaler/issues/127))
|
|
108
|
+
|
|
109
|
+
### Previously in v1.9.167 - 🐛 Keyboard Shortcuts Panel Fix
|
|
110
|
+
|
|
111
|
+
Fixed bug where UI text (Action, Shortcut, Status columns) would disappear after changing a shortcut. ([#125](https://github.com/michaelbeijer/Supervertaler/issues/125))
|
|
112
|
+
|
|
113
|
+
### Previously in v1.9.166 - 🐛 TM Write Checkbox Fix
|
|
114
|
+
|
|
115
|
+
Fixed critical bug where confirmed translations went to "project" TM instead of user-designated TM with Write enabled. ([#126](https://github.com/michaelbeijer/Supervertaler/issues/126))
|
|
116
|
+
|
|
117
|
+
### Previously in v1.9.162 - ⚡ Cache Kill Switch & Performance Testing
|
|
118
|
+
|
|
119
|
+
Streamlined the right panel by replacing Compare Panel with Match Panel:
|
|
120
|
+
- **Match Panel** combines Termview + TM Source/Target in one tab
|
|
121
|
+
- Compare Panel removed (was redundant with Translation Results)
|
|
122
|
+
- TM matches display with green background for easy identification
|
|
123
|
+
- Zoom shortcuts (Ctrl+Alt+=/Ctrl+Alt+-) now work on Match Panel TM boxes
|
|
124
|
+
- Cleaner UI with less tab switching needed
|
|
125
|
+
|
|
126
|
+
### v1.9.153 - 📝 Tab Layout Reorganization
|
|
127
|
+
|
|
128
|
+
**Lightning-Fast Term Addition:** Adding terms to glossaries now feels instant! When you add a term with Alt+Shift+Up/Down, it appears immediately in TermView AND the source highlighting updates instantly - no more 5-6 second delays.
|
|
129
|
+
|
|
130
|
+
**What Changed:** Instead of searching the entire segment again after adding a term (50+ database queries for long patent sentences), we now add the new term directly to the cache and update the display. The result: instant visual feedback that makes building glossaries during translation feel smooth and responsive.
|
|
131
|
+
|
|
132
|
+
### v1.9.151 - 🔍 TM Pre-Translation Fixed
|
|
133
|
+
|
|
134
|
+
**Intuitive Language Filters:** "From: Dutch → To: English" now means what you'd expect - "Search FOR Dutch text and show me English translations"! Searches ALL TMs regardless of their stored direction (NL→EN or EN→NL) and automatically presents results in the correct order.
|
|
135
|
+
|
|
136
|
+
### v1.9.148-beta - 📁 User-Choosable Data Folder
|
|
137
|
+
|
|
138
|
+
**Your Data, Your Location!** On first run, you choose where to store your data (API keys, TMs, glossaries, prompts). Default is a visible folder in your home directory:
|
|
139
|
+
|
|
140
|
+
| Platform | Default Location |
|
|
141
|
+
|----------|-----------------|
|
|
142
|
+
| **Windows** | `C:\Users\Username\Supervertaler\` |
|
|
143
|
+
| **macOS** | `~/Supervertaler/` |
|
|
144
|
+
| **Linux** | `~/Supervertaler/` |
|
|
145
|
+
|
|
146
|
+
**Features:**
|
|
147
|
+
- First-run dialog lets you choose your data folder
|
|
148
|
+
- Change location anytime in Settings → General
|
|
149
|
+
- Auto-recovery if config pointer is deleted
|
|
150
|
+
- Easy to backup - just copy the folder!
|
|
151
|
+
|
|
152
|
+
### v1.9.147 - 📁 Persistent User Data Location
|
|
153
|
+
|
|
154
|
+
**No More Data Loss on Upgrade!** User data now stored outside the pip package directory, surviving `pip install --upgrade`.
|
|
155
|
+
|
|
156
|
+
### FIXED in v1.9.146 - 🔑 Gemini/Google API Key Alias
|
|
157
|
+
|
|
158
|
+
**Bug Fix:** Fixed "Gemini API Key Missing" error when users had `google=...` instead of `gemini=...` in their api_keys.txt. Both names now work identically thanks to automatic normalization at load time.
|
|
159
|
+
|
|
160
|
+
### FIXED in v1.9.140 - 🐛 Glossary Add No Longer Triggers TM Search
|
|
161
|
+
|
|
162
|
+
**Performance Fix ([#118](https://github.com/michaelbeijer/Supervertaler/issues/118)):** Adding a term to a glossary was unnecessarily triggering a full TM search. Now uses targeted refresh that only updates glossary display - TM results stay cached.
|
|
163
|
+
|
|
164
|
+
**Also:** Renamed "Voice OFF" → "Voice Commands OFF" and "Dictate" → "Dictation" for clarity.
|
|
165
|
+
|
|
166
|
+
### FIXED in v1.9.138 - 🏷️ Termview Punctuated Terms & Auto-Sizing Columns
|
|
167
|
+
|
|
168
|
+
**Termview Fix:** Glossary terms with punctuation (like "ca." or "(typisch)") now correctly appear in the Termview pane. Previously they were found but not displayed due to a key normalization mismatch.
|
|
169
|
+
|
|
170
|
+
**Grid UX:** Segment number column now auto-sizes based on font size and segment count - no more truncated numbers!
|
|
171
|
+
|
|
172
|
+
### FIXED in v1.9.137 - 🔧 Termview Race Condition
|
|
173
|
+
|
|
174
|
+
**Glossary terms now appear immediately:** Fixed timing bug where Termview showed "No glossary matches" until you pressed F5. Now updates correctly when navigating segments.
|
|
175
|
+
|
|
176
|
+
### ENHANCED in v1.9.128 - 📝 Placeholders Tab Layout Optimization
|
|
177
|
+
|
|
178
|
+
**Better Use of Space:** The Placeholders reference tab in the Prompt Manager now uses a compact sidebar layout for Usage Tips, giving the placeholders table much more vertical space. Matches the clean, efficient layout style of other tools like AutoFingers and TMX Editor.
|
|
179
|
+
|
|
180
|
+
### FIXED in v1.9.125 - 🐛 Prompt Save Crash
|
|
181
|
+
|
|
182
|
+
**Critical Fix:** Wrapped prompt save logic in comprehensive error handling to prevent silent crashes. Now shows detailed error messages if save fails instead of crashing the app.
|
|
183
|
+
|
|
184
|
+
### ADDED in v1.9.124 - 📄 QuickMenu Document Context
|
|
185
|
+
|
|
186
|
+
**Context-Aware AI Suggestions:** QuickMenu prompts can now access the full document context! Use the new `{{DOCUMENT_CONTEXT}}` placeholder to give the AI access to your project's source segments. Configure what percentage of segments to include (0-100%, default 50%) in Settings → AI Settings. Perfect for: "Suggest the best translation of '{{SELECTION}}' within the context of this project."
|
|
187
|
+
|
|
188
|
+
### FIXED in v1.9.123 - 🤖 QuickMenu Generic AI Support
|
|
189
|
+
|
|
190
|
+
**QuickMenu Now Works for Any Task:** Fixed bug where QuickMenu prompts were forced into translation mode. Now supports any AI task: explain terms, define concepts, suggest multiple options, analyze tone, etc.
|
|
191
|
+
|
|
192
|
+
### ENHANCED in v1.9.122 - ⌨️ Ctrl+N for Quick Notes
|
|
193
|
+
|
|
194
|
+
**Faster Note-Taking:** Ctrl+N now focuses the Segment Note tab and places your cursor in the notes field, ready to type. Perfect for quick proofreading notes, context reminders, or translation decisions.
|
|
195
|
+
|
|
196
|
+
### FIXED in v1.9.121 - 🐛 Find & Replace Performance
|
|
197
|
+
|
|
198
|
+
**Critical Fix:** v1.9.120 accidentally made Find & Replace slower (37+ seconds). v1.9.121 actually fixes it by updating cells in-place instead of recreating all widgets. Now near-instant!
|
|
199
|
+
|
|
200
|
+
### OPTIMIZED in v1.9.120 - ⚡ Find & Replace Speed (BUGGY - USE v1.9.121)
|
|
201
|
+
|
|
202
|
+
### ADDED in v1.9.119 - ⌨️ Alt+D Dictionary Shortcut
|
|
203
|
+
|
|
204
|
+
**Quick Dictionary Addition:** Press Alt+D to instantly add misspelled words to your custom dictionary without using the right-click menu.
|
|
205
|
+
|
|
206
|
+
### FIXED in v1.9.117 - 🐛 Glossary Punctuation Matching
|
|
207
|
+
|
|
208
|
+
**Critical Fix:** Glossary entries with trailing punctuation (periods, quotes, etc.) now match correctly! Previously, "sentence." in glossary wouldn't match "sentence." in source text due to tokenization stripping punctuation from source but not from glossary entries.
|
|
83
209
|
|
|
84
210
|
### FIXED in v1.9.116 - 🐛 Tab Navigation & Startup
|
|
85
211
|
|
|
@@ -375,7 +501,7 @@ python Supervertaler.py
|
|
|
375
501
|
- 📊 **Smart Status** - Manual edits reset status requiring confirmation
|
|
376
502
|
|
|
377
503
|
**v1.4.0 - Supervoice Voice Dictation + Detachable Log:**
|
|
378
|
-
- 🎤 **Supervoice Voice Dictation** - AI-
|
|
504
|
+
- 🎤 **Supervoice Voice Dictation** - AI-enhanced hands-free translation input
|
|
379
505
|
- 🌍 **100+ Languages** - OpenAI Whisper supports virtually any language
|
|
380
506
|
- ⌨️ **F9 Global Hotkey** - Press-to-start, press-to-stop recording anywhere
|
|
381
507
|
- 🎚️ **5 Model Sizes** - Tiny to Large (balance speed vs accuracy)
|
|
@@ -425,7 +551,7 @@ python Supervertaler.py
|
|
|
425
551
|
- 🔍 **Superlookup** - System-wide search with global hotkey (Ctrl+Alt+L)
|
|
426
552
|
- 📝 **TMX Editor** - Professional translation memory editor with database support
|
|
427
553
|
- 🧹 **AutoFingers** - Automated translation pasting for memoQ with tag cleaning
|
|
428
|
-
- 🔧 **PDF Rescue** - AI-
|
|
554
|
+
- 🔧 **PDF Rescue** - AI-enhanced OCR for poorly formatted PDFs
|
|
429
555
|
- 🔧 **Encoding Repair Tool** - Detect and fix text encoding corruption (mojibake)
|
|
430
556
|
- 💾 **Translation Memory** - Fuzzy matching with TMX import/export
|
|
431
557
|
- 📚 **Multiple Termbases** - Glossary support per project
|
|
@@ -486,7 +612,7 @@ For comprehensive project information, see [PROJECT_CONTEXT.md](PROJECT_CONTEXT.
|
|
|
486
612
|
- 🤖 **LLM Integration** - OpenAI GPT-4/5, Anthropic Claude, Google Gemini
|
|
487
613
|
- 🎯 **Context-aware Translation** - Full document understanding
|
|
488
614
|
- 📚 **Unified Prompt Library** - System Prompts + Custom Instructions
|
|
489
|
-
- 🆘 **PDF Rescue** - AI-
|
|
615
|
+
- 🆘 **PDF Rescue** - AI-enhanced OCR for badly-formatted PDFs
|
|
490
616
|
- ✅ **CAT Features** - Segment editing, grid pagination, dual selection
|
|
491
617
|
- 📝 **TMX Editor** - Professional translation memory editor
|
|
492
618
|
- 🔗 **CAT Tool Integration** - memoQ, CafeTran, Trados Studio
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
Supervertaler.py,sha256=
|
|
1
|
+
Supervertaler.py,sha256=QN11SrXGKNdKhXFRwgkumm6IRI6Q9vg_S2yj2Qbd3K4,2286283
|
|
2
2
|
modules/__init__.py,sha256=G58XleS-EJ2sX4Kehm-3N2m618_W2Es0Kg8CW_eBG7g,327
|
|
3
3
|
modules/ai_actions.py,sha256=i5MJcM-7Y6CAvKUwxmxrVHeoZAVtAP7aRDdWM5KLkO0,33877
|
|
4
|
-
modules/ai_attachment_manager.py,sha256=
|
|
4
|
+
modules/ai_attachment_manager.py,sha256=juZlrW3UPkIkcnj0SREgOQkQROLf0fcu3ShZcKXMxsI,11361
|
|
5
5
|
modules/ai_file_viewer_dialog.py,sha256=lKKqUUlOEVgHmmu6aRxqH7P6ds-7dRLk4ltDyjCwGxs,6246
|
|
6
6
|
modules/autofingers_engine.py,sha256=eJ7tBi7YJvTToe5hYTfnyGXB-qme_cHrOPZibaoR2Xw,17061
|
|
7
7
|
modules/cafetran_docx_handler.py,sha256=_F7Jh0WPVaDnMhdxEsVSXuD1fN9r-S_V6i0gr86Pdfc,14076
|
|
8
|
-
modules/config_manager.py,sha256=
|
|
9
|
-
modules/database_manager.py,sha256=
|
|
8
|
+
modules/config_manager.py,sha256=MkPY3xVFgFDkcwewLREg4BfyKueO0OJkT1cTLxehcjM,17894
|
|
9
|
+
modules/database_manager.py,sha256=ZdsiuwF67lh-FPKPdalWsW9t6IieX_FM0fA2Bca1xSQ,80221
|
|
10
10
|
modules/database_migrations.py,sha256=Y1onFsLDV_6vzJLOpNy3WCZDohBZ2jc4prM-g2_RwLE,14085
|
|
11
11
|
modules/dejavurtf_handler.py,sha256=8NZPPYtHga40SZCypHjPoJPmZTvm9rD-eEUUab7mjtg,28156
|
|
12
12
|
modules/document_analyzer.py,sha256=t1rVvqLaTcpQTEja228C7zZnh8dXshK4wA9t1E9aGVk,19524
|
|
@@ -21,7 +21,7 @@ modules/find_replace.py,sha256=r9XU19hejjJhItrkzVtn-EKbe8z9Xq-wY77Gt61w468,6342
|
|
|
21
21
|
modules/find_replace_qt.py,sha256=z06yyjOCmpYBrCzZcCv68VK-2o6pjfFCPtbr9o95XH8,18758
|
|
22
22
|
modules/glossary_manager.py,sha256=JDxY9RAGcv-l6Nms4FH7CNDucZdY1TI4WTzyylAuj24,16437
|
|
23
23
|
modules/image_extractor.py,sha256=HI6QHnpkjO35GHzTXbzazYdjoHZPFD44WAa4JGa9bAw,8332
|
|
24
|
-
modules/keyboard_shortcuts_widget.py,sha256=
|
|
24
|
+
modules/keyboard_shortcuts_widget.py,sha256=wOw2Lxq4lqrJb_QebwYo-4LRkqy1GJ7JcP5DpusbgqU,23824
|
|
25
25
|
modules/llm_clients.py,sha256=sdlc6CMFhPbAM5OEJow7LFsHCY8HOnU1jLXHVh5cJ50,48831
|
|
26
26
|
modules/llm_leaderboard.py,sha256=MQ-RbjlE10-CdgVHwoVXzXlCuUfulZ839FaF6dKlt1M,29139
|
|
27
27
|
modules/llm_superbench_ui.py,sha256=lmzsL8lt0KzFw-z8De1zb49Emnv7f1dZv_DJmoQz0bQ,60212
|
|
@@ -29,57 +29,57 @@ modules/local_llm_setup.py,sha256=33y-D_LKzkn2w8ejyjeKaovf_An6xQ98mKISoqe-Qjc,42
|
|
|
29
29
|
modules/model_update_dialog.py,sha256=kEg0FuO1N-uj6QY5ZIj-FqdiLQuPuAY48pbuwT0HUGI,13113
|
|
30
30
|
modules/model_version_checker.py,sha256=41g7gcWvyrKPYeobaOGCMZLwAHgQmFwVF8zokodKae8,12741
|
|
31
31
|
modules/mqxliff_handler.py,sha256=-tUFubKsxkx6nW7aMDhuDaTBcVTPtVHV1HyzF0TbkVo,26205
|
|
32
|
-
modules/non_translatables_manager.py,sha256=
|
|
32
|
+
modules/non_translatables_manager.py,sha256=izorabiX6rSQzuBIvnY67wmu5vd85SbzexXccbmwPs4,27465
|
|
33
33
|
modules/pdf_rescue_Qt.py,sha256=9W_M0Zms4miapQbrqm-viHNCpaW39GL9VaKKFCJxpnE,80479
|
|
34
34
|
modules/pdf_rescue_tkinter.py,sha256=a4R_OUnn7X5O_XMR1roybrdu1aXoGCwwO-mwYB2ZpOg,39606
|
|
35
35
|
modules/phrase_docx_handler.py,sha256=7vJNbvxxURzdcinZ3rkqyJ-7Y5O1NpVL4Lvu9NuGFjQ,18598
|
|
36
36
|
modules/project_home_panel.py,sha256=P0PgMnoPp6WEiGrfq8cNJNEdxO83aHQDdXzRLqF173w,6810
|
|
37
37
|
modules/prompt_assistant.py,sha256=shkZqNTvyQKNDO_9aFEu1_gN0zQq0fR5krXkWfnTR2Y,13150
|
|
38
38
|
modules/prompt_library.py,sha256=t5w4cqB6_Sin4BQDVNALKpfB1EN_oaDeHFwlHxILLSY,26894
|
|
39
|
-
modules/prompt_library_migration.py,sha256=
|
|
39
|
+
modules/prompt_library_migration.py,sha256=fv3RHhe2-EnH50XW5tyTWy0YP_KJ2EsESuTxR8klfmI,17639
|
|
40
40
|
modules/quick_access_sidebar.py,sha256=RPn5ssvYXlitNMWFZN9Yxv7So8u_z5RGNpHN6N-SFDI,10151
|
|
41
41
|
modules/ribbon_widget.py,sha256=QNGKxmit_oM5C5nJViadYYEzeRlIdIsla8Bzu_RNGO0,21990
|
|
42
42
|
modules/sdlppx_handler.py,sha256=o6Rj_T0B94toiYlvDDwMYLSz4q6kANgegFaDK5i3yhs,33538
|
|
43
|
-
modules/setup_wizard.py,sha256=
|
|
44
|
-
modules/shortcut_manager.py,sha256
|
|
43
|
+
modules/setup_wizard.py,sha256=7apNkeTcmMyw8pzJOWAmTOncxFvt3klOtmg-kKjQNgQ,13091
|
|
44
|
+
modules/shortcut_manager.py,sha256=Yf3ZlzJg8c0P0Z_GhfOYosLCAj5FWXWnmYe2DMXS8GU,31993
|
|
45
45
|
modules/simple_segmenter.py,sha256=-V7L-tjajW1M3DADxvcYEgBu0VLJvmRQl6VB9OshiuM,4480
|
|
46
46
|
modules/spellcheck_manager.py,sha256=jwduHJ66pOKv1MtzSAltxpP8LPgz11FvF6j8h7BiRZY,27592
|
|
47
47
|
modules/statuses.py,sha256=t6TCA9pNZHDw3SbKTxT73uKezJhwWk9gFLr0NOgEufs,6911
|
|
48
48
|
modules/style_guide_manager.py,sha256=QBvbygF2E-cgRuwJPWmIatwQl37voU1FErYnycv8Sac,10809
|
|
49
49
|
modules/superbench_ui.py,sha256=O8pSb-R8Mul1Qz9-8gbBrFR1j7Z8b8_G0wSTSLSCf2U,55563
|
|
50
|
-
modules/superbrowser.py,sha256=
|
|
50
|
+
modules/superbrowser.py,sha256=FAEaYTMiklXizYm3iPt83kp254bCGrFHRsGHduedKYI,12759
|
|
51
51
|
modules/supercleaner.py,sha256=uRJAEh03Eu4Qtujrf_jxuIyPBbcxKAZzryhV9Chi9ro,22939
|
|
52
52
|
modules/supercleaner_ui.py,sha256=sVTnYxlX9R20eWs52BKCeQ15iFVFOIQEl29L72lup1c,18812
|
|
53
53
|
modules/superdocs.py,sha256=vMYyUbHU8zDkS1YMSDF7niDkT8d8FJFDcfIxSktCyGc,522
|
|
54
54
|
modules/superdocs_viewer_qt.py,sha256=dBxKz71m7EH0jPoKfWLXByMXeAgEZa7zMRu13YsMBBI,14975
|
|
55
|
-
modules/superlookup.py,sha256=
|
|
55
|
+
modules/superlookup.py,sha256=Zc6StQppFRlh6S3h7A6Rjzwl3twe0JHAkTUiybAaBU0,8980
|
|
56
56
|
modules/tag_cleaner.py,sha256=u7VOchIWzD4sAhFs3X1Vuo3hX6X72zESQ0AGZE83cYc,8703
|
|
57
|
-
modules/tag_manager.py,sha256=
|
|
57
|
+
modules/tag_manager.py,sha256=g66S0JSxdguN9AhWzZG3hsIz87Ul51wQ3c2wOCTZVSk,12789
|
|
58
58
|
modules/term_extractor.py,sha256=qPvKNCVXFTGEGwXNvvC0cfCmdb5c3WhzE38EOgKdKUI,11253
|
|
59
59
|
modules/termbase_entry_editor.py,sha256=iWO9CgLjMomGAqBXDsGAX7TFJvDOp2s_taS4gBL1rZY,35818
|
|
60
60
|
modules/termbase_import_export.py,sha256=16IAY04IS_rgt0GH5UOUzUI5NoqAli4JMfMquxmFBm0,23552
|
|
61
61
|
modules/termbase_manager.py,sha256=-PlGF6fIA7KYCteoQ8FZ_0SQZNRRBFAtLimHPbmhQ6w,44544
|
|
62
|
-
modules/termview_widget.py,sha256=
|
|
62
|
+
modules/termview_widget.py,sha256=O3ah7g-4Lb_iUctxl9sMyxh8V3A5I5PFxmy9iIH2Kgk,53484
|
|
63
63
|
modules/theme_manager.py,sha256=EOI_5pM2bXAadw08bbl92TLN-w28lbw4Zi1E8vQ-kM0,16694
|
|
64
64
|
modules/tm_editor_dialog.py,sha256=AzGwq4QW641uFJdF8DljLTRRp4FLoYX3Pe4rlTjQWNg,3517
|
|
65
65
|
modules/tm_manager_qt.py,sha256=h2bvXkRuboHf_RRz9-5FX35GVRlpXgRDWeXyj1QWtPs,54406
|
|
66
|
-
modules/tm_metadata_manager.py,sha256=
|
|
66
|
+
modules/tm_metadata_manager.py,sha256=_drzJ80q-mr1y9La8t0Cb8MXh91n3I-lEGDwSmoVI_4,23161
|
|
67
67
|
modules/tmx_editor.py,sha256=n0CtdZI8f1fPRWmCqz5Ysxbnp556Qj-6Y56a-YIz6pY,59239
|
|
68
|
-
modules/tmx_editor_qt.py,sha256=
|
|
68
|
+
modules/tmx_editor_qt.py,sha256=PxBIUw_06PHYTBHsd8hZzVJXW8T0A0ljfz1Wjjsa4yU,117022
|
|
69
69
|
modules/tmx_generator.py,sha256=pNkxwdMLvSRMMru0lkB1gvViIpg9BQy1EVhRbwoef3k,9426
|
|
70
70
|
modules/tracked_changes.py,sha256=S_BIEC6r7wVAwjG42aSy_RgH4KaMAC8GS5thEvqrYdE,39480
|
|
71
71
|
modules/trados_docx_handler.py,sha256=VPRAQ73cUHs_SEj6x81z1PmSxfjnwPBp9P4fXeK3KpQ,16363
|
|
72
|
-
modules/translation_memory.py,sha256=
|
|
72
|
+
modules/translation_memory.py,sha256=k0GtO6ANTqxI1XMcv3D5mdAoTgcWlDT5iVsYHizKNUM,28738
|
|
73
73
|
modules/translation_results_panel.py,sha256=DmEe0pZRSfcZFg2cWeEREK7H9vrTcPkgeuMW54Pgrys,92505
|
|
74
74
|
modules/translation_services.py,sha256=lyVpWuZK1wtVtYZMDMdLoq1DHBoSaeAnp-Yejb0TlVQ,10530
|
|
75
|
-
modules/unified_prompt_library.py,sha256=
|
|
76
|
-
modules/unified_prompt_manager_qt.py,sha256=
|
|
75
|
+
modules/unified_prompt_library.py,sha256=lzbevgjUz_qCiYSf141BB0mmuaDhSsevWju_a7welu0,26008
|
|
76
|
+
modules/unified_prompt_manager_qt.py,sha256=fyF3_r0N8hnImT-CcWo1AuBOQ1Dn_ExeeUCkZxeSkqE,170422
|
|
77
77
|
modules/voice_commands.py,sha256=iBb-gjWxRMLhFH7-InSRjYJz1EIDBNA2Pog8V7TtJaY,38516
|
|
78
78
|
modules/voice_dictation.py,sha256=QmitXfkG-vRt5hIQATjphHdhXfqmwhzcQcbXB6aRzIg,16386
|
|
79
79
|
modules/voice_dictation_lite.py,sha256=jorY0BmWE-8VczbtGrWwt1zbnOctMoSlWOsQrcufBcc,9423
|
|
80
|
-
supervertaler-1.9.
|
|
81
|
-
supervertaler-1.9.
|
|
82
|
-
supervertaler-1.9.
|
|
83
|
-
supervertaler-1.9.
|
|
84
|
-
supervertaler-1.9.
|
|
85
|
-
supervertaler-1.9.
|
|
80
|
+
supervertaler-1.9.172.dist-info/licenses/LICENSE,sha256=m28u-4qL5nXIWnJ6xlQVw__H30rWFtRK3pCOais2OuY,1092
|
|
81
|
+
supervertaler-1.9.172.dist-info/METADATA,sha256=cDxLhwPym42J-CQfuc07BvtDUoj231w1Lyfz2_iIN6Y,48267
|
|
82
|
+
supervertaler-1.9.172.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
83
|
+
supervertaler-1.9.172.dist-info/entry_points.txt,sha256=NP4hiCvx-_30YYKqgr-jfJYQvHr1qTYBMfoVmKIXSM8,53
|
|
84
|
+
supervertaler-1.9.172.dist-info/top_level.txt,sha256=9tUHBYUSfaE4S2E4W3eavJsDyYymkwLfeWAHHAPT6Dk,22
|
|
85
|
+
supervertaler-1.9.172.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|