diff --git a/sohstationviewer/view/main_window.py b/sohstationviewer/view/main_window.py index 2288193c27fa49c7d22611fe5c47dfaab849f286..93064bebf4a546a4bb6ee06e9c3e54cca6c975f0 100755 --- a/sohstationviewer/view/main_window.py +++ b/sohstationviewer/view/main_window.py @@ -494,7 +494,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow): raise Exception(msg) self.data_type = 'RT130' elif self.from_data_card_check_box.isChecked(): - # When "From Data Card" checkbox is checked, no sub directories + # When "From Memory Card" checkbox is checked, no sub directories # displayed in File List box. The current dir (root_dir) will be # the only one of the selected dir for user to start processing # from. @@ -508,7 +508,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow): else: self.list_of_dir = [root_dir.joinpath('sdata')] else: - # When "From Data Card" checkbox is checked, sub directories of the + # When "From Memory Card" checkbox is checked, sub directories of the # current dir (root_dir) will be displayed in File List box. # User can select one or more sub-directories to process from. self.list_of_dir = [ @@ -950,7 +950,7 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow): self.open_files_list.addItem(FileListItem(rt130_das)) elif self.from_data_card_check_box.isChecked(): - self.open_files_list.addItem('Data Card') + self.open_files_list.addItem('Memory Card') self.tracking_info_text_browser.setText( "Please select the card by clicking on button " "'Main Data Directory'.") diff --git a/sohstationviewer/view/ui/main_ui.py b/sohstationviewer/view/ui/main_ui.py index 3faa3ce6e03a48ca838834225f14b1f05b19ee7e..a9a97a7e1d4c87268590ab5c54e1e92d280c08c6 100755 --- a/sohstationviewer/view/ui/main_ui.py +++ b/sohstationviewer/view/ui/main_ui.py @@ -404,7 +404,7 @@ class UIMainWindow(object): read_option_grid = QGridLayout() left_layout.addLayout(read_option_grid) self.from_data_card_check_box = QCheckBox( - 'From Data Card', self.central_widget) + 'From Memory Card', self.central_widget) read_option_grid.addWidget(self.from_data_card_check_box, 0, 0, 1, 2) self.replot_button = QPushButton('RePlot', self.central_widget)