Use correct placeholder message when there's no stickers

Instead of saying "No emojis" which doesn't make sense on the sticker
page.
This commit is contained in:
Joshua Goins
2023-06-08 14:43:11 -04:00
parent 3303d2c7db
commit c2580c1d2d

View File

@@ -80,7 +80,7 @@ QQC2.ScrollView {
Kirigami.PlaceholderMessage {
anchors.centerIn: parent
text: i18n("No emojis")
text: emojiGrid.stickers ? i18n("No stickers") : i18n("No emojis")
visible: emojis.count === 0
}
}