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
Utilities
Konsole
Commits
bfc05e77
Commit
bfc05e77
authored
Feb 07, 2021
by
Kurt Hindenburg
Browse files
Add i18nc KUIT and context
parent
69171170
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/profile/ProfileModel.cpp
View file @
bfc05e77
...
...
@@ -79,7 +79,7 @@ QVariant ProfileModel::data(const QModelIndex& idx, int role) const
case
Qt
::
DisplayRole
:
{
return
QStringLiteral
(
"%1%2"
).
arg
(
profile
->
name
(),
ProfileManager
::
instance
()
->
defaultProfile
()
==
profile
?
i18n
(
" (Default)"
)
:
QString
());
ProfileManager
::
instance
()
->
defaultProfile
()
==
profile
?
i18n
c
(
"@label:textbox Name of the current default profile"
,
" (Default)"
)
:
QString
());
}
case
Qt
::
DecorationRole
:
return
QIcon
::
fromTheme
(
profile
->
icon
());
case
Qt
::
FontRole
:
{
...
...
src/widgets/RenameTabWidget.cpp
View file @
bfc05e77
...
...
@@ -34,7 +34,7 @@ RenameTabWidget::RenameTabWidget(QWidget *parent) :
QList
<
QColor
>
listColors
(
_ui
->
tabColorCombo
->
colors
());
listColors
.
insert
(
0
,
_colorNone
);
_ui
->
tabColorCombo
->
setColors
(
listColors
);
_ui
->
tabColorCombo
->
setItemText
(
1
,
i18n
(
"None"
));
_ui
->
tabColorCombo
->
setItemText
(
1
,
i18n
c
(
"@label:listbox No color selected"
,
"None"
));
connect
(
_ui
->
tabTitleEdit
,
&
QLineEdit
::
textChanged
,
this
,
&
Konsole
::
RenameTabWidget
::
tabTitleFormatChanged
);
...
...
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