Spreadsheet: Update UI strings for consistency

This commit is contained in:
Max Wilfinger
2025-06-29 13:14:43 +02:00
committed by Chris Hennes
parent b86a553423
commit c5ddbb8a16
14 changed files with 87 additions and 87 deletions

View File

@@ -109,7 +109,7 @@ ZoomableView::ZoomableView(Ui::Sheet* ui)
connect(ui->zoomMinus, &QToolButton::clicked, this, &ZoomableView::zoomOut);
connect(ui->zoomTB, &QToolButton::clicked, ui->zoomSlider, [zoomSlider = ui->zoomSlider]() {
const QString title = tr("Zoom level"), label = tr("New zoom level:");
const QString title = tr("Zoom Level"), label = tr("New zoom level:");
constexpr int min = ZoomableView::min, max = ZoomableView::max, step = 10;
const int val = zoomSlider->value();
bool ok;