aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git/gitsubmiteditorwidget.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2023-02-14 16:14:08 +0100
committerEike Ziller <eike.ziller@qt.io>2023-02-15 12:45:48 +0000
commit379bf65e966f257175bb37122d333623d830d91e (patch)
tree21ec50117296672c6e8b9f94601c67a99156d4a3 /src/plugins/git/gitsubmiteditorwidget.cpp
parentb2815c39b1508c2b50d382d76416725c4662dc5b (diff)
Some fixes in translated strings
- doesn't make sense to translate "%1" - showPreprocessedFile: "reason" contains full stop, put at the end - add missing closing > - remove whitespace at the end of translated string - added missing quotes and full stops - Remove some control text from tr Change-Id: I5537c3d12d038e25e2209af1198129fbf959b43c Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/plugins/git/gitsubmiteditorwidget.cpp')
-rw-r--r--src/plugins/git/gitsubmiteditorwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/gitsubmiteditorwidget.cpp b/src/plugins/git/gitsubmiteditorwidget.cpp
index a19d6e8758..65bc5beab4 100644
--- a/src/plugins/git/gitsubmiteditorwidget.cpp
+++ b/src/plugins/git/gitsubmiteditorwidget.cpp
@@ -40,7 +40,7 @@ public:
repositoryLabel = new QLabel(Tr::tr("repository"));
branchLabel = new QLabel(Tr::tr("branch")); // FIXME: Isn't this overwritten soon?
- showHeadLabel = new QLabel(Tr::tr("<a href=\"head\">Show HEAD</a>")); // FIXME: Simplify string in tr()
+ showHeadLabel = new QLabel("<a href=\"head\">" + Tr::tr("Show HEAD") + "</a>");
authorLineEdit = new QLineEdit;
authorLineEdit->setObjectName("authorLineEdit");