@ -72,11 +72,11 @@ ColumnLayout {
runnerWindow . visible = false
runnerWindow . visible = false
runnerWindow . displayConfiguration ( )
runnerWindow . displayConfiguration ( )
}
}
Accessible.name: i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Configure" )
Accessible.name: i18n ( "Configure" )
Accessible.description: i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Configure KRunner Behavior" )
Accessible.description: i18n ( "Configure KRunner Behavior" )
visible: KCMShell . authorize ( "kcm_krunnersettings.desktop" ) . length > 0
visible: KCMShell . authorize ( "kcm_krunnersettings.desktop" ) . length > 0
PlasmaComponents3 . ToolTip {
PlasmaComponents3 . ToolTip {
text: i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Configure KRunner…" )
text: i18n ( "Configure KRunner…" )
}
}
}
}
PlasmaExtras . SearchField {
PlasmaExtras . SearchField {
@ -87,11 +87,9 @@ ColumnLayout {
Layout.maximumWidth: PlasmaCore . Units . gridUnit * 25
Layout.maximumWidth: PlasmaCore . Units . gridUnit * 25
activeFocusOnPress: true
activeFocusOnPress: true
placeholderText: results . runnerName ? i18ndc ( "plasma_lookandfeel_org.kde.lookandfeel" ,
placeholderText: results . runnerName ? i18nc ( "Textfield placeholder text, query specific KRunner" ,
"Textfield placeholder text, query specific KRunner" ,
"Search '%1'…" , results . runnerName )
"Search '%1'…" , results . runnerName )
: i18ndc ( "plasma_lookandfeel_org.kde.lookandfeel" ,
: i18nc ( "Textfield placeholder text" , "Search…" )
"Textfield placeholder text" , "Search…" )
PlasmaComponents3 . BusyIndicator {
PlasmaComponents3 . BusyIndicator {
anchors {
anchors {
@ -227,10 +225,10 @@ ColumnLayout {
/ / R e s e t i f o u t q u e r s s t a r t s w i t h " ? " , o t h e r w i s e s e t i t t o " ? "
/ / R e s e t i f o u t q u e r s s t a r t s w i t h " ? " , o t h e r w i s e s e t i t t o " ? "
onClicked: root . query = root . query . startsWith ( "?" ) ? "" : "?"
onClicked: root . query = root . query . startsWith ( "?" ) ? "" : "?"
icon.name: "question"
icon.name: "question"
Accessible.name: i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Show Usage Help" )
Accessible.name: i18n ( "Show Usage Help" )
Accessible.description: i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Show Usage Help" )
Accessible.description: i18n ( "Show Usage Help" )
PlasmaComponents3 . ToolTip {
PlasmaComponents3 . ToolTip {
text: i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Show Usage Help" )
text: i18n ( "Show Usage Help" )
}
}
}
}
PlasmaComponents3 . ToolButton {
PlasmaComponents3 . ToolButton {
@ -238,10 +236,10 @@ ColumnLayout {
checked: runnerWindow . pinned
checked: runnerWindow . pinned
onToggled: runnerWindow . pinned = checked
onToggled: runnerWindow . pinned = checked
icon.name: "window-pin"
icon.name: "window-pin"
Accessible.name: i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Pin" )
Accessible.name: i18n ( "Pin" )
Accessible.description: i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Pin Search" )
Accessible.description: i18n ( "Pin Search" )
PlasmaComponents3 . ToolTip {
PlasmaComponents3 . ToolTip {
text: i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Keep Open" )
text: i18n ( "Keep Open" )
}
}
}
}
}
}
@ -319,10 +317,10 @@ ColumnLayout {
delegate: Milou . ResultDelegate {
delegate: Milou . ResultDelegate {
id: resultDelegate
id: resultDelegate
width: listView . width
width: listView . width
typeText: index === 0 ? i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Recent Queries" ) : ""
typeText: index === 0 ? i18n ( "Recent Queries" ) : ""
additionalActions: [ {
additionalActions: [ {
icon: "list-remove" ,
icon: "list-remove" ,
text: i18nd ( "plasma_lookandfeel_org.kde.lookandfeel" , "Remove" )
text: i18n ( "Remove" )
} ]
} ]
Accessible.description: i18n ( "in category recent queries" )
Accessible.description: i18n ( "in category recent queries" )
}
}