diff --git a/Orange/widgets/utils/textimport.py b/Orange/widgets/utils/textimport.py index 0a841353e62..3418fa34f3c 100644 --- a/Orange/widgets/utils/textimport.py +++ b/Orange/widgets/utils/textimport.py @@ -704,7 +704,16 @@ def __init__(self, *args, **kwargs): self.column_type_edit_cb.setCurrentIndex(-1) form.addRow(QFrame(frameShape=QFrame.HLine)) - form.addRow("Column type", self.column_type_edit_cb) + cb_hint = QHBoxLayout() + cb_hint.addWidget(self.column_type_edit_cb) + hint = QLabel( + "Hint: right click on the row or column header for additional options.") + font = hint.font() + font.setPointSizeF(0.9 * font.pointSizeF()) + hint.setFont(font) + cb_hint.addWidget(hint) + form.addRow("Column type", cb_hint) + layout.addWidget(self.dataview) # Overlay error message widget in the bottom left corner of the data # view diff --git a/i18n/si/msgs.jaml b/i18n/si/msgs.jaml index a79e1acf8b2..d10ea1fbfad 100644 --- a/i18n/si/msgs.jaml +++ b/i18n/si/msgs.jaml @@ -13171,6 +13171,7 @@ widgets/utils/textimport.py: separator: false Ignore: Izpusti The column will not be loaded: Stolpca ni mogoče naložiti + 'Hint: right click on the row or column header for additional options.': Namig: desni klik na glavo vrstice ali stolpca pokaže dodatne možnosti. Column type: Vrsta podatka -error-overlay: false -error-text-label: false