Skip to content

Commit

Permalink
Merge pull request #892 from paukert/ui-improvement-localization
Browse files Browse the repository at this point in the history
Small UI improvement, localization
  • Loading branch information
fvacek authored Apr 23, 2023
2 parents 1c2272c + 803a0d5 commit ff43dc6
Show file tree
Hide file tree
Showing 9 changed files with 1,190 additions and 973 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ void ClassItem::updateToolTip()
for(auto *cl : clst) {
sl << cl->data().className();
}
tool_tip += tr("clash with: %1<br/>").arg(sl.join(", "));
tool_tip += tr(", clash with: %1<br/>").arg(sl.join(", "));
}
tool_tip += "</body></html>";
tool_tip.replace(' ', "&nbsp;");
Expand Down
4 changes: 2 additions & 2 deletions quickevent/app/quickevent/plugins/Event/src/eventplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ bool EventPlugin::createEvent(const QString &event_name, const QVariantMap &even
qfd::Dialog dlg(fwk);
dlg.setButtons(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
EventDialogWidget *event_w = new EventDialogWidget();
event_w->setWindowTitle("Create event");
event_w->setWindowTitle(tr("Create event"));
event_w->setEventId(event_id);
event_w->loadParams(new_params);
dlg.setCentralWidget(event_w);
Expand Down Expand Up @@ -859,7 +859,7 @@ void EventPlugin::editEvent()
qfd::Dialog dlg(fwk);
dlg.setButtons(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
EventDialogWidget *event_w = new EventDialogWidget();
event_w->setWindowTitle("Edit event");
event_w->setWindowTitle(tr("Edit event"));
event_w->setEventId(eventName());
event_w->setEventIdEditable(false);
event_w->loadParams(eventConfig()->value("event").toMap());
Expand Down
311 changes: 171 additions & 140 deletions quickevent/app/quickevent/quickevent-cs_CZ.ts

Large diffs are not rendered by default.

309 changes: 170 additions & 139 deletions quickevent/app/quickevent/quickevent-fr_FR.ts

Large diffs are not rendered by default.

307 changes: 169 additions & 138 deletions quickevent/app/quickevent/quickevent-nb_NO.ts

Large diffs are not rendered by default.

307 changes: 169 additions & 138 deletions quickevent/app/quickevent/quickevent-nl_BE.ts

Large diffs are not rendered by default.

307 changes: 169 additions & 138 deletions quickevent/app/quickevent/quickevent-pl_PL.ts

Large diffs are not rendered by default.

307 changes: 169 additions & 138 deletions quickevent/app/quickevent/quickevent-ru_RU.ts

Large diffs are not rendered by default.

309 changes: 170 additions & 139 deletions quickevent/app/quickevent/quickevent-uk_UA.ts

Large diffs are not rendered by default.

0 comments on commit ff43dc6

Please sign in to comment.