From ce227f7189e8f1a3434c1991780089e7801e07fa Mon Sep 17 00:00:00 2001 From: Translations Date: Fri, 24 Sep 2021 23:10:28 +0200 Subject: Update translations --- main/src/ui/call_window/audio_settings_popover.vala | 4 ++-- main/src/ui/call_window/video_settings_popover.vala | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'main/src/ui/call_window') diff --git a/main/src/ui/call_window/audio_settings_popover.vala b/main/src/ui/call_window/audio_settings_popover.vala index 7d1f39b0..feb84f32 100644 --- a/main/src/ui/call_window/audio_settings_popover.vala +++ b/main/src/ui/call_window/audio_settings_popover.vala @@ -26,7 +26,7 @@ public class Dino.Ui.AudioSettingsPopover : Gtk.Popover { Gee.List devices = call_plugin.get_devices("audio", false); Box micro_box = new Box(Orientation.VERTICAL, 10) { visible=true }; - micro_box.add(new Label("" + _("Microphones") + "") { use_markup=true, xalign=0, visible=true, can_focus=true /* grab initial focus*/ }); + micro_box.add(new Label("" + "Microphones" + "") { 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.")); @@ -73,7 +73,7 @@ public class Dino.Ui.AudioSettingsPopover : Gtk.Popover { Gee.List devices = call_plugin.get_devices("audio", true); Box speaker_box = new Box(Orientation.VERTICAL, 10) { visible=true }; - speaker_box.add(new Label("" + _("Speakers") +"") { use_markup=true, xalign=0, visible=true }); + speaker_box.add(new Label("" + "Speakers" +"") { use_markup=true, xalign=0, visible=true }); if (devices.size == 0) { speaker_box.add(new Label("No speakers found.")); diff --git a/main/src/ui/call_window/video_settings_popover.vala b/main/src/ui/call_window/video_settings_popover.vala index 396c697c..332bd917 100644 --- a/main/src/ui/call_window/video_settings_popover.vala +++ b/main/src/ui/call_window/video_settings_popover.vala @@ -22,7 +22,7 @@ public class Dino.Ui.VideoSettingsPopover : Gtk.Popover { Gee.List devices = call_plugin.get_devices("video", false); Box camera_box = new Box(Orientation.VERTICAL, 10) { visible=true }; - camera_box.add(new Label("" + _("Cameras") + "") { use_markup=true, xalign=0, visible=true, can_focus=true /* grab initial focus*/ }); + camera_box.add(new Label("" + "Cameras" + "") { 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 }); -- cgit v1.2.3-54-g00ecf