setiastrosuitepro 1.7.1.post2__py3-none-any.whl → 1.7.4__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 setiastrosuitepro might be problematic. Click here for more details.

Files changed (62) hide show
  1. setiastro/images/3dplanet.png +0 -0
  2. setiastro/saspro/__init__.py +20 -8
  3. setiastro/saspro/__main__.py +349 -290
  4. setiastro/saspro/_generated/build_info.py +2 -2
  5. setiastro/saspro/abe.py +4 -4
  6. setiastro/saspro/autostretch.py +29 -18
  7. setiastro/saspro/doc_manager.py +4 -1
  8. setiastro/saspro/gui/main_window.py +46 -7
  9. setiastro/saspro/gui/mixins/file_mixin.py +6 -2
  10. setiastro/saspro/gui/mixins/menu_mixin.py +1 -0
  11. setiastro/saspro/gui/mixins/toolbar_mixin.py +9 -2
  12. setiastro/saspro/imageops/serloader.py +101 -17
  13. setiastro/saspro/layers.py +186 -10
  14. setiastro/saspro/layers_dock.py +198 -5
  15. setiastro/saspro/legacy/image_manager.py +10 -4
  16. setiastro/saspro/legacy/numba_utils.py +301 -119
  17. setiastro/saspro/numba_utils.py +998 -270
  18. setiastro/saspro/ops/settings.py +6 -6
  19. setiastro/saspro/pixelmath.py +1 -1
  20. setiastro/saspro/planetprojection.py +4059 -0
  21. setiastro/saspro/resources.py +2 -0
  22. setiastro/saspro/save_options.py +45 -13
  23. setiastro/saspro/ser_stack_config.py +21 -1
  24. setiastro/saspro/ser_stacker.py +8 -2
  25. setiastro/saspro/ser_stacker_dialog.py +37 -10
  26. setiastro/saspro/ser_tracking.py +57 -35
  27. setiastro/saspro/serviewer.py +164 -16
  28. setiastro/saspro/sfcc.py +14 -8
  29. setiastro/saspro/stacking_suite.py +292 -111
  30. setiastro/saspro/subwindow.py +64 -36
  31. setiastro/saspro/translations/all_source_strings.json +2 -2
  32. setiastro/saspro/translations/ar_translations.py +3 -3
  33. setiastro/saspro/translations/de_translations.py +2 -2
  34. setiastro/saspro/translations/es_translations.py +2 -2
  35. setiastro/saspro/translations/fr_translations.py +2 -2
  36. setiastro/saspro/translations/hi_translations.py +2 -2
  37. setiastro/saspro/translations/it_translations.py +2 -2
  38. setiastro/saspro/translations/ja_translations.py +2 -2
  39. setiastro/saspro/translations/pt_translations.py +2 -2
  40. setiastro/saspro/translations/ru_translations.py +2 -2
  41. setiastro/saspro/translations/saspro_ar.ts +2 -2
  42. setiastro/saspro/translations/saspro_de.ts +4 -4
  43. setiastro/saspro/translations/saspro_es.ts +2 -2
  44. setiastro/saspro/translations/saspro_fr.ts +2 -2
  45. setiastro/saspro/translations/saspro_hi.ts +2 -2
  46. setiastro/saspro/translations/saspro_it.ts +4 -4
  47. setiastro/saspro/translations/saspro_ja.ts +2 -2
  48. setiastro/saspro/translations/saspro_pt.ts +2 -2
  49. setiastro/saspro/translations/saspro_ru.ts +2 -2
  50. setiastro/saspro/translations/saspro_sw.ts +2 -2
  51. setiastro/saspro/translations/saspro_uk.ts +2 -2
  52. setiastro/saspro/translations/saspro_zh.ts +2 -2
  53. setiastro/saspro/translations/sw_translations.py +2 -2
  54. setiastro/saspro/translations/uk_translations.py +2 -2
  55. setiastro/saspro/translations/zh_translations.py +2 -2
  56. setiastro/saspro/window_shelf.py +62 -1
  57. {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/METADATA +1 -1
  58. {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/RECORD +62 -60
  59. {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/entry_points.txt +1 -1
  60. {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/WHEEL +0 -0
  61. {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/licenses/LICENSE +0 -0
  62. {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.4.dist-info}/licenses/license.txt +0 -0
@@ -589,7 +589,7 @@ class ImageSubWindow(QWidget):
589
589
  # Context menu + shortcuts
590
590
  self.setContextMenuPolicy(Qt.ContextMenuPolicy.CustomContextMenu)
591
591
  self.customContextMenuRequested.connect(self._show_ctx_menu)
592
- QShortcut(QKeySequence("F2"), self, activated=self._rename_view)
592
+ QShortcut(QKeySequence("F2"), self, activated=self._rename_document)
593
593
  QShortcut(QKeySequence("F3"), self, activated=self._rename_document)
594
594
  #QShortcut(QKeySequence("A"), self, activated=self.toggle_autostretch)
595
595
  QShortcut(QKeySequence("Ctrl+Space"), self, activated=self.toggle_autostretch)
@@ -1726,8 +1726,8 @@ class ImageSubWindow(QWidget):
1726
1726
 
1727
1727
  def _show_ctx_menu(self, pos):
1728
1728
  menu = QMenu(self)
1729
- a_view = menu.addAction(self.tr("Rename View… (F2)"))
1730
- a_doc = menu.addAction(self.tr("Rename Document… (F3)"))
1729
+ #a_view = menu.addAction(self.tr("Rename View… (F2)"))
1730
+ a_doc = menu.addAction(self.tr("Rename Document… (F2)"))
1731
1731
  menu.addSeparator()
1732
1732
  a_min = menu.addAction(self.tr("Send to Shelf"))
1733
1733
  a_clear = menu.addAction(self.tr("Clear View Name (use doc name)"))
@@ -1737,12 +1737,33 @@ class ImageSubWindow(QWidget):
1737
1737
  a_help = menu.addAction(self.tr("Show pixel/WCS readout hint"))
1738
1738
  menu.addSeparator()
1739
1739
  a_prev = menu.addAction(self.tr("Create Preview (drag rectangle)"))
1740
+ # --- Mask actions (requested in zoom/context menu) ---
1741
+ mw = self._find_main_window()
1742
+ vw = self # this ImageSubWindow is the view
1743
+ doc = getattr(vw, "document", None)
1744
+
1745
+ has_mask = bool(doc and getattr(doc, "active_mask_id", None))
1746
+
1747
+ menu.addSeparator()
1748
+ menu.addSection(self.tr("Mask"))
1749
+
1750
+ # 1) Toggle overlay (single item: Show/Hide)
1751
+ a_mask_overlay = menu.addAction(self.tr("Show Mask Overlay"))
1752
+ a_mask_overlay.setCheckable(True)
1753
+ a_mask_overlay.setChecked(bool(getattr(vw, "show_mask_overlay", False)))
1754
+ a_mask_overlay.setEnabled(has_mask)
1755
+
1756
+ # 2) Invert mask
1757
+ a_invert = menu.addAction(self.tr("Invert Mask"))
1758
+ a_invert.setEnabled(has_mask)
1759
+
1760
+ # 3) Remove mask
1761
+ a_remove = menu.addAction(self.tr("Remove Mask"))
1762
+ a_remove.setEnabled(has_mask)
1740
1763
 
1741
1764
  act = menu.exec(self.mapToGlobal(pos))
1742
1765
 
1743
- if act == a_view:
1744
- self._rename_view()
1745
- elif act == a_doc:
1766
+ if act == a_doc:
1746
1767
  self._rename_document()
1747
1768
  elif act == a_min:
1748
1769
  self._send_to_shelf()
@@ -1756,7 +1777,19 @@ class ImageSubWindow(QWidget):
1756
1777
  elif act == a_prev:
1757
1778
  self._preview_btn.setChecked(True)
1758
1779
  self._toggle_preview_select_mode(True)
1759
-
1780
+ # --- Mask dispatch ---
1781
+ elif act == a_mask_overlay:
1782
+ if mw:
1783
+ if a_mask_overlay.isChecked():
1784
+ mw._show_mask_overlay()
1785
+ else:
1786
+ mw._hide_mask_overlay()
1787
+ elif act == a_invert:
1788
+ if mw:
1789
+ mw._invert_mask()
1790
+ elif act == a_remove:
1791
+ if mw:
1792
+ mw._remove_mask_menu()
1760
1793
 
1761
1794
 
1762
1795
  def _send_to_shelf(self):
@@ -1766,39 +1799,34 @@ class ImageSubWindow(QWidget):
1766
1799
  sub.hide()
1767
1800
  mw.window_shelf.add_entry(sub)
1768
1801
 
1769
-
1770
1802
  def _rename_view(self):
1771
- current = self._view_title_override or self.document.display_name()
1772
- new, ok = QInputDialog.getText(self, self.tr("Rename View"), self.tr("New view name:"), text=current)
1773
- if ok and new.strip():
1774
- self._view_title_override = new.strip()
1775
- self._sync_host_title() # calls _rebuild_title → emits viewTitleChanged
1803
+ """LEGACY: View rename removed. Keep as shim so older calls don't break."""
1804
+ return self._rename_document()
1776
1805
 
1777
- # optional: directly ping layers dock (defensive)
1778
- mw = self._find_main_window()
1779
- if mw and hasattr(mw, "layers_dock") and mw.layers_dock:
1780
- try:
1781
- mw.layers_dock._refresh_titles_only()
1782
- except Exception:
1783
- pass
1784
1806
 
1785
1807
  def _rename_document(self):
1786
1808
  current = self.document.display_name()
1787
- new, ok = QInputDialog.getText(self, self.tr("Rename Document"), self.tr("New document name:"), text=current)
1788
- if ok and new.strip():
1789
- # store on the doc so Explorer + other views update too
1790
- self.document.metadata["display_name"] = new.strip()
1791
- self.document.changed.emit() # triggers all listeners
1792
- # If this view had an override equal to the old name, drop it
1793
- if self._view_title_override and self._view_title_override == current:
1794
- self._view_title_override = None
1795
- self._sync_host_title()
1796
- mw = self._find_main_window()
1797
- if mw and hasattr(mw, "layers_dock") and mw.layers_dock:
1798
- try:
1799
- mw.layers_dock._refresh_titles_only()
1800
- except Exception:
1801
- pass
1809
+ new, ok = QInputDialog.getText(
1810
+ self, self.tr("Rename Document"), self.tr("New name:"), text=current
1811
+ )
1812
+ if not (ok and new.strip()):
1813
+ return
1814
+
1815
+ new_name = new.strip()
1816
+ if new_name == current:
1817
+ return
1818
+
1819
+ self.document.metadata["display_name"] = new_name
1820
+ self.document.changed.emit() # everyone listening updates
1821
+ self._sync_host_title() # update this subwindow title immediately
1822
+
1823
+ mw = self._find_main_window()
1824
+ if mw and hasattr(mw, "layers_dock") and mw.layers_dock:
1825
+ try:
1826
+ mw.layers_dock._refresh_titles_only()
1827
+ except Exception:
1828
+ pass
1829
+
1802
1830
 
1803
1831
  def set_scale(self, s: float):
1804
1832
  # Programmatic scale changes must schedule final smooth redraw
@@ -2493,7 +2521,7 @@ class ImageSubWindow(QWidget):
2493
2521
  target_median=self.autostretch_target,
2494
2522
  sigma=self.autostretch_sigma,
2495
2523
  linked=(not is_mono and self._autostretch_linked),
2496
- use_16bit=None,
2524
+ use_24bit=None,
2497
2525
  )
2498
2526
  else:
2499
2527
  vis = arr
@@ -2459,7 +2459,7 @@
2459
2459
  "Choose SASP Data Folder",
2460
2460
  "Choose…",
2461
2461
  "Clear",
2462
- "Compute autostretch on a 16-bit histogram (smoother gradients).",
2462
+ "Compute autostretch on a 24-bit histogram (smoother gradients).",
2463
2463
  "Cosmic Clarity",
2464
2464
  "Cosmic Clarity Denoise Path:",
2465
2465
  "Cosmic Clarity Executable Path (XL model included)",
@@ -2515,7 +2515,7 @@
2515
2515
  "Grid Overlay",
2516
2516
  "Hard",
2517
2517
  "High",
2518
- "High-quality autostretch (16-bit; better gradients)",
2518
+ "High-quality autostretch (24-bit; better gradients)",
2519
2519
  "Image cache size (slots):",
2520
2520
  "Image Quality",
2521
2521
  "Image Viewer",
@@ -1671,15 +1671,15 @@ TRANSLATIONS_AR = {
1671
1671
  "Chinese": "الصينية",
1672
1672
  "Choose Background…": "اختر الخلفية...",
1673
1673
  "Clear": "مسح",
1674
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "حساب التمدد التلقائي على هيستوجرام 16-بت (تدرجات أكثر سلاسة).",
1675
- "Cosmic Clarity folder:": "مجلد Cosmic Clarity:",
1674
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "حساب التمدد التلقائي على هيستوجرام 24-بت (تدرجات أكثر سلاسة).",
1675
+ "Cosmic Clarity folder:": "مجلد Cosmic Clarity:"
1676
1676
  "Customize…": "تخصيص...",
1677
1677
  "Edit custom colors and font": "تحرير الألوان والخطوط المخصصة",
1678
1678
  "English": "الإنجليزية",
1679
1679
  "French": "الفرنسية",
1680
1680
  "German": "الألمانية",
1681
1681
  "GraXpert executable:": "ملف GraXpert التنفيذي:",
1682
- "High-quality autostretch (16-bit; better gradients)": "تمدد تلقائي عالي الجودة (16-بت؛ تدرجات أفضل)",
1682
+ "High-quality autostretch (24-bit; better gradients)": "تمدد تلقائي عالي الجودة (24-بت؛ تدرجات أفضل)",
1683
1683
  "Italian": "الإيطالية",
1684
1684
  "Japanese": "اليابانية",
1685
1685
  "Language changed. Please manually restart the application to apply the new language.": "تم تغيير اللغة. يرجى إعادة تشغيل التطبيق يدويًا لتطبيق اللغة الجديدة.",
@@ -1563,7 +1563,7 @@ TRANSLATIONS_DE = {
1563
1563
  "Chinese": "Chinesisch",
1564
1564
  "Choose Background…": "Hintergrund wählen…",
1565
1565
  "Clear": "Löschen",
1566
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "Autostretch auf einem 16-Bit-Histogramm berechnen (glattere Gradienten).",
1566
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "Autostretch auf einem 24-Bit-Histogramm berechnen (glattere Gradienten).",
1567
1567
  "Cosmic Clarity folder:": "Cosmic Clarity Ordner:",
1568
1568
  "Customize…": "Anpassen…",
1569
1569
  "Edit custom colors and font": "Benutzerdefinierte Farben und Schriftart bearbeiten",
@@ -1571,7 +1571,7 @@ TRANSLATIONS_DE = {
1571
1571
  "French": "Französisch",
1572
1572
  "German": "Deutsch",
1573
1573
  "GraXpert executable:": "GraXpert-Ausführbare Datei:",
1574
- "High-quality autostretch (16-bit; better gradients)": "Hochwertiger Autostretch (16-Bit; bessere Gradienten)",
1574
+ "High-quality autostretch (24-bit; better gradients)": "Hochwertiger Autostretch (24-Bit; bessere Gradienten)",
1575
1575
  "Italian": "Italienisch",
1576
1576
  "Japanese": "Japanisch",
1577
1577
  "Language changed. Please manually restart the application to apply the new language.": "Sprache geändert. Bitte starten Sie die Anwendung manuell neu, um die neue Sprache anzuwenden.",
@@ -2392,7 +2392,7 @@ TRANSLATIONS_ES = {
2392
2392
  "Choose SASP Data Folder": "Elegir Carpeta de Datos SASP",
2393
2393
  "Choose…": "Elegir…",
2394
2394
  "Clear": "Limpiar",
2395
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "Calcular auto-estiramiento en histograma de 16-bit (gradientes más suaves).",
2395
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "Calcular auto-estiramiento en histograma de 24-bit (gradientes más suaves).",
2396
2396
  "Cosmic Clarity": "Cosmic Clarity",
2397
2397
  "Cosmic Clarity Denoise Path:": "Ruta de Cosmic Clarity Denoise:",
2398
2398
  "Cosmic Clarity Executable Path (XL model included)": "Ruta del Ejecutable Cosmic Clarity (modelo XL incluido)",
@@ -2447,7 +2447,7 @@ TRANSLATIONS_ES = {
2447
2447
  "Grid line color:": "Color de línea de cuadrícula:",
2448
2448
  "Hard": "Duro",
2449
2449
  "High": "Alta",
2450
- "High-quality autostretch (16-bit; better gradients)": "Auto-estiramiento de alta calidad (16-bit; mejores gradientes)",
2450
+ "High-quality autostretch (24-bit; better gradients)": "Auto-estiramiento de alta calidad (24-bit; mejores gradientes)",
2451
2451
  "Image Quality": "Calidad de Imagen",
2452
2452
  "Image Viewer": "Visor de Imágenes",
2453
2453
  "Image cache size (slots):": "Tamaño de caché de imagen (slots):",
@@ -2436,7 +2436,7 @@ TRANSLATIONS_FR = {
2436
2436
  "Chinese": "Chinois",
2437
2437
  "Choose Background…": "Choisir l'Arrière-plan…",
2438
2438
  "Clear": "Effacer",
2439
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "Calculer l'auto-étirement sur un histogramme 16-bit (dégradés plus doux).",
2439
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "Calculer l'auto-étirement sur un histogramme 24-bit (dégradés plus doux).",
2440
2440
  "Cosmic Clarity folder:": "Dossier Cosmic Clarity:",
2441
2441
  "Customize…": "Personnaliser…",
2442
2442
  "Dark": "Sombre",
@@ -2454,7 +2454,7 @@ TRANSLATIONS_FR = {
2454
2454
  "German": "Allemand",
2455
2455
  "GraXpert executable:": "Exécutable GraXpert:",
2456
2456
  "High": "Haute",
2457
- "High-quality autostretch (16-bit; better gradients)": "Auto-étirement haute qualité (16-bit; meilleurs dégradés)",
2457
+ "High-quality autostretch (24-bit; better gradients)": "Auto-étirement haute qualité (24-bit; meilleurs dégradés)",
2458
2458
  "Interface": "Interface",
2459
2459
  "Interval (minutes)": "Intervalle (minutes)",
2460
2460
  "Italian": "Italien",
@@ -1750,7 +1750,7 @@ TRANSLATIONS_HI = {
1750
1750
  "Chinese": "चीनी (Chinese)",
1751
1751
  "Choose Background…": "पृष्ठभूमि चुनें…",
1752
1752
  "Clear": "साफ़ करें",
1753
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "16-बिट हिस्टोग्राम पर ऑटोस्ट्रेच की गणना करें (सुचारू ग्रेडिएंट्स)।",
1753
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "24-बिट हिस्टोग्राम पर ऑटोस्ट्रेच की गणना करें (सुचारू ग्रेडिएंट्स)।",
1754
1754
  "Cosmic Clarity folder:": "Cosmic Clarity फ़ोल्डर:",
1755
1755
  "Customize…": "निजीकृत (Customize) करें…",
1756
1756
  "Edit custom colors and font": "कस्टम रंग और फ़ॉन्ट संपादित करें",
@@ -1758,7 +1758,7 @@ TRANSLATIONS_HI = {
1758
1758
  "French": "फ्रेंच (French)",
1759
1759
  "German": "जर्मन (German)",
1760
1760
  "GraXpert executable:": "GraXpert निष्पादन योग्य:",
1761
- "High-quality autostretch (16-bit; better gradients)": "उच्च गुणवत्ता वाला ऑटोस्ट्रेच (16-बिट; बेहतर ग्रेडिएंट्स)",
1761
+ "High-quality autostretch (24-bit; better gradients)": "उच्च गुणवत्ता वाला ऑटोस्ट्रेच (24-बिट; बेहतर ग्रेडिएंट्स)",
1762
1762
  "Italian": "इतालवी (Italian)",
1763
1763
  "Japanese": "जापानी (Japanese)",
1764
1764
  "Language changed. Please manually restart the application to apply the new language.": "भाषा बदल गई है। नई भाषा लागू करने के लिए कृपया एप्लिकेशन को मैन्युअल रूप से पुनरारंभ करें।",
@@ -2462,7 +2462,7 @@ TRANSLATIONS_IT = {
2462
2462
  "Choose SASP Data Folder": "Choose SASP Data Folder",
2463
2463
  "Choose…": "Choose…",
2464
2464
  "Clear": "Cancella",
2465
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "Calcola autostretch su istogramma 16-bit (gradienti più uniformi).",
2465
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "Calcola autostretch su istogramma 24-bit (gradienti più uniformi).",
2466
2466
  "Cosmic Clarity": "Cosmic Clarity",
2467
2467
  "Cosmic Clarity Denoise Path:": "Cosmic Clarity Denoise Path:",
2468
2468
  "Cosmic Clarity Executable Path (XL model included)": "Cosmic Clarity Executable Path (XL model included)",
@@ -2517,7 +2517,7 @@ TRANSLATIONS_IT = {
2517
2517
  "Grid line color:": "Grid line color:",
2518
2518
  "Hard": "Hard",
2519
2519
  "High": "Alto",
2520
- "High-quality autostretch (16-bit; better gradients)": "Autostretch alta qualità (16-bit; gradienti migliori)",
2520
+ "High-quality autostretch (24-bit; better gradients)": "Autostretch alta qualità (24-bit; gradienti migliori)",
2521
2521
  "Image Quality": "Image Quality",
2522
2522
  "Image Viewer": "Image Viewer",
2523
2523
  "Image cache size (slots):": "Image cache size (slots):",
@@ -1679,7 +1679,7 @@ TRANSLATIONS_JA = {
1679
1679
  "Chinese": "中国語",
1680
1680
  "Choose Background…": "背景を選択…",
1681
1681
  "Clear": "消去",
1682
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "16ビットヒストグラムでオートストレッチを計算(より滑らかなグラデーション)。",
1682
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "24ビットヒストグラムでオートストレッチを計算(より滑らかなグラデーション)。",
1683
1683
  "Cosmic Clarity folder:": "Cosmic Clarity フォルダ:",
1684
1684
  "Customize…": "カスタマイズ…",
1685
1685
  "Edit custom colors and font": "カスタムの色とフォントを編集",
@@ -1687,7 +1687,7 @@ TRANSLATIONS_JA = {
1687
1687
  "French": "フランス語",
1688
1688
  "German": "ドイツ語",
1689
1689
  "GraXpert executable:": "GraXpert 実行ファイル:",
1690
- "High-quality autostretch (16-bit; better gradients)": "高品質オートストレッチ(16ビット、より良いグラデーション)",
1690
+ "High-quality autostretch (24-bit; better gradients)": "高品質オートストレッチ(24ビット、より良いグラデーション)",
1691
1691
  "Italian": "イタリア語",
1692
1692
  "Japanese": "日本語",
1693
1693
  "Language changed. Please manually restart the application to apply the new language.": "言語が変更されました。新しい言語を適用するには、アプリを手動で再起動してください。",
@@ -1680,7 +1680,7 @@ TRANSLATIONS_PT = {
1680
1680
  "Chinese": "Chinês",
1681
1681
  "Choose Background…": "Escolher plano de fundo…",
1682
1682
  "Clear": "Limpar",
1683
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "Calcular autostretch em um histograma de 16 bits (gradientes mais suaves).",
1683
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "Calcular autostretch em um histograma de 24 bits (gradientes mais suaves).",
1684
1684
  "Cosmic Clarity folder:": "Pasta Cosmic Clarity:",
1685
1685
  "Customize…": "Personalizar…",
1686
1686
  "Edit custom colors and font": "Editar cores e fontes personalizadas",
@@ -1688,7 +1688,7 @@ TRANSLATIONS_PT = {
1688
1688
  "French": "Francês",
1689
1689
  "German": "Alemão",
1690
1690
  "GraXpert executable:": "Executável GraXpert:",
1691
- "High-quality autostretch (16-bit; better gradients)": "Autostretch de alta qualidade (16 bits; melhores gradientes)",
1691
+ "High-quality autostretch (24-bit; better gradients)": "Autostretch de alta qualidade (24 bits; melhores gradientes)",
1692
1692
  "Italian": "Italiano",
1693
1693
  "Japanese": "Japonês",
1694
1694
  "Language changed. Please manually restart the application to apply the new language.": "Idioma alterado. Reinicie manualmente a aplicação para aplicar o novo idioma.",
@@ -1350,7 +1350,7 @@ TRANSLATIONS_RU = {
1350
1350
  "Chinese": "Китайский",
1351
1351
  "Choose Background…": "Выбрать фон…",
1352
1352
  "Clear": "Очистить",
1353
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "Авто-растяжение по 16-бит гистограмме (плавные градиенты).",
1353
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "Авто-растяжение по 24-бит гистограмме (плавные градиенты).",
1354
1354
  "Cosmic Clarity folder:": "Папка Cosmic Clarity:",
1355
1355
  "Customize…": "Настроить…",
1356
1356
  "Edit custom colors and font": "Редактировать цвета и шрифт",
@@ -1358,7 +1358,7 @@ TRANSLATIONS_RU = {
1358
1358
  "French": "Французский",
1359
1359
  "German": "Немецкий",
1360
1360
  "GraXpert executable:": "Исполняемый файл GraXpert:",
1361
- "High-quality autostretch (16-bit; better gradients)": "Высококачественное авто-растяжение (16-бит)",
1361
+ "High-quality autostretch (24-bit; better gradients)": "Высококачественное авто-растяжение (24-бит)",
1362
1362
  "Italian": "Итальянский",
1363
1363
  "Japanese": "Японский",
1364
1364
  "Language changed. Please manually restart the application to apply the new language.": "Язык изменен. Пожалуйста, перезапустите приложение вручную, чтобы применить новый язык.",
@@ -6463,7 +6463,7 @@ Set it in Preferences → ASTAP executable.</source>
6463
6463
  <translation>مسح</translation>
6464
6464
  </message>
6465
6465
  <message>
6466
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
6466
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
6467
6467
  <translation>حساب التمدد التلقائي على هيستوجرام 16-بت (تدرجات أكثر سلاسة).</translation>
6468
6468
  </message>
6469
6469
  <message>
@@ -6495,7 +6495,7 @@ Set it in Preferences → ASTAP executable.</source>
6495
6495
  <translation>ملف GraXpert التنفيذي:</translation>
6496
6496
  </message>
6497
6497
  <message>
6498
- <source>High-quality autostretch (16-bit; better gradients)</source>
6498
+ <source>High-quality autostretch (24-bit; better gradients)</source>
6499
6499
  <translation>تمدد تلقائي عالي الجودة (16-بت؛ تدرجات أفضل)</translation>
6500
6500
  </message>
6501
6501
  <message>
@@ -6037,8 +6037,8 @@ Legen Sie ihn in Einstellungen → ASTAP-Programmdatei fest.</translation>
6037
6037
  <translation>Löschen</translation>
6038
6038
  </message>
6039
6039
  <message>
6040
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
6041
- <translation>Autostretch auf einem 16-Bit-Histogramm berechnen (glattere Gradienten).</translation>
6040
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
6041
+ <translation>Autostretch auf einem 24-Bit-Histogramm berechnen (glattere Gradienten).</translation>
6042
6042
  </message>
6043
6043
  <message>
6044
6044
  <source>Cosmic Clarity folder:</source>
@@ -6069,8 +6069,8 @@ Legen Sie ihn in Einstellungen → ASTAP-Programmdatei fest.</translation>
6069
6069
  <translation>GraXpert-Ausführbare Datei:</translation>
6070
6070
  </message>
6071
6071
  <message>
6072
- <source>High-quality autostretch (16-bit; better gradients)</source>
6073
- <translation>Hochwertiger Autostretch (16-Bit; bessere Gradienten)</translation>
6072
+ <source>High-quality autostretch (24-bit; better gradients)</source>
6073
+ <translation>Hochwertiger Autostretch (24-Bit; bessere Gradienten)</translation>
6074
6074
  </message>
6075
6075
  <message>
6076
6076
  <source>Italian</source>
@@ -9236,7 +9236,7 @@ Configúrelo en Preferencias → Ejecutable ASTAP.</translation>
9236
9236
  <translation>Limpiar</translation>
9237
9237
  </message>
9238
9238
  <message>
9239
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
9239
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
9240
9240
  <translation>Calcular auto-estiramiento en histograma de 16-bit (gradientes más suaves).</translation>
9241
9241
  </message>
9242
9242
  <message>
@@ -9458,7 +9458,7 @@ Configúrelo en Preferencias → Ejecutable ASTAP.</translation>
9458
9458
  <translation>Alta</translation>
9459
9459
  </message>
9460
9460
  <message>
9461
- <source>High-quality autostretch (16-bit; better gradients)</source>
9461
+ <source>High-quality autostretch (24-bit; better gradients)</source>
9462
9462
  <translation>Auto-estiramiento de alta calidad (16-bit; mejores gradientes)</translation>
9463
9463
  </message>
9464
9464
  <message>
@@ -9402,7 +9402,7 @@ Définissez-le dans Préférences → Exécutable ASTAP.</translation>
9402
9402
  <translation>Effacer</translation>
9403
9403
  </message>
9404
9404
  <message>
9405
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
9405
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
9406
9406
  <translation>Calculer l'auto-étirement sur un histogramme 16-bit (dégradés plus doux).</translation>
9407
9407
  </message>
9408
9408
  <message>
@@ -9474,7 +9474,7 @@ Définissez-le dans Préférences → Exécutable ASTAP.</translation>
9474
9474
  <translation>Haute</translation>
9475
9475
  </message>
9476
9476
  <message>
9477
- <source>High-quality autostretch (16-bit; better gradients)</source>
9477
+ <source>High-quality autostretch (24-bit; better gradients)</source>
9478
9478
  <translation>Auto-étirement haute qualité (16-bit; meilleurs dégradés)</translation>
9479
9479
  </message>
9480
9480
  <message>
@@ -6793,7 +6793,7 @@ Set it in Preferences → ASTAP executable.</source>
6793
6793
  <translation>साफ़ करें</translation>
6794
6794
  </message>
6795
6795
  <message>
6796
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
6796
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
6797
6797
  <translation>16-बिट हिस्टोग्राम पर ऑटोस्ट्रेच की गणना करें (सुचारू ग्रेडिएंट्स)।</translation>
6798
6798
  </message>
6799
6799
  <message>
@@ -6825,7 +6825,7 @@ Set it in Preferences → ASTAP executable.</source>
6825
6825
  <translation>GraXpert निष्पादन योग्य:</translation>
6826
6826
  </message>
6827
6827
  <message>
6828
- <source>High-quality autostretch (16-bit; better gradients)</source>
6828
+ <source>High-quality autostretch (24-bit; better gradients)</source>
6829
6829
  <translation>उच्च गुणवत्ता वाला ऑटोस्ट्रेच (16-बिट; बेहतर ग्रेडिएंट्स)</translation>
6830
6830
  </message>
6831
6831
  <message>
@@ -8037,8 +8037,8 @@ Impostalo in Preferenze → Eseguibile ASTAP.</translation>
8037
8037
  <translation>Cancella</translation>
8038
8038
  </message>
8039
8039
  <message>
8040
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
8041
- <translation>Calcola autostretch su istogramma 16-bit (gradienti più uniformi).</translation>
8040
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
8041
+ <translation>Calcola autostretch su istogramma 24-bit (gradienti più uniformi).</translation>
8042
8042
  </message>
8043
8043
  <message>
8044
8044
  <source>Cosmic Clarity folder:</source>
@@ -8069,8 +8069,8 @@ Impostalo in Preferenze → Eseguibile ASTAP.</translation>
8069
8069
  <translation>Eseguibile GraXpert:</translation>
8070
8070
  </message>
8071
8071
  <message>
8072
- <source>High-quality autostretch (16-bit; better gradients)</source>
8073
- <translation>Autostretch alta qualità (16-bit; gradienti migliori)</translation>
8072
+ <source>High-quality autostretch (24-bit; better gradients)</source>
8073
+ <translation>Autostretch alta qualità (24-bit; gradienti migliori)</translation>
8074
8074
  </message>
8075
8075
  <message>
8076
8076
  <source>Italian</source>
@@ -6509,7 +6509,7 @@ Set it in Preferences → ASTAP executable.</source>
6509
6509
  <translation>消去</translation>
6510
6510
  </message>
6511
6511
  <message>
6512
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
6512
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
6513
6513
  <translation>16ビットヒストグラムでオートストレッチを計算(より滑らかなグラデーション)。</translation>
6514
6514
  </message>
6515
6515
  <message>
@@ -6541,7 +6541,7 @@ Set it in Preferences → ASTAP executable.</source>
6541
6541
  <translation>GraXpert 実行ファイル:</translation>
6542
6542
  </message>
6543
6543
  <message>
6544
- <source>High-quality autostretch (16-bit; better gradients)</source>
6544
+ <source>High-quality autostretch (24-bit; better gradients)</source>
6545
6545
  <translation>高品質オートストレッチ(16ビット、より良いグラデーション)</translation>
6546
6546
  </message>
6547
6547
  <message>
@@ -6505,7 +6505,7 @@ Defina-o em Preferências → Executável do ASTAP.</translation>
6505
6505
  <translation>Limpar</translation>
6506
6506
  </message>
6507
6507
  <message>
6508
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
6508
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
6509
6509
  <translation>Calcular autostretch em um histograma de 16 bits (gradientes mais suaves).</translation>
6510
6510
  </message>
6511
6511
  <message>
@@ -6537,7 +6537,7 @@ Defina-o em Preferências → Executável do ASTAP.</translation>
6537
6537
  <translation>Executável GraXpert:</translation>
6538
6538
  </message>
6539
6539
  <message>
6540
- <source>High-quality autostretch (16-bit; better gradients)</source>
6540
+ <source>High-quality autostretch (24-bit; better gradients)</source>
6541
6541
  <translation>Autostretch de alta qualidade (16 bits; melhores gradientes)</translation>
6542
6542
  </message>
6543
6543
  <message>
@@ -5093,7 +5093,7 @@ Ctrl+Клик на гистограмме для точки pivot.</translation>
5093
5093
  <translation>Очистить</translation>
5094
5094
  </message>
5095
5095
  <message>
5096
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
5096
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
5097
5097
  <translation>Авто-растяжение по 16-бит гистограмме (плавные градиенты).</translation>
5098
5098
  </message>
5099
5099
  <message>
@@ -5125,7 +5125,7 @@ Ctrl+Клик на гистограмме для точки pivot.</translation>
5125
5125
  <translation>Исполняемый файл GraXpert:</translation>
5126
5126
  </message>
5127
5127
  <message>
5128
- <source>High-quality autostretch (16-bit; better gradients)</source>
5128
+ <source>High-quality autostretch (24-bit; better gradients)</source>
5129
5129
  <translation>Высококачественное авто-растяжение (16-бит)</translation>
5130
5130
  </message>
5131
5131
  <message>
@@ -6757,7 +6757,7 @@ Iweke katika Mapendeleo → ASTAP inayoweza kutekelezwa.</translation>
6757
6757
  <translation>Futa</translation>
6758
6758
  </message>
6759
6759
  <message>
6760
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
6760
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
6761
6761
  <translation>Kokotoa autostretch kwenye histogram ya bit 16 (gradient laini zaidi).</translation>
6762
6762
  </message>
6763
6763
  <message>
@@ -6789,7 +6789,7 @@ Iweke katika Mapendeleo → ASTAP inayoweza kutekelezwa.</translation>
6789
6789
  <translation>GraXpert inayoweza kutekelezwa:</translation>
6790
6790
  </message>
6791
6791
  <message>
6792
- <source>High-quality autostretch (16-bit; better gradients)</source>
6792
+ <source>High-quality autostretch (24-bit; better gradients)</source>
6793
6793
  <translation>Autostretch ya hali ya juu (bit 16; gradient bora zaidi)</translation>
6794
6794
  </message>
6795
6795
  <message>
@@ -9216,7 +9216,7 @@ Set it in Preferences → ASTAP executable.</source>
9216
9216
  <translation>Очистити</translation>
9217
9217
  </message>
9218
9218
  <message>
9219
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
9219
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
9220
9220
  <translation>Обчислювати авто-стретч на 16-бітній гістограмі (плавніші градієнти).</translation>
9221
9221
  </message>
9222
9222
  <message>
@@ -9438,7 +9438,7 @@ Set it in Preferences → ASTAP executable.</source>
9438
9438
  <translation>Висока</translation>
9439
9439
  </message>
9440
9440
  <message>
9441
- <source>High-quality autostretch (16-bit; better gradients)</source>
9441
+ <source>High-quality autostretch (24-bit; better gradients)</source>
9442
9442
  <translation>Високоякісний авто-стретч (16-біт; кращі градієнти)</translation>
9443
9443
  </message>
9444
9444
  <message>
@@ -6805,7 +6805,7 @@ Set it in Preferences → ASTAP executable.</source>
6805
6805
  <translation>清除</translation>
6806
6806
  </message>
6807
6807
  <message>
6808
- <source>Compute autostretch on a 16-bit histogram (smoother gradients).</source>
6808
+ <source>Compute autostretch on a 24-bit histogram (smoother gradients).</source>
6809
6809
  <translation>在 16 位直方图上计算自动拉伸(更平滑的渐变)。</translation>
6810
6810
  </message>
6811
6811
  <message>
@@ -6837,7 +6837,7 @@ Set it in Preferences → ASTAP executable.</source>
6837
6837
  <translation>GraXpert 可执行文件:</translation>
6838
6838
  </message>
6839
6839
  <message>
6840
- <source>High-quality autostretch (16-bit; better gradients)</source>
6840
+ <source>High-quality autostretch (24-bit; better gradients)</source>
6841
6841
  <translation>高质量自动拉伸(16 位;更好的渐变)</translation>
6842
6842
  </message>
6843
6843
  <message>
@@ -1741,7 +1741,7 @@ TRANSLATIONS_SW = {
1741
1741
  "Chinese": "Kichina",
1742
1742
  "Choose Background…": "Chagua Mandharinyuma…",
1743
1743
  "Clear": "Futa",
1744
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "Kokotoa autostretch kwenye histogram ya bit 16 (gradient laini zaidi).",
1744
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "Kokotoa autostretch kwenye histogram ya bit 24 (gradient laini zaidi).",
1745
1745
  "Cosmic Clarity folder:": "Folda ya Cosmic Clarity:",
1746
1746
  "Customize…": "Customize…",
1747
1747
  "Edit custom colors and font": "Hariri rangi na font maalum",
@@ -1749,7 +1749,7 @@ TRANSLATIONS_SW = {
1749
1749
  "French": "Kifaransa",
1750
1750
  "German": "Kijerumani",
1751
1751
  "GraXpert executable:": "GraXpert inayoweza kutekelezwa:",
1752
- "High-quality autostretch (16-bit; better gradients)": "Autostretch ya hali ya juu (bit 16; gradient bora zaidi)",
1752
+ "High-quality autostretch (24-bit; better gradients)": "Autostretch ya hali ya juu (bit 24; gradient bora zaidi)",
1753
1753
  "Italian": "Kiitaliano",
1754
1754
  "Japanese": "Kijapani",
1755
1755
  "Language changed. Please manually restart the application to apply the new language.": "Lugha imebadilishwa. Tafadhali anzisha upya programu wewe mwenyewe ili kutumia lugha mpya.",
@@ -2385,7 +2385,7 @@ TRANSLATIONS_UK = {
2385
2385
  "Choose SASP Data Folder": "Вибрати папку даних SASP",
2386
2386
  "Choose…": "Вибрати…",
2387
2387
  "Clear": "Очистити",
2388
- "Compute autostretch on a 16-bit histogram (smoother gradients).": "Обчислювати авто-стретч на 16-бітній гістограмі (плавніші градієнти).",
2388
+ "Compute autostretch on a 24-bit histogram (smoother gradients).": "Обчислювати авто-стретч на 24-бітній гістограмі (плавніші градієнти).",
2389
2389
  "Cosmic Clarity": "Cosmic Clarity",
2390
2390
  "Cosmic Clarity Denoise Path:": "Шлях Cosmic Clarity Denoise:",
2391
2391
  "Cosmic Clarity Executable Path (XL model included)": "Шлях до файлу Cosmic Clarity (модель XL включена)",
@@ -2440,7 +2440,7 @@ TRANSLATIONS_UK = {
2440
2440
  "Grid line color:": "Колір ліній сітки:",
2441
2441
  "Hard": "Жорсткий",
2442
2442
  "High": "Висока",
2443
- "High-quality autostretch (16-bit; better gradients)": "Високоякісний авто-стретч (16-біт; кращі градієнти)",
2443
+ "High-quality autostretch (24-bit; better gradients)": "Високоякісний авто-стретч (24-біт; кращі градієнти)",
2444
2444
  "Image Quality": "Якість зображення",
2445
2445
  "Image Viewer": "Переглядач зображень",
2446
2446
  "Image cache size (slots):": "Розмір кешу зображень (слоти):",