diff options
author | Translations <translations@dino.im> | 2021-09-24 23:10:28 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-09-24 23:10:28 +0200 |
commit | ce227f7189e8f1a3434c1991780089e7801e07fa (patch) | |
tree | 1105c712c6130496098f671dd27f56de2d2171e2 /main/src | |
parent | 1cf10ebdf23dd4ff2c86c8b008859b018c5b39e6 (diff) | |
download | dino-ce227f7189e8f1a3434c1991780089e7801e07fa.tar.gz dino-ce227f7189e8f1a3434c1991780089e7801e07fa.zip |
Update translations
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 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<Plugins.MediaDevice> devices = call_plugin.get_devices("audio", false); Box micro_box = new Box(Orientation.VERTICAL, 10) { visible=true }; - micro_box.add(new Label("<b>" + _("Microphones") + "</b>") { use_markup=true, xalign=0, visible=true, can_focus=true /* grab initial focus*/ }); + 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.")); @@ -73,7 +73,7 @@ public class Dino.Ui.AudioSettingsPopover : Gtk.Popover { Gee.List<Plugins.MediaDevice> devices = call_plugin.get_devices("audio", true); Box speaker_box = new Box(Orientation.VERTICAL, 10) { visible=true }; - speaker_box.add(new Label("<b>" + _("Speakers") +"</b>") { use_markup=true, xalign=0, visible=true }); + 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.")); 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<Plugins.MediaDevice> devices = call_plugin.get_devices("video", false); Box camera_box = new Box(Orientation.VERTICAL, 10) { visible=true }; - camera_box.add(new Label("<b>" + _("Cameras") + "</b>") { use_markup=true, xalign=0, visible=true, can_focus=true /* grab initial focus*/ }); + 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 }); |