Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/MainView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public class Bluetooth.MainView : Switchboard.SettingsPage {
if (powered && manager.discoverable && available) {
//TRANSLATORS: \"%s\" represents the name of the adapter
description = _("Now discoverable as \"%s\". Not discoverable when this page is closed").printf (name ?? _("Unknown"));
} else if (!powered) {
} else if (!powered && available) {
description = _("Not discoverable while Bluetooth is powered off");
} else if (!available) {
description = _("No Bluetooth adapters available");
Expand Down