Skip to content

Commit ff43dc6

Browse files
authored
Merge pull request #892 from paukert/ui-improvement-localization
Small UI improvement, localization
2 parents 1c2272c + 803a0d5 commit ff43dc6

File tree

9 files changed

+1190
-973
lines changed

9 files changed

+1190
-973
lines changed

quickevent/app/quickevent/plugins/Classes/src/drawing/classitem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ void ClassItem::updateToolTip()
259259
for(auto *cl : clst) {
260260
sl << cl->data().className();
261261
}
262-
tool_tip += tr("clash with: %1<br/>").arg(sl.join(", "));
262+
tool_tip += tr(", clash with: %1<br/>").arg(sl.join(", "));
263263
}
264264
tool_tip += "</body></html>";
265265
tool_tip.replace(' ', "&nbsp;");

quickevent/app/quickevent/plugins/Event/src/eventplugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ bool EventPlugin::createEvent(const QString &event_name, const QVariantMap &even
757757
qfd::Dialog dlg(fwk);
758758
dlg.setButtons(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
759759
EventDialogWidget *event_w = new EventDialogWidget();
760-
event_w->setWindowTitle("Create event");
760+
event_w->setWindowTitle(tr("Create event"));
761761
event_w->setEventId(event_id);
762762
event_w->loadParams(new_params);
763763
dlg.setCentralWidget(event_w);
@@ -859,7 +859,7 @@ void EventPlugin::editEvent()
859859
qfd::Dialog dlg(fwk);
860860
dlg.setButtons(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
861861
EventDialogWidget *event_w = new EventDialogWidget();
862-
event_w->setWindowTitle("Edit event");
862+
event_w->setWindowTitle(tr("Edit event"));
863863
event_w->setEventId(eventName());
864864
event_w->setEventIdEditable(false);
865865
event_w->loadParams(eventConfig()->value("event").toMap());

quickevent/app/quickevent/quickevent-cs_CZ.ts

Lines changed: 171 additions & 140 deletions
Large diffs are not rendered by default.

quickevent/app/quickevent/quickevent-fr_FR.ts

Lines changed: 170 additions & 139 deletions
Large diffs are not rendered by default.

quickevent/app/quickevent/quickevent-nb_NO.ts

Lines changed: 169 additions & 138 deletions
Large diffs are not rendered by default.

quickevent/app/quickevent/quickevent-nl_BE.ts

Lines changed: 169 additions & 138 deletions
Large diffs are not rendered by default.

quickevent/app/quickevent/quickevent-pl_PL.ts

Lines changed: 169 additions & 138 deletions
Large diffs are not rendered by default.

quickevent/app/quickevent/quickevent-ru_RU.ts

Lines changed: 169 additions & 138 deletions
Large diffs are not rendered by default.

quickevent/app/quickevent/quickevent-uk_UA.ts

Lines changed: 170 additions & 139 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)