Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion Orange/widgets/utils/textimport.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

right click --> right-click

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
Expand Down
1 change: 1 addition & 0 deletions i18n/si/msgs.jaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

right click --> right-click

Column type: Vrsta podatka
-error-overlay: false
-error-text-label: false
Expand Down
Loading