Added self-test "lifetime hours" wrapping behavior to the column header tooltip.

This commit is contained in:
Alexander Shaduri
2024-12-26 13:07:24 +04:00
parent a254c17fcb
commit 515bf11c3d
+2 -2
View File
@@ -1465,7 +1465,7 @@ void GscInfoWindow::fill_ui_self_test_log(const StoragePropertyRepository& prope
model_columns.add(columns_->self_test_log_table_columns.hours);
num_tree_col = app_gtkmm_create_tree_view_column(columns_->self_test_log_table_columns.hours, *treeview,
_("Lifetime hours"), _("During which hour of the drive's (powered on) lifetime did the test complete (or abort)"), true);
_("Lifetime hours"), _("Hour of the drive's powered-on lifetime when the test completed or aborted.\nThe value wraps after 36535 hours."), true);
model_columns.add(columns_->self_test_log_table_columns.lba);
num_tree_col = app_gtkmm_create_tree_view_column(columns_->self_test_log_table_columns.lba, *treeview,
@@ -1572,7 +1572,7 @@ void GscInfoWindow::fill_ui_ata_error_log(const StoragePropertyRepository& prope
model_columns.add(columns_->error_log_table_columns.hours);
num_tree_col = app_gtkmm_create_tree_view_column(columns_->error_log_table_columns.hours, *treeview,
_("Lifetime hours"), _("During which hour of the drive's (powered on) lifetime did the error happen."), true);
_("Lifetime hours"), _("Hour of the drive's powered-on lifetime when the error occurred"), true);
model_columns.add(columns_->error_log_table_columns.state);
num_tree_col = app_gtkmm_create_tree_view_column(columns_->error_log_table_columns.state, *treeview,