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
KMail
Commits
6dcef0ec
Commit
6dcef0ec
authored
Oct 04, 2021
by
Laurent Montel
😁
Browse files
Add dialog label
parent
795fc0a8
Pipeline
#84818
failed with stage
in 4 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/configuredialog/configurecomposerpage.cpp
View file @
6dcef0ec
...
...
@@ -666,6 +666,7 @@ ComposerPageSubjectTab::ComposerPageSubjectTab(QWidget *parent)
new
PimCommon
::
SimpleStringListEditor
(
group
,
buttonCode
,
i18n
(
"A&dd..."
),
i18n
(
"Re&move"
),
i18n
(
"Mod&ify..."
),
i18n
(
"Enter new reply prefix:"
));
mReplyListEditor
->
setRemoveDialogLabel
(
i18n
(
"Do you want to remove reply prefix?"
));
connect
(
mReplyListEditor
,
&
PimCommon
::
SimpleStringListEditor
::
changed
,
this
,
&
ConfigModuleTab
::
slotEmitChanged
);
mReplyListEditor
->
setAddDialogLabel
(
i18n
(
"Reply Prefix:"
));
// row 2: "replace [...]" check box:
mReplaceReplyPrefixCheck
=
new
QCheckBox
(
MessageCore
::
MessageCoreSettings
::
self
()
->
replaceReplyPrefixItem
()
->
label
(),
group
);
...
...
@@ -690,6 +691,7 @@ ComposerPageSubjectTab::ComposerPageSubjectTab(QWidget *parent)
mForwardListEditor
=
new
PimCommon
::
SimpleStringListEditor
(
group
,
buttonCode
,
i18n
(
"Add..."
),
i18n
(
"Remo&ve"
),
i18n
(
"Modify..."
),
i18n
(
"Enter new forward prefix:"
));
mForwardListEditor
->
setRemoveDialogLabel
(
i18n
(
"Do you want to remove forward prefix?"
));
mForwardListEditor
->
setAddDialogLabel
(
i18n
(
"Forward Prefix:"
));
connect
(
mForwardListEditor
,
&
PimCommon
::
SimpleStringListEditor
::
changed
,
this
,
&
ConfigModuleTab
::
slotEmitChanged
);
// row 3: "replace [...]" check box:
...
...
@@ -751,6 +753,7 @@ ComposerPageCharsetTab::ComposerPageCharsetTab(QWidget *parent)
i18n
(
"&Modify..."
),
i18n
(
"Enter charset:"
));
mCharsetListEditor
->
setRemoveDialogLabel
(
i18n
(
"Do you want to remove this selected charset?"
));
mCharsetListEditor
->
setAddDialogLabel
(
i18n
(
"Add Charset:"
));
mCharsetListEditor
->
setUpDownAutoRepeat
(
true
);
connect
(
mCharsetListEditor
,
&
PimCommon
::
SimpleStringListEditor
::
changed
,
this
,
&
ConfigModuleTab
::
slotEmitChanged
);
...
...
@@ -1128,6 +1131,7 @@ ComposerPageAttachmentsTab::ComposerPageAttachmentsTab(QWidget *parent)
mAttachWordsListEditor
=
new
PimCommon
::
SimpleStringListEditor
(
this
,
buttonCode
,
i18n
(
"A&dd..."
),
i18n
(
"Re&move"
),
i18n
(
"Mod&ify..."
),
i18n
(
"Enter new key word:"
));
mAttachWordsListEditor
->
setRemoveDialogLabel
(
i18n
(
"Do you want to remove this attachment word?"
));
mAttachWordsListEditor
->
setAddDialogLabel
(
i18n
(
"Attachment Word:"
));
connect
(
mAttachWordsListEditor
,
&
PimCommon
::
SimpleStringListEditor
::
changed
,
this
,
&
ConfigModuleTab
::
slotEmitChanged
);
vlay
->
addWidget
(
mAttachWordsListEditor
);
...
...
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