Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
PimCommon
Commits
270c25ff
Commit
270c25ff
authored
Aug 13, 2021
by
Laurent Montel
😁
Browse files
Add i18n context
parent
38e60865
Pipeline
#74571
passed with stage
in 11 minutes and 59 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/pimcommon/templatewidgets/templateeditdialog.cpp
View file @
270c25ff
...
...
@@ -25,7 +25,7 @@ using namespace PimCommon;
TemplateEditDialog
::
TemplateEditDialog
(
QWidget
*
parent
,
bool
defaultTemplate
)
:
QDialog
(
parent
)
{
setWindowTitle
(
defaultTemplate
?
i18n
(
"Default template"
)
:
i18n
(
"Template"
));
setWindowTitle
(
defaultTemplate
?
i18n
c
(
"@title:window"
,
"Default template"
)
:
i18n
c
(
"@title:window"
,
"Template"
));
auto
mainLayout
=
new
QVBoxLayout
(
this
);
QDialogButtonBox
*
buttonBox
=
nullptr
;
if
(
defaultTemplate
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment