diff options
author | fiaxh <git@lightrise.org> | 2022-02-08 22:29:33 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2022-02-08 22:29:33 +0100 |
commit | 7718def74d46ee29c64d0fd2c0e84f9776012043 (patch) | |
tree | 4b85ea0633a8e39257b617cc5feb755325d55c4d /main/src | |
parent | fb10aefefa27d64233eb19c146d3734cb7346725 (diff) | |
download | dino-7718def74d46ee29c64d0fd2c0e84f9776012043.tar.gz dino-7718def74d46ee29c64d0fd2c0e84f9776012043.zip |
Wording: Use singular in 'No camera/microphone/speaker found'
Diffstat (limited to 'main/src')
-rw-r--r-- | main/src/ui/call_window/audio_settings_popover.vala | 4 | ||||
-rw-r--r-- | main/src/ui/call_window/video_settings_popover.vala | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/main/src/ui/call_window/audio_settings_popover.vala b/main/src/ui/call_window/audio_settings_popover.vala index f13f346b..3b5dff3f 100644 --- a/main/src/ui/call_window/audio_settings_popover.vala +++ b/main/src/ui/call_window/audio_settings_popover.vala @@ -29,7 +29,7 @@ public class Dino.Ui.AudioSettingsPopover : Gtk.Popover { micro_box.add(new Label("<b>" + _("Microphones") + "</b>") { use_markup=true, xalign=0, visible=true, can_focus=true /* grab initial focus*/ }); if (devices.size == 0) { - micro_box.add(new Label(_("No microphones found."))); + micro_box.add(new Label(_("No microphone found."))); } else { ListBox micro_list_box = new ListBox() { activate_on_single_click=true, selection_mode=SelectionMode.SINGLE, visible=true }; micro_list_box.set_header_func(listbox_header_func); @@ -83,7 +83,7 @@ public class Dino.Ui.AudioSettingsPopover : Gtk.Popover { speaker_box.add(new Label("<b>" + _("Speakers") +"</b>") { use_markup=true, xalign=0, visible=true }); if (devices.size == 0) { - speaker_box.add(new Label(_("No speakers found."))); + speaker_box.add(new Label(_("No speaker found."))); } else { ListBox speaker_list_box = new ListBox() { activate_on_single_click=true, selection_mode=SelectionMode.SINGLE, visible=true }; speaker_list_box.set_header_func(listbox_header_func); diff --git a/main/src/ui/call_window/video_settings_popover.vala b/main/src/ui/call_window/video_settings_popover.vala index 553fc270..48ab3cab 100644 --- a/main/src/ui/call_window/video_settings_popover.vala +++ b/main/src/ui/call_window/video_settings_popover.vala @@ -25,7 +25,7 @@ public class Dino.Ui.VideoSettingsPopover : Gtk.Popover { camera_box.add(new Label("<b>" + _("Cameras") + "</b>") { use_markup=true, xalign=0, visible=true, can_focus=true /* grab initial focus*/ }); if (devices.size == 0) { - camera_box.add(new Label(_("No cameras found.")) { visible=true }); + camera_box.add(new Label(_("No camera found.")) { visible=true }); } else { ListBox list_box = new ListBox() { activate_on_single_click=true, selection_mode=SelectionMode.SINGLE, visible=true }; list_box.set_header_func(listbox_header_func); |