diff options
author | saturneric <[email protected]> | 2024-01-16 13:35:59 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-16 13:35:59 +0000 |
commit | 620ae9e7c1a8b2db2515c080416cb592066e5fec (patch) | |
tree | 900f3e55118aa2a5049d99dd743d3e595016fc7b /src/ui/widgets/PlainTextEditorPage.cpp | |
parent | fix: make task and threading system safer (diff) | |
download | GpgFrontend-620ae9e7c1a8b2db2515c080416cb592066e5fec.tar.gz GpgFrontend-620ae9e7c1a8b2db2515c080416cb592066e5fec.zip |
refactor: remove libgettext from project
Diffstat (limited to 'src/ui/widgets/PlainTextEditorPage.cpp')
-rw-r--r-- | src/ui/widgets/PlainTextEditorPage.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ui/widgets/PlainTextEditorPage.cpp b/src/ui/widgets/PlainTextEditorPage.cpp index 6bd5ba74..7d951006 100644 --- a/src/ui/widgets/PlainTextEditorPage.cpp +++ b/src/ui/widgets/PlainTextEditorPage.cpp @@ -51,7 +51,7 @@ PlainTextEditorPage::PlainTextEditorPage(QString file_path, QWidget *parent) this->setAttribute(Qt::WA_DeleteOnClose); - this->ui_->characterLabel->setText(_("0 character")); + this->ui_->characterLabel->setText(tr("0 character")); this->ui_->lfLabel->setHidden(true); this->ui_->encodingLabel->setText("Unicode"); @@ -60,7 +60,7 @@ PlainTextEditorPage::PlainTextEditorPage(QString file_path, QWidget *parent) if (!read_done_) return; auto text = ui_->textPage->document()->toPlainText(); - auto str = QString(_("%1 character(s)")).arg(text.size()); + auto str = tr("%1 character(s)").arg(text.size()); this->ui_->characterLabel->setText(str); }); @@ -69,7 +69,7 @@ PlainTextEditorPage::PlainTextEditorPage(QString file_path, QWidget *parent) ui_->loadingLabel->setHidden(true); } else { read_done_ = false; - ui_->loadingLabel->setText(_("Loading...")); + ui_->loadingLabel->setText(tr("Loading...")); ui_->loadingLabel->setHidden(false); } } @@ -83,8 +83,8 @@ QPlainTextEdit *PlainTextEditorPage::GetTextPage() { return ui_->textPage; } void PlainTextEditorPage::NotifyFileSaved() { this->is_crlf_ = false; - this->ui_->lfLabel->setText(_("lf")); - this->ui_->encodingLabel->setText(_("UTF-8")); + this->ui_->lfLabel->setText(tr("lf")); + this->ui_->encodingLabel->setText(tr("UTF-8")); } void PlainTextEditorPage::SetFilePath(const QString &filePath) { @@ -195,7 +195,7 @@ void PlainTextEditorPage::slot_insert_text(QByteArray bytes_data) { this->GetTextPage()->insertPlainText(bytes_data); auto text = this->GetTextPage()->toPlainText(); - auto str = QString(_("%1 character(s)")).arg(text.size()); + auto str = tr("%1 character(s)").arg(text.size()); this->ui_->characterLabel->setText(str); QTimer::singleShot(25, this, &PlainTextEditorPage::SignalUIBytesDisplayed); |