i18n: make the win client translation ready

Issue: #80359
Change-Id: I87f674050c1345dd75699505b5ea57a4de5a4961
diff --git a/videoview.cpp b/videoview.cpp
index c907530..c43b995 100644
--- a/videoview.cpp
+++ b/videoview.cpp
@@ -181,18 +181,18 @@
 
     menu.addSeparator();
 
-    auto shareAction = new QAction("Share entire screen", this);
+    auto shareAction = new QAction(tr("Share entire screen"), this);
     menu.addAction(shareAction);
     connect(shareAction, &QAction::triggered, [=]() {
         Video::SourceModel::instance()->setDisplay(0, QApplication::desktop()->rect());
     });
-    auto shareAreaAction = new QAction("Share screen area", this);
+    auto shareAreaAction = new QAction(tr("Share screen area"), this);
     menu.addAction(shareAreaAction);
     connect(shareAreaAction, &QAction::triggered, [=]() {
         SelectAreaDialog selec;
         selec.exec();
     });
-    auto shareFileAction = new QAction("Share file", this);
+    auto shareFileAction = new QAction(tr("Share file"), this);
     menu.addAction(shareFileAction);
     connect(shareFileAction, &QAction::triggered, [=]() {
         QFileDialog dialog(this);