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
libksieve
Commits
292958af
Commit
292958af
authored
Aug 13, 2021
by
Laurent Montel
😁
Browse files
Add i18n context
parent
7d648c9c
Pipeline
#74572
passed with stage
in 17 minutes and 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/ksieveui/templates/sievetemplateeditdialog.cpp
View file @
292958af
...
...
@@ -32,7 +32,7 @@ using namespace KSieveUi;
SieveTemplateEditDialog
::
SieveTemplateEditDialog
(
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
Supports
Markdown
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