supervertaler 1.9.180__py3-none-any.whl → 1.9.194__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.
Potentially problematic release.
This version of supervertaler might be problematic. Click here for more details.
- Supervertaler.py +1958 -726
- modules/extract_tm.py +518 -0
- modules/keyboard_shortcuts_widget.py +76 -8
- modules/mt_quick_popup.py +670 -0
- modules/project_tm.py +320 -0
- modules/shortcut_manager.py +19 -5
- modules/statuses.py +2 -2
- modules/superbrowser.py +22 -0
- modules/superlookup.py +3 -3
- modules/termbase_manager.py +0 -1
- modules/termview_widget.py +68 -32
- modules/translation_memory.py +3 -12
- modules/translation_results_panel.py +0 -7
- modules/unified_prompt_manager_qt.py +12 -0
- {supervertaler-1.9.180.dist-info → supervertaler-1.9.194.dist-info}/METADATA +1 -1
- {supervertaler-1.9.180.dist-info → supervertaler-1.9.194.dist-info}/RECORD +20 -17
- {supervertaler-1.9.180.dist-info → supervertaler-1.9.194.dist-info}/WHEEL +0 -0
- {supervertaler-1.9.180.dist-info → supervertaler-1.9.194.dist-info}/entry_points.txt +0 -0
- {supervertaler-1.9.180.dist-info → supervertaler-1.9.194.dist-info}/licenses/LICENSE +0 -0
- {supervertaler-1.9.180.dist-info → supervertaler-1.9.194.dist-info}/top_level.txt +0 -0
modules/translation_memory.py
CHANGED
|
@@ -205,20 +205,14 @@ class TMDatabase:
|
|
|
205
205
|
Returns:
|
|
206
206
|
List of match dictionaries sorted by similarity
|
|
207
207
|
"""
|
|
208
|
-
print(f"[DEBUG] TMDatabase.search_all: source='{source[:50]}...', tm_ids={tm_ids}")
|
|
209
|
-
|
|
210
208
|
# Determine which TMs to search
|
|
211
209
|
# If tm_ids is None or empty, search ALL TMs (don't filter by tm_id)
|
|
212
210
|
if tm_ids is None and enabled_only:
|
|
213
211
|
tm_ids = [tm_id for tm_id, meta in self.tm_metadata.items() if meta.get('enabled', True)]
|
|
214
|
-
|
|
215
|
-
|
|
212
|
+
|
|
216
213
|
# If tm_ids is still empty, set to None to search ALL TMs
|
|
217
214
|
if tm_ids is not None and len(tm_ids) == 0:
|
|
218
215
|
tm_ids = None
|
|
219
|
-
print(f"[DEBUG] TMDatabase.search_all: Empty tm_ids, setting to None to search ALL")
|
|
220
|
-
|
|
221
|
-
print(f"[DEBUG] TMDatabase.search_all: Final tm_ids to search: {tm_ids}")
|
|
222
216
|
|
|
223
217
|
# First try exact match
|
|
224
218
|
exact_match = self.db.get_exact_match(
|
|
@@ -227,8 +221,7 @@ class TMDatabase:
|
|
|
227
221
|
source_lang=self.source_lang,
|
|
228
222
|
target_lang=self.target_lang
|
|
229
223
|
)
|
|
230
|
-
|
|
231
|
-
|
|
224
|
+
|
|
232
225
|
if exact_match:
|
|
233
226
|
# Format as match dictionary
|
|
234
227
|
return [{
|
|
@@ -241,7 +234,6 @@ class TMDatabase:
|
|
|
241
234
|
}]
|
|
242
235
|
|
|
243
236
|
# Try fuzzy matches
|
|
244
|
-
print(f"[DEBUG] TMDatabase.search_all: Calling fuzzy search with source_lang={self.source_lang}, target_lang={self.target_lang}")
|
|
245
237
|
fuzzy_matches = self.db.search_fuzzy_matches(
|
|
246
238
|
source=source,
|
|
247
239
|
tm_ids=tm_ids,
|
|
@@ -250,8 +242,7 @@ class TMDatabase:
|
|
|
250
242
|
source_lang=self.source_lang,
|
|
251
243
|
target_lang=self.target_lang
|
|
252
244
|
)
|
|
253
|
-
|
|
254
|
-
|
|
245
|
+
|
|
255
246
|
# Format matches for UI
|
|
256
247
|
formatted_matches = []
|
|
257
248
|
for match in fuzzy_matches:
|
|
@@ -1676,13 +1676,6 @@ class TranslationResultsPanel(QWidget):
|
|
|
1676
1676
|
Args:
|
|
1677
1677
|
matches_dict: Dict with keys like "NT", "MT", "TM", "Termbases"
|
|
1678
1678
|
"""
|
|
1679
|
-
print(f"🎯 TranslationResultsPanel.set_matches() called with matches_dict keys: {list(matches_dict.keys())}")
|
|
1680
|
-
for match_type, matches in matches_dict.items():
|
|
1681
|
-
print(f" {match_type}: {len(matches)} matches")
|
|
1682
|
-
if match_type == "Termbases" and matches:
|
|
1683
|
-
for i, match in enumerate(matches[:2]): # Show first 2 for debugging
|
|
1684
|
-
print(f" [{i}] {match.source} → {match.target}")
|
|
1685
|
-
|
|
1686
1679
|
# Ensure CompactMatchItem has current theme_manager
|
|
1687
1680
|
if self.theme_manager:
|
|
1688
1681
|
CompactMatchItem.theme_manager = self.theme_manager
|
|
@@ -2372,8 +2372,20 @@ class UnifiedPromptManagerQt:
|
|
|
2372
2372
|
else:
|
|
2373
2373
|
# Name unchanged, just update in place
|
|
2374
2374
|
if self.library.save_prompt(path, prompt_data):
|
|
2375
|
+
# Refresh active prompts if this prompt is currently active or attached
|
|
2376
|
+
# This ensures "Preview Combined" shows the updated content immediately
|
|
2377
|
+
if self.library.active_primary_prompt_path == path:
|
|
2378
|
+
# Update cached primary prompt content
|
|
2379
|
+
self.library.active_primary_prompt = self.library.prompts[path]['content']
|
|
2380
|
+
|
|
2381
|
+
if path in self.library.attached_prompt_paths:
|
|
2382
|
+
# Update cached attached prompt content
|
|
2383
|
+
idx = self.library.attached_prompt_paths.index(path)
|
|
2384
|
+
self.library.attached_prompts[idx] = self.library.prompts[path]['content']
|
|
2385
|
+
|
|
2375
2386
|
QMessageBox.information(self.main_widget, "Saved", "Prompt updated successfully!")
|
|
2376
2387
|
self._refresh_tree()
|
|
2388
|
+
self._update_attached_list() # Refresh attached list to show updated names
|
|
2377
2389
|
else:
|
|
2378
2390
|
QMessageBox.warning(self.main_widget, "Error", "Failed to save prompt")
|
|
2379
2391
|
else:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: supervertaler
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.194
|
|
4
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
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Supervertaler.py,sha256=
|
|
1
|
+
Supervertaler.py,sha256=k2rhthldnENDar6i9p1WikBXKg9d13jaWpRjtHzcX_g,2380045
|
|
2
2
|
modules/__init__.py,sha256=G58XleS-EJ2sX4Kehm-3N2m618_W2Es0Kg8CW_eBG7g,327
|
|
3
3
|
modules/ai_actions.py,sha256=i5MJcM-7Y6CAvKUwxmxrVHeoZAVtAP7aRDdWM5KLkO0,33877
|
|
4
4
|
modules/ai_attachment_manager.py,sha256=juZlrW3UPkIkcnj0SREgOQkQROLf0fcu3ShZcKXMxsI,11361
|
|
@@ -14,6 +14,7 @@ modules/docx_handler.py,sha256=jSlZs5tollJnsnIA80buEXLfZBunp_GQ9lCtFZPUnBs,34053
|
|
|
14
14
|
modules/encoding_repair.py,sha256=mrQSOMW-tvaowLja_gtXDJv3Qw4YhLCLsuZtBS0BVms,11900
|
|
15
15
|
modules/encoding_repair_Qt.py,sha256=UosUOpMnXf0gkgp_F_4wszd25Op_3X_4h9kWMomK0Sk,17533
|
|
16
16
|
modules/encoding_repair_ui.py,sha256=bRnyFg-5_Lz-bZoNT5eivM5LKsQgpoxbllsffYW3fAg,18619
|
|
17
|
+
modules/extract_tm.py,sha256=ix58ti1_Zkd2dxIx1PwN8rWxmYHGv2zsUPrT-VfcMwA,18228
|
|
17
18
|
modules/feature_manager.py,sha256=toQnOjeCPMTWp3sas-J88-ZAomFdoeRLKPc19C-6XFo,12416
|
|
18
19
|
modules/figure_context_manager.py,sha256=hy7h5PcvN8qr8nQtDS41YvTwr6gecWvmjzMBP43_LM8,12682
|
|
19
20
|
modules/file_dialog_helper.py,sha256=0dthKAFBkoQkdGm_zsYQMImn31Z9Bc9-VKNV5idZtkQ,3767
|
|
@@ -21,7 +22,7 @@ modules/find_replace.py,sha256=r9XU19hejjJhItrkzVtn-EKbe8z9Xq-wY77Gt61w468,6342
|
|
|
21
22
|
modules/find_replace_qt.py,sha256=z06yyjOCmpYBrCzZcCv68VK-2o6pjfFCPtbr9o95XH8,18758
|
|
22
23
|
modules/glossary_manager.py,sha256=JDxY9RAGcv-l6Nms4FH7CNDucZdY1TI4WTzyylAuj24,16437
|
|
23
24
|
modules/image_extractor.py,sha256=HI6QHnpkjO35GHzTXbzazYdjoHZPFD44WAa4JGa9bAw,8332
|
|
24
|
-
modules/keyboard_shortcuts_widget.py,sha256=
|
|
25
|
+
modules/keyboard_shortcuts_widget.py,sha256=H489eknMDJkYusri1hQYr5MT-NhkVoHWdx9k_NMTr68,26411
|
|
25
26
|
modules/llm_clients.py,sha256=sdlc6CMFhPbAM5OEJow7LFsHCY8HOnU1jLXHVh5cJ50,48831
|
|
26
27
|
modules/llm_leaderboard.py,sha256=MQ-RbjlE10-CdgVHwoVXzXlCuUfulZ839FaF6dKlt1M,29139
|
|
27
28
|
modules/llm_superbench_ui.py,sha256=lmzsL8lt0KzFw-z8De1zb49Emnv7f1dZv_DJmoQz0bQ,60212
|
|
@@ -29,11 +30,13 @@ modules/local_llm_setup.py,sha256=33y-D_LKzkn2w8ejyjeKaovf_An6xQ98mKISoqe-Qjc,42
|
|
|
29
30
|
modules/model_update_dialog.py,sha256=kEg0FuO1N-uj6QY5ZIj-FqdiLQuPuAY48pbuwT0HUGI,13113
|
|
30
31
|
modules/model_version_checker.py,sha256=41g7gcWvyrKPYeobaOGCMZLwAHgQmFwVF8zokodKae8,12741
|
|
31
32
|
modules/mqxliff_handler.py,sha256=TVtrf7ieGoxfoLxy4v4S7by9YImKypw1EY0wFpZO3Lo,28792
|
|
33
|
+
modules/mt_quick_popup.py,sha256=jnCwaX8tSwaGlM5BxX2NEz5XqkHu9Pnxd8XBRX3OUFM,26291
|
|
32
34
|
modules/non_translatables_manager.py,sha256=izorabiX6rSQzuBIvnY67wmu5vd85SbzexXccbmwPs4,27465
|
|
33
35
|
modules/pdf_rescue_Qt.py,sha256=9W_M0Zms4miapQbrqm-viHNCpaW39GL9VaKKFCJxpnE,80479
|
|
34
36
|
modules/pdf_rescue_tkinter.py,sha256=a4R_OUnn7X5O_XMR1roybrdu1aXoGCwwO-mwYB2ZpOg,39606
|
|
35
37
|
modules/phrase_docx_handler.py,sha256=7vJNbvxxURzdcinZ3rkqyJ-7Y5O1NpVL4Lvu9NuGFjQ,18598
|
|
36
38
|
modules/project_home_panel.py,sha256=P0PgMnoPp6WEiGrfq8cNJNEdxO83aHQDdXzRLqF173w,6810
|
|
39
|
+
modules/project_tm.py,sha256=TQUc9ApZjfiKZlA4bc1PrHwtEtk_XM9XArCd53De_20,12327
|
|
37
40
|
modules/prompt_assistant.py,sha256=shkZqNTvyQKNDO_9aFEu1_gN0zQq0fR5krXkWfnTR2Y,13150
|
|
38
41
|
modules/prompt_library.py,sha256=t5w4cqB6_Sin4BQDVNALKpfB1EN_oaDeHFwlHxILLSY,26894
|
|
39
42
|
modules/prompt_library_migration.py,sha256=fv3RHhe2-EnH50XW5tyTWy0YP_KJ2EsESuTxR8klfmI,17639
|
|
@@ -41,25 +44,25 @@ modules/quick_access_sidebar.py,sha256=RPn5ssvYXlitNMWFZN9Yxv7So8u_z5RGNpHN6N-SF
|
|
|
41
44
|
modules/ribbon_widget.py,sha256=QNGKxmit_oM5C5nJViadYYEzeRlIdIsla8Bzu_RNGO0,21990
|
|
42
45
|
modules/sdlppx_handler.py,sha256=o6Rj_T0B94toiYlvDDwMYLSz4q6kANgegFaDK5i3yhs,33538
|
|
43
46
|
modules/setup_wizard.py,sha256=7apNkeTcmMyw8pzJOWAmTOncxFvt3klOtmg-kKjQNgQ,13091
|
|
44
|
-
modules/shortcut_manager.py,sha256=
|
|
47
|
+
modules/shortcut_manager.py,sha256=stUQnvo2r-fwFPTTvbhQWmCVSHbJxhzg6NeyzHIR_Sg,32516
|
|
45
48
|
modules/simple_segmenter.py,sha256=-V7L-tjajW1M3DADxvcYEgBu0VLJvmRQl6VB9OshiuM,4480
|
|
46
49
|
modules/spellcheck_manager.py,sha256=jwduHJ66pOKv1MtzSAltxpP8LPgz11FvF6j8h7BiRZY,27592
|
|
47
|
-
modules/statuses.py,sha256
|
|
50
|
+
modules/statuses.py,sha256=--uvjZAd8mfYEyw2zkVlrivqIJRXw_w7ubqqVzRPeIQ,6905
|
|
48
51
|
modules/style_guide_manager.py,sha256=QBvbygF2E-cgRuwJPWmIatwQl37voU1FErYnycv8Sac,10809
|
|
49
52
|
modules/superbench_ui.py,sha256=O8pSb-R8Mul1Qz9-8gbBrFR1j7Z8b8_G0wSTSLSCf2U,55563
|
|
50
|
-
modules/superbrowser.py,sha256=
|
|
53
|
+
modules/superbrowser.py,sha256=jZw7jNOJyZdLTOVcbAdALH1MYiP43qi_4qGzNWxJ2Hs,13481
|
|
51
54
|
modules/supercleaner.py,sha256=uRJAEh03Eu4Qtujrf_jxuIyPBbcxKAZzryhV9Chi9ro,22939
|
|
52
55
|
modules/supercleaner_ui.py,sha256=sVTnYxlX9R20eWs52BKCeQ15iFVFOIQEl29L72lup1c,18812
|
|
53
56
|
modules/superdocs.py,sha256=vMYyUbHU8zDkS1YMSDF7niDkT8d8FJFDcfIxSktCyGc,522
|
|
54
57
|
modules/superdocs_viewer_qt.py,sha256=dBxKz71m7EH0jPoKfWLXByMXeAgEZa7zMRu13YsMBBI,14975
|
|
55
|
-
modules/superlookup.py,sha256=
|
|
58
|
+
modules/superlookup.py,sha256=0SnIv-L8xNhAS5JuvoFPdp4BoScgACLFUB1fVwFe36Y,8980
|
|
56
59
|
modules/tag_cleaner.py,sha256=u7VOchIWzD4sAhFs3X1Vuo3hX6X72zESQ0AGZE83cYc,8703
|
|
57
60
|
modules/tag_manager.py,sha256=g66S0JSxdguN9AhWzZG3hsIz87Ul51wQ3c2wOCTZVSk,12789
|
|
58
61
|
modules/term_extractor.py,sha256=qPvKNCVXFTGEGwXNvvC0cfCmdb5c3WhzE38EOgKdKUI,11253
|
|
59
62
|
modules/termbase_entry_editor.py,sha256=iWO9CgLjMomGAqBXDsGAX7TFJvDOp2s_taS4gBL1rZY,35818
|
|
60
63
|
modules/termbase_import_export.py,sha256=16IAY04IS_rgt0GH5UOUzUI5NoqAli4JMfMquxmFBm0,23552
|
|
61
|
-
modules/termbase_manager.py,sha256=
|
|
62
|
-
modules/termview_widget.py,sha256=
|
|
64
|
+
modules/termbase_manager.py,sha256=XAVrz-wt8jKcjoD6ocHoXewY5PN0A0GeqFEctsv0jS8,48697
|
|
65
|
+
modules/termview_widget.py,sha256=FsNnSWh86PCnmKcC3fFJS8MJNdVvRpgE5e8-u4jAosY,55742
|
|
63
66
|
modules/theme_manager.py,sha256=Qk_jfCmfm7fjdMAOyBHpD18w3MiRfWBZk0cHTw6yAAg,18639
|
|
64
67
|
modules/tm_editor_dialog.py,sha256=AzGwq4QW641uFJdF8DljLTRRp4FLoYX3Pe4rlTjQWNg,3517
|
|
65
68
|
modules/tm_manager_qt.py,sha256=h2bvXkRuboHf_RRz9-5FX35GVRlpXgRDWeXyj1QWtPs,54406
|
|
@@ -69,17 +72,17 @@ modules/tmx_editor_qt.py,sha256=PxBIUw_06PHYTBHsd8hZzVJXW8T0A0ljfz1Wjjsa4yU,1170
|
|
|
69
72
|
modules/tmx_generator.py,sha256=pNkxwdMLvSRMMru0lkB1gvViIpg9BQy1EVhRbwoef3k,9426
|
|
70
73
|
modules/tracked_changes.py,sha256=S_BIEC6r7wVAwjG42aSy_RgH4KaMAC8GS5thEvqrYdE,39480
|
|
71
74
|
modules/trados_docx_handler.py,sha256=VPRAQ73cUHs_SEj6x81z1PmSxfjnwPBp9P4fXeK3KpQ,16363
|
|
72
|
-
modules/translation_memory.py,sha256=
|
|
73
|
-
modules/translation_results_panel.py,sha256=
|
|
75
|
+
modules/translation_memory.py,sha256=LnG8csZNL2GTHXT4zk0uecJEtvRc-MKwv7Pt7EX3s7s,28002
|
|
76
|
+
modules/translation_results_panel.py,sha256=OWqzV9xmJOi8NGCi3h42nq-qE7-v6WStjQWRsghCVbQ,92044
|
|
74
77
|
modules/translation_services.py,sha256=lyVpWuZK1wtVtYZMDMdLoq1DHBoSaeAnp-Yejb0TlVQ,10530
|
|
75
78
|
modules/unified_prompt_library.py,sha256=96u4WlMwnmmhD4uNJHZ-qVQj8v9_8dA2AVCWpBcwTrg,26006
|
|
76
|
-
modules/unified_prompt_manager_qt.py,sha256=
|
|
79
|
+
modules/unified_prompt_manager_qt.py,sha256=HkGUnH0wlfxt-hVe-nKCeWLyProYdefuuq2slqv8hI4,172160
|
|
77
80
|
modules/voice_commands.py,sha256=iBb-gjWxRMLhFH7-InSRjYJz1EIDBNA2Pog8V7TtJaY,38516
|
|
78
81
|
modules/voice_dictation.py,sha256=QmitXfkG-vRt5hIQATjphHdhXfqmwhzcQcbXB6aRzIg,16386
|
|
79
82
|
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.
|
|
83
|
+
supervertaler-1.9.194.dist-info/licenses/LICENSE,sha256=m28u-4qL5nXIWnJ6xlQVw__H30rWFtRK3pCOais2OuY,1092
|
|
84
|
+
supervertaler-1.9.194.dist-info/METADATA,sha256=due75gEd18_LV7HXO677PBvuMnD_RTjghSF7Jq275IM,5725
|
|
85
|
+
supervertaler-1.9.194.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
86
|
+
supervertaler-1.9.194.dist-info/entry_points.txt,sha256=NP4hiCvx-_30YYKqgr-jfJYQvHr1qTYBMfoVmKIXSM8,53
|
|
87
|
+
supervertaler-1.9.194.dist-info/top_level.txt,sha256=9tUHBYUSfaE4S2E4W3eavJsDyYymkwLfeWAHHAPT6Dk,22
|
|
88
|
+
supervertaler-1.9.194.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|