Codebase list deepin-movie-reborn / 5b7f15c
Update upstream source from tag 'upstream/5.0.0' Update to upstream version '5.0.0' with Debian dir 0aea886fcdef47a3cc936c3765b3b950103c670e Boyuan Yang 4 years ago
94 changed file(s) with 6691 addition(s) and 5597 deletion(s). Raw diff Collapse all Expand all
0 <a name="3.2.24"></a>
1 ## 3.2.24 (2019-06-20)
2
3
4 #### Bug Fixes
5
6 * card0 may not enabled/usable ([d71a0a60](https://github.com/linuxdeepin/deepin-movie-reborn/commit/d71a0a606a3f7c9ac27cbe2c05698b9adba39cec))
7
8
9
10 <a name="3.2.23.2"></a>
11 ## 3.2.23.2 (2019-06-01)
12
13
14 #### Bug Fixes
15
16 * Should free xcb_query_pointer_reply return pointer ([5541d969](https://github.com/linuxdeepin/deepin-movie-reborn/commit/5541d96916fe8fbb04835e507f935718f2530d08))
17
18
19
20 <a name="3.2.23.1"></a>
21 ## 3.2.23.1 (2019-06-01)
22
23
24 #### Bug Fixes
25
26 * workaround for QTBUG-76114. ([bfeb745f](https://github.com/linuxdeepin/deepin-movie-reborn/commit/bfeb745f3832e64b29488db9cad884348dd5b531))
27 * missing settings item added. Fixes crash on file open. ([c2ed22ce](https://github.com/linuxdeepin/deepin-movie-reborn/commit/c2ed22ce85e7b8a4b7e225bf84ca3c5c6862a4a3))
28
29
30
31 <a name="3.2.23"></a>
32 ## 3.2.23 (2019-05-23)
33
34
35 #### Bug Fixes
36
37 * thumbnail previewer caused dock show up ([b4e511dc](https://github.com/linuxdeepin/deepin-movie-reborn/commit/b4e511dcef19f2d614939eb9914f23d6a4ee69e9))
38
39 #### Features
40
41 * Drag and drop to load subtitle ([13b8166d](https://github.com/linuxdeepin/deepin-movie-reborn/commit/13b8166d36e04216e302e44fd69bf3d7f7c93b9f))
42 * remember last opened path ([46a7c66e](https://github.com/linuxdeepin/deepin-movie-reborn/commit/46a7c66e1676a1f24e385590fd58065efb64c9d3))
43
44
45
46 <a name="3.2.22.1"></a>
47 ## 3.2.22.1 (2019-04-19)
48
49
50
51
52 <a name="3.2.22"></a>
53 ## 3.2.22 (2019-04-10)
54
55
56
57
58 <a name="3.2.21"></a>
59 ## 3.2.21 (2019-03-27)
60
61
62
63
064 <a name="3.2.20"></a>
165 ## 3.2.20 (2019-02-25)
266
2424
2525 2. Build:
2626 ```
27 $ cd deepin-viewer
27 $ cd deepin-movie-reborn
2828 $ mkdir Build
2929 $ cd Build
3030 $ cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr ..
5555
5656 ## License
5757
58 DDE Dock is licensed under [GPLv3](LICENSE) with [OpenSSL exception](https://lists.debian.org/debian-legal/2004/05/msg00595.html).
58 Deepin Movie is licensed under [GPLv3](LICENSE) with [OpenSSL exception](https://lists.debian.org/debian-legal/2004/05/msg00595.html).
7878 if (!_titlebarMenu) {
7979 auto *menu = new QMenu();
8080
81 DEF_ACTION(tr("Open File"), ActionKind::OpenFileList);
82 DEF_ACTION(tr("Open Folder"), ActionKind::OpenDirectory);
81 DEF_ACTION(tr("Open file"), ActionKind::OpenFileList);
82 DEF_ACTION(tr("Open folder"), ActionKind::OpenDirectory);
8383 DEF_ACTION(tr("Settings"), ActionKind::Settings);
84 DEF_ACTION_CHECKED(tr("Light Theme"), ActionKind::LightTheme);
84 DEF_ACTION_CHECKED(tr("Light theme"), ActionKind::LightTheme);
8585 menu->addSeparator();
8686 // these seems added by titlebar itself
8787 //DEF_ACTION("About", ActionKind::About);
9898 if (!_contextMenu) {
9999 auto *menu = new QMenu();
100100
101 DEF_ACTION(tr("Open File"), ActionKind::OpenFileList);
102 DEF_ACTION(tr("Open Folder"), ActionKind::OpenDirectory);
101 DEF_ACTION(tr("Open file"), ActionKind::OpenFileList);
102 DEF_ACTION(tr("Open folder"), ActionKind::OpenDirectory);
103103 DEF_ACTION(tr("Open URL"), ActionKind::OpenUrl);
104104 DEF_ACTION(tr("Open CD/DVD"), ActionKind::OpenCdrom);
105105 menu->addSeparator();
8888 case Settings::Flag::HWAccel: return "hwaccel";
8989 }
9090
91 return "";
9192 }
9293
9394 bool Settings::isSet(Flag f) const
161162 .arg(QDateTime::currentDateTime().toString("yyyyMMddhhmmss"));
162163 }
163164
165 void Settings::setGeneralOption(const QString &opt, const QVariant &v)
166 {
167 settings()->setOption(QString("base.general.%1").arg(opt), v);
168 settings()->sync();
169 }
170
171 QVariant Settings::generalOption(const QString &opt)
172 {
173 return settings()->getOption(QString("base.general.%1").arg(opt));
174 }
175
164176 QVariant Settings::internalOption(const QString& opt)
165177 {
166178 return settings()->getOption(QString("base.play.%1").arg(opt));
6363 QPointer<DSettingsGroup> base() { return group("base"); }
6464 QPointer<DSettingsGroup> subtitle() { return group("subtitle"); }
6565
66 void setGeneralOption(const QString& opt, const QVariant& v);
67 QVariant generalOption(const QString& opt);
68
6669 void setInternalOption(const QString& opt, const QVariant& v);
6770 QVariant internalOption(const QString& opt);
6871
3131
3232 #include "event_monitor.h"
3333 #define Bool int
34 #include <X11/Xlib.h>
3435 #include <X11/Xlibint.h>
3536 #include <X11/extensions/record.h>
37 #undef Bool
38
39 void callback(XPointer ptr, XRecordInterceptData* data)
40 {
41 ((dmr::EventMonitor *) ptr)->handleRecordEvent(data);
42 }
3643
3744 namespace dmr {
3845
8491 }
8592 }
8693
87 void EventMonitor::callback(XPointer ptr, XRecordInterceptData* data)
94 void EventMonitor::handleRecordEvent(void* dat)
8895 {
89 ((EventMonitor *) ptr)->handleRecordEvent(data);
90 }
91
92 void EventMonitor::handleRecordEvent(XRecordInterceptData* data)
93 {
96 XRecordInterceptData* data = (XRecordInterceptData*)dat;
9497 if (!_recording) {
9598 XRecordFreeData(data);
9699 return;
3030 #define EVENTMONITOR_H
3131
3232 #include <QThread>
33 #define Bool int
34 #include <X11/Xlib.h>
35 #include <X11/extensions/record.h>
36 #undef Bool
37
3833
3934 namespace dmr {
4035
5550
5651 public:
5752 EventMonitor(QObject *parent = 0);
58 static void callback(XPointer trash, XRecordInterceptData* data);
59 void handleRecordEvent(XRecordInterceptData *);
53 void handleRecordEvent(void *);
6054
6155 void resumeRecording();
6256 void suspendRecording();
126126 };
127127
128128 option->connect(le, &DLineEdit::iconClicked, [=]() {
129 QString name = QFileDialog::getExistingDirectory(0, QObject::tr("Open Folder"),
130 QDir::currentPath(),
129 QString name = QFileDialog::getExistingDirectory(0, QObject::tr("Open folder"),
130 MainWindow::lastOpenedPath(),
131131 QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
132132 if (validate(name, false)) {
133133 option->setValue(name);
14451445 }
14461446
14471447 case ActionFactory::ActionKind::OpenDirectory: {
1448 QString name = QFileDialog::getExistingDirectory(this, tr("Open Folder"),
1449 QDir::currentPath(),
1448 QString name = QFileDialog::getExistingDirectory(this, tr("Open folder"),
1449 lastOpenedPath(),
14501450 QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
14511451
14521452 QFileInfo fi(name);
14531453 if (fi.isDir() && fi.exists()) {
1454 Settings::get().setGeneralOption("last_open_path", fi.path());
1455
14541456 const auto& urls = _engine->addPlayDir(name);
14551457 if (urls.size()) {
14561458 _engine->playByName(QUrl("playlist://0"));
14601462 }
14611463
14621464 case ActionFactory::ActionKind::OpenFileList: {
1463 QStringList filenames = QFileDialog::getOpenFileNames(this, tr("Open File"),
1464 QDir::currentPath(),
1465 QStringList filenames = QFileDialog::getOpenFileNames(this, tr("Open file"),
1466 lastOpenedPath(),
14651467 tr("All videos (%1)").arg(_engine->video_filetypes.join(" ")), 0,
14661468 QFileDialog::HideNameFilterDetails);
14671469
14681470 QList<QUrl> urls;
14691471 if (filenames.size()) {
1472 QFileInfo fileInfo(filenames[0]);
1473 if (fileInfo.exists()) {
1474 Settings::get().setGeneralOption("last_open_path", fileInfo.path());
1475 }
1476
14701477 for (const auto& filename: filenames) {
14711478 urls.append(QUrl::fromLocalFile(filename));
14721479 }
14771484 }
14781485
14791486 case ActionFactory::ActionKind::OpenFile: {
1480 QString filename = QFileDialog::getOpenFileName(this, tr("Open File"),
1481 QDir::currentPath(),
1487 QString filename = QFileDialog::getOpenFileName(this, tr("Open file"),
1488 lastOpenedPath(),
14821489 tr("All videos (%1)").arg(_engine->video_filetypes.join(" ")), 0,
14831490 QFileDialog::HideNameFilterDetails);
1484 if (QFileInfo(filename).exists()) {
1491 QFileInfo fileInfo(filename);
1492 if (fileInfo.exists()) {
1493 Settings::get().setGeneralOption("last_open_path", fileInfo.path());
1494
14851495 play(QUrl::fromLocalFile(filename));
14861496 }
14871497 break;
18121822 }
18131823
18141824 case ActionFactory::ActionKind::LoadSubtitle: {
1815 QString filename = QFileDialog::getOpenFileName(this, tr("Open File"),
1816 QDir::currentPath(),
1817 tr("Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)"));
1825 QString filename = QFileDialog::getOpenFileName(this, tr("Open file"),
1826 lastOpenedPath(),
1827 tr("Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)"));
18181828 if (QFileInfo(filename).exists()) {
18191829 auto success = _engine->loadSubtitle(QFileInfo(filename));
18201830 _nwComm->updateWithMessage(success?tr("Load successfully"):tr("Load failed"));
19021912 _nwShot->setAnchorPoint(QPoint(30, 38));
19031913 }
19041914 auto pm = utils::LoadHiDPIPixmap(QString(":/resources/icons/%1.svg").arg(success?"success":"fail"));
1905 auto msg = success?tr("The screenshot is saved"):tr("The screenshot is failed to save");
1915 auto msg = success?tr("The screenshot is saved"):tr("Failed to save the screenshot");
19061916 _nwShot->popupWithIcon(msg, pm);
19071917 #endif
19081918 break;
25652575 {
25662576 bg_dark = utils::LoadHiDPIImage(":/resources/icons/dark/init-splash.svg");
25672577 bg_light = utils::LoadHiDPIImage(":/resources/icons/light/init-splash.svg");
2578 }
2579
2580 QString MainWindow::lastOpenedPath()
2581 {
2582 QString lastPath = Settings::get().generalOption("last_open_path").toString();
2583 QDir lastDir(lastPath);
2584 if (lastPath.isEmpty() || !lastDir.exists()) {
2585 lastPath = QStandardPaths::writableLocation(QStandardPaths::MoviesLocation);
2586 QDir newLastDir(lastPath);
2587 if (!newLastDir.exists()) {
2588 lastPath = QDir::currentPath();
2589 }
2590 }
2591
2592 return lastPath;
25682593 }
25692594
25702595 void MainWindow::paintEvent(QPaintEvent* pe)
27682793 return;
27692794 }
27702795
2771 auto urls = ev->mimeData()->urls();
2772 auto valids = _engine->addPlayFiles(urls);
2796 QList<QUrl> urls = ev->mimeData()->urls();
2797 QList<QUrl> valids = _engine->addPlayFiles(urls);
2798
2799 if (urls.count() == 1 && valids.count() == 0) {
2800 // check if the dropped file is a subtitle.
2801 QFileInfo fileInfo(urls.first().toLocalFile());
2802 if (_engine->subtitle_suffixs.contains(fileInfo.suffix())) {
2803 bool succ = _engine->loadSubtitle(fileInfo);
2804 // notice that the file loaded but won't automatically selected.
2805 const PlayingMovieInfo& pmf = _engine->playingMovieInfo();
2806 for (const SubtitleInfo& sub: pmf.subs) {
2807 if (sub["external"].toBool()) {
2808 QString path = sub["external-filename"].toString();
2809 if (path == fileInfo.canonicalFilePath()) {
2810 _engine->selectSubtitle(pmf.subs.indexOf(sub));
2811 break;
2812 }
2813 }
2814 }
2815 QPixmap icon = utils::LoadHiDPIPixmap(QString(":/resources/icons/%1.svg").arg(succ ? "success" : "fail"));
2816 _nwComm->popupWithIcon(succ ? tr("Load successfully") : tr("Load failed"), icon);
2817 }
2818 return;
2819 }
27732820
27742821 {
27752822 auto all = urls.toSet();
8484
8585 void updateContentGeometry(const QRect& rect);
8686
87 static QString lastOpenedPath();
88
8789 signals:
8890 void windowEntered();
8991 void windowLeaved();
2727 auto shortcuts_frame_sound_muteName = QObject::tr("Mute");
2828 auto shortcuts_frame_sound_next_frameName = QObject::tr("Next frame");
2929 auto shortcuts_frame_sound_previous_frameName = QObject::tr("Previous frame");
30 auto shortcuts_frame_sound_vol_downName = QObject::tr("volume down");
30 auto shortcuts_frame_sound_vol_downName = QObject::tr("Volume down");
3131 auto shortcuts_frame_sound_vol_upName = QObject::tr("Volume up");
3232 auto shortcuts_play_accelName = QObject::tr("Speed up");
3333 auto shortcuts_play_decelName = QObject::tr("Speed down");
174174 qbutton == Qt::RightButton ? XCB_BUTTON_INDEX_3 :
175175 XCB_BUTTON_INDEX_ANY;
176176
177 if (globalPos.isNull())
178 globalPos = QCursor::pos();
177 if (globalPos.isNull()) {
178 //QTBUG-76114
179 //globalPos = QCursor::pos();
180 xcb_generic_error_t** err = nullptr;
181 xcb_query_pointer_reply_t* p = xcb_query_pointer_reply(QX11Info::connection(),
182 xcb_query_pointer(QX11Info::connection(),
183 QX11Info::appRootWindow(QX11Info::appScreen())),
184 err);
185 if (p && err == nullptr) {
186 globalPos = QPoint(p->root_x, p->root_y);
187 }
188
189 if (p) {
190 free(p);
191 }
192 }
179193
180194 xcb_client_message_event_t xev;
181195
183197 xev.type = internAtom(XATOM_MOVE_RESIZE);
184198 xev.window = WId;
185199 xev.format = 32;
186 xev.data.data32[0] = globalPos.x() * qApp->devicePixelRatio();
187 xev.data.data32[1] = globalPos.y() * qApp->devicePixelRatio();
200 xev.data.data32[0] = globalPos.x();
201 xev.data.data32[1] = globalPos.y();
188202 xev.data.data32[2] = action;
189203 xev.data.data32[3] = xbtn;
190204 xev.data.data32[4] = 0;
2828 Comment[eo]=Ludi vian videojn kolekton
2929 Comment[es]=Reproducir tu colección de vídeos
3030 Comment[es_419]=Reproduce tu colección de videos
31 Comment[fi]=Toista videokokoelma
31 Comment[fa]=مجموعه ویدیویی خود را اجرا کنید
32 Comment[fi]=Toistaa videokokoelmasi
3233 Comment[fil]=Manood ng mga video
33 Comment[fr]=Lisez votre collection de videos
34 Comment[fr]=Lire votre collection de vidéos
3435 Comment[gl_ES]=Reproduce a túa colección de vídeo
3536 Comment[he]=נגן את אוסף הוידאו שלך
3637 Comment[hi_IN]=अपने वीडियो संग्रह चलाओ
4041 Comment[id]=Mainkan koleksi video
4142 Comment[it]=Esegui la tua raccolta video
4243 Comment[ja]=ビデオコレクションの再生
43 Comment[ko]=동영상 컬렉션을 재생하세요
44 Comment[ko]=동영상 컬렉션 재생
4445 Comment[ku_IQ]=Li koleksiyona xwe ya vîdyoyê bixe
4546 Comment[lt]=Groti savo vaizdo kolekciją
4647 Comment[ms]=Main koleksi video
4849 Comment[ne]=आफ्नो भिडियो संग्रह प्ले गर्नुहोस्
4950 Comment[nl]=Speel je videoverzameling af
5051 Comment[pl]=Odtwórz kolekcję filmów
51 Comment[pt]=Reproduzir a sua coleção de videos
52 Comment[pt]=Reproduzir a sua coleção de vídeos
5253 Comment[pt_BR]=Reproduza sua coleção de vídeos
5354 Comment[ro]=Redă colecția ta video
5455 Comment[ru]=Просмотр вашей видео-коллекции
5758 Comment[sr]=Гледајте вашу видео колекцију
5859 Comment[sv]=Spela din filmsamling
5960 Comment[ta]=புதுச் சாளரம்
60 Comment[tr]=Görüntü koleksiyonunuzu seyredin
61 Comment[tr]=Video koleksiyonunuzu oynatın
6162 Comment[uk]=Відтворити колекцію відео
6263 Comment[zh_CN]=为您播放本地及网络视频
6364 Comment[zh_HK]=播放你收藏的影片
6465 Comment[zh_TW]=播放您的影片集合
66 GenericName[ar]=الأفلام
6567 GenericName[ast]=Película
6668 GenericName[bg]=Филм
69 GenericName[bn]=মুভি
6770 GenericName[ca]=Pel·lícula
71 GenericName[cs]=Film
6872 GenericName[da]=Film
73 GenericName[de]=Film
6974 GenericName[es]=Películas
75 GenericName[es_419]=Películas
76 GenericName[fa]=فیلم
77 GenericName[fi]=Elokuvat
7078 GenericName[fr]=Vidéo
79 GenericName[hu]=Film
7180 GenericName[id]=Film
7281 GenericName[it]=Movie
82 GenericName[ko]=동영상
7383 GenericName[lt]=Filmas
7484 GenericName[ms]=Cereka
7585 GenericName[ne]=चलचित्र
7888 GenericName[pt]=Filme
7989 GenericName[pt_BR]=Vídeo
8090 GenericName[ru]=Кинотеатр
91 GenericName[sk]=Film
8192 GenericName[sr]=Филм
8293 GenericName[tr]=Sinema
94 GenericName[uk]=Відео
8395 GenericName[zh_CN]=影院
8496 GenericName[zh_TW]=電影
97 Keywords[ar]=Player;Movie;Theater;Theatre;Video;
8598 Keywords[ast]=reproductor;película;videu;películes;vídeos;theater
8699 Keywords[bg]=Player;Movie;Theater;Theatre;Video;
100 Keywords[bn]=প্লেয়ার;মুভি;থিয়েটার;থিয়েটার;ভিডিও;
87101 Keywords[ca]=Reproductor;Pel·lícula;Teatre;Cinema;Vídeo
102 Keywords[cs]=Přehrávač;Film;Divadlo;Video;
88103 Keywords[da]=Afspiller;Film;Biograf;Video;
104 Keywords[de]=Player;Filme; Theater;Theatre;Movie;Video;
89105 Keywords[es]=Reproductor;Vídeos;Películas; Teatro en casa.
106 Keywords[es_419]=Reproductor; Películas; Teatro;Videos;
107 Keywords[fa]=پخش کننده؛ فیلم؛ تئاتر؛ تئاتر؛ ویدئو؛
108 Keywords[fi]=Soitin;Elokuva;Teatteri;Video;
90109 Keywords[fr]=Lecteur;Film;Theatre;Video;
110 Keywords[hu]=Lejátszó;Film;Mozi;Mozi;Videó
91111 Keywords[id]=Pemutar;Film;Theater;Theater;Video;
92112 Keywords[it]=Player;Movie;Theater;Theatre;Video;
113 Keywords[ko]=Player;Movie;Theater;Theatre;Video;플레이어;동영상;영화;극장;영화관;비디오;
93114 Keywords[lt]=Grotuvas;Leistuvė;Filmas;Kinoteatras;Kinas;Teatras;;Vaizdas;Video;
94115 Keywords[ms]=Pemain;Cereka;Wayang;Filem;Video;
95116 Keywords[ne]=प्लेयर; मूवी; थिएटर; थियेटर; भिडियो;
96117 Keywords[nl]=Speler;Film;Theater;Bioscoop;Video;
97118 Keywords[pl]=Player;Movie;Theater;Theatre;Video;Odtwarzacz;Filmy;Kino;Teatr;Wideo;
98 Keywords[pt]=Player;Movie;Theater;Theatre;Video;
119 Keywords[pt]=Reprodutor;Filme;Teatro;Anfiteatro;Vídeo;
99120 Keywords[pt_BR]=Player;Movie;Theater;Theatre;Video;
100121 Keywords[ru]=Player;Movie;Theater;Theatre;Video;
122 Keywords[sk]=Player;Movie;Theater;Theatre;Video;
101123 Keywords[sr]=Пуштач;Филм;Сцена;Биоскоп;Видео;
102124 Keywords[tr]=Player;Movie;Theater;Theatre;Video;Sinema;Görüntü;Tiyatro;
125 Keywords[uk]=Player;Movie;Theater;Theatre;Video;програвач;відео;фільм;кінотеатр;кіно;
103126 Keywords[zh_CN]=播放器;电影;电影院;视频;
104127 Keywords[zh_TW]=Player;Movie;Theater;Theatre;Video;播放器;電影;劇院;影片
105128 Name[am_ET]=ሙቪ
118141 Name[es]=Películas Deepin
119142 Name[es_419]=Películas Deepin
120143 Name[fa]=Deepin Movie (نرم افزار تماشای فیلم دیپین)
121 Name[fi]=Deepin Elokuva
144 Name[fi]=Deepin Elokuvat
122145 Name[fil]=Deepin Music
123 Name[fr]=Deepin Film
146 Name[fr]=Deepin Movie
124147 Name[gl_ES]=Filmes
125148 Name[he]=נגן הסרטים של Deepin
126149 Name[hi_IN]=डीपइन चलचित्र
130153 Name[id]=Pemutar Video Deepin
131154 Name[it]=Deepin Movie
132155 Name[ja]=Deepinビデオプレイヤー
133 Name[ko]=Deepin Movie
156 Name[ko]=Deepin 동영상
134157 Name[ku_IQ]=Deepin Fîlm
135158 Name[lt]=Deepin filmas
159 Name[mn]=Дээпин Кино
136160 Name[ms]=Wayang Deepin
137161 Name[nb]=Deepin film
138162 Name[ne]=डिपिन चलचित्र
258258
259259 using namespace std;
260260
261 bool CompositingManager::is_card_exists(const vector<string>& drivers) {
261 bool CompositingManager::is_card_exists(int id, const vector<string>& drivers) {
262262 char buf[1024] = {0};
263 int id = 0;
264263 snprintf(buf, sizeof buf, "/sys/class/drm/card%d/device/driver", id);
265264
266265 char buf2[1024] = {0};
306305
307306 bool CompositingManager::isProprietaryDriver()
308307 {
309 if (is_device_viable(0)) {
310 vector<string> drivers = {"nvidia", "fglrx", "hibmc-drm"};
311 return is_card_exists(drivers);
308 for (int id = 0; id <= 10; id++) {
309 if (!QFile::exists(QString("/sys/class/drm/card%1").arg(id))) break;
310 if (is_device_viable(id)) {
311 vector<string> drivers = {"nvidia", "fglrx", "hibmc-drm"};
312 return is_card_exists(id, drivers);
313 }
312314 }
313315
314316 return false;
9191 bool isProprietaryDriver();
9292
9393 bool is_device_viable(int id);
94 bool is_card_exists(const std::vector<std::string>& drivers);
94 bool is_card_exists(int id, const std::vector<std::string>& drivers);
9595
9696 bool _composited {false};
9797 Platform _platform {Platform::Unknown};
2929 #ifndef _DMR_ONLINE_SUB_H
3030 #define _DMR_ONLINE_SUB_H
3131
32 #include <QtWidgets>
33 #include <QtNetwork>
32 #include <QFileInfo>
33 #include <QNetworkAccessManager>
34 #include <QNetworkRequest>
35 #include <QNetworkReply>
3436
3537
3638 namespace dmr {
6969 "*.3g2","*.3ga","*.3gp","*.3gp2","*.3gpp","*.amv","*.asf","*.asx","*.avf","*.avi","*.bdm","*.bdmv","*.bik","*.clpi", "*.cpi","*.dat","*.divx","*.drc","*.dv","*.dvr-ms","*.f4v","*.flv","*.gvi","*.gxf","*.hdmov","*.hlv","*.iso","*.letv", "*.lrv","*.m1v","*.m2p","*.m2t","*.m2ts","*.m2v","*.m3u","*.m3u8","*.m4v","*.mkv","*.moov", "*.mov","*.mov","*.mp2","*.mp2v","*.mp4","*.mp4v","*.mpe","*.mpeg","*.mpeg1","*.mpeg2","*.mpeg4","*.mpg","*.mpl","*.mpls","*.mpv","*.mpv2","*.mqv", "*.mts","*.mts","*.mtv","*.mxf","*.mxg","*.nsv","*.nuv","*.ogg","*.ogm","*.ogv","*.ogx","*.ps","*.qt","*.qtvr","*.ram","*.rec", "*.rm","*.rm","*.rmj","*.rmm","*.rms","*.rmvb","*.rmx","*.rp","*.rpl","*.rv","*.rvx","*.thp","*.tod","*.tp","*.trp","*.ts","*.tts","*.txd","*.vcd", "*.vdr","*.vob","*.vp8","*.vro","*.webm","*.wm","*.wmv","*.wtv","*.xesc" ,"*.xspf"
7070 };
7171
72 const QStringList subtitle_filetypes {"*.sub","*.srt","*.ass","*.ssa","*.smi","*.rt","*.txt","*.mks","*.vtt","*.sup"};
72 const QStringList subtitle_suffixs {"ass", "sub", "srt", "aqt", "jss", "gsub", "ssf", "ssa", "smi", "usf", "idx"};
7373
7474 /* backend like mpv will asynchronously report end of playback.
7575 * there are situations when we need to see the end-event before
418418 if (Settings::get().isSet(Settings::ClearWhenQuit)) {
419419 clearPlaylist();
420420 } else {
421 //persistantly save current playlist
421 //persistently save current playlist
422422 savePlaylist();
423423 }
424424 #endif
104104 "name": "Path",
105105 "type": "selectableEdit",
106106 "default": "~/Pictures/DMovie"
107 }
108 ]
109 },
110 {
111 "key": "general",
112 "name": "",
113 "hide": true,
114 "options": [
115 {
116 "key": "last_open_path",
117 "name": "",
118 "type": "selectableEdit",
119 "default": ""
107120 }
108121 ]
109122 }
197210 },
198211 {
199212 "key": "vol_down",
200 "name": "volume down",
213 "name": "Volume down",
201214 "type": "shortcut",
202215 "default": ["0", "16777237"]
203216 },
2020 </message>
2121 <message>
2222 <location filename="../common/mainwindow.cpp" line="130"/>
23 <source>Open Folder</source>
23 <source>Open folder</source>
2424 <translation type="unfinished"></translation>
2525 </message>
2626 <message>
152152 </message>
153153 <message>
154154 <location filename="../common/settings_translation.cpp" line="31"/>
155 <source>volume down</source>
155 <source>Volume down</source>
156156 <translation type="unfinished"></translation>
157157 </message>
158158 <message>
251251 </context>
252252 <context>
253253 <name>dmr::ActionFactory</name>
254 <message>
255 <location filename="../common/actions.cpp" line="82"/>
256 <location filename="../common/actions.cpp" line="102"/>
257 <source>Open File</source>
258 <translation type="unfinished"></translation>
259 </message>
260254 <message>
261255 <location filename="../common/actions.cpp" line="84"/>
262256 <location filename="../common/actions.cpp" line="269"/>
264258 <translation type="unfinished"></translation>
265259 </message>
266260 <message>
267 <location filename="../common/actions.cpp" line="85"/>
268 <source>Light Theme</source>
269 <translation type="unfinished"></translation>
270 </message>
271 <message>
272261 <location filename="../common/actions.cpp" line="108"/>
273262 <source>Fullscreen</source>
274263 <translation type="unfinished"></translation>
284273 <translation type="unfinished"></translation>
285274 </message>
286275 <message>
276 <location filename="../common/actions.cpp" line="82"/>
277 <location filename="../common/actions.cpp" line="102"/>
278 <source>Open file</source>
279 <translation type="unfinished"></translation>
280 </message>
281 <message>
287282 <location filename="../common/actions.cpp" line="83"/>
288283 <location filename="../common/actions.cpp" line="103"/>
289 <source>Open Folder</source>
284 <source>Open folder</source>
285 <translation type="unfinished"></translation>
286 </message>
287 <message>
288 <location filename="../common/actions.cpp" line="85"/>
289 <source>Light theme</source>
290290 <translation type="unfinished"></translation>
291291 </message>
292292 <message>
464464 <name>dmr::BurstScreenshotsDialog</name>
465465 <message>
466466 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
467 <source>duration: %1</source>
467 <source>Duration: %1</source>
468468 <translation type="unfinished"></translation>
469469 </message>
470470 <message>
471471 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
472 <source>resolution: %1</source>
472 <source>Resolution: %1</source>
473473 <translation type="unfinished"></translation>
474474 </message>
475475 <message>
476476 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
477 <source>size: %1</source>
477 <source>Size: %1</source>
478478 <translation type="unfinished"></translation>
479479 </message>
480480 <message>
481481 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
482 <source>save</source>
482 <source>Save</source>
483483 <translation type="unfinished"></translation>
484484 </message>
485485 </context>
486486 <context>
487487 <name>dmr::MainWindow</name>
488488 <message>
489 <location filename="../common/mainwindow.cpp" line="785"/>
490 <location filename="../common/mainwindow.cpp" line="2284"/>
491 <location filename="../common/mainwindow.cpp" line="2381"/>
492 <source>Deepin Movie</source>
493 <translation type="unfinished"></translation>
494 </message>
495 <message>
496 <location filename="../common/mainwindow.cpp" line="698"/>
489 <location filename="../common/mainwindow.cpp" line="720"/>
490 <location filename="../common/mainwindow.cpp" line="1821"/>
491 <source>Load successfully</source>
492 <translation type="unfinished"></translation>
493 </message>
494 <message>
495 <location filename="../common/mainwindow.cpp" line="720"/>
496 <location filename="../common/mainwindow.cpp" line="1821"/>
497 <source>Load failed</source>
498 <translation type="unfinished"></translation>
499 </message>
500 <message>
501 <location filename="../common/mainwindow.cpp" line="1424"/>
502 <source>No device found</source>
503 <translation type="unfinished"></translation>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1442"/>
507 <source>Parse Failed</source>
508 <translation type="unfinished"></translation>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1449"/>
512 <source>Open folder</source>
513 <translation type="unfinished"></translation>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1464"/>
517 <location filename="../common/mainwindow.cpp" line="1481"/>
518 <location filename="../common/mainwindow.cpp" line="1816"/>
519 <source>Open file</source>
520 <translation type="unfinished"></translation>
521 </message>
522 <message>
523 <location filename="../common/mainwindow.cpp" line="1466"/>
524 <location filename="../common/mainwindow.cpp" line="1483"/>
525 <source>All videos (%1)</source>
526 <translation type="unfinished"></translation>
527 </message>
528 <message>
529 <location filename="../common/mainwindow.cpp" line="1684"/>
530 <source>Muted</source>
531 <translation type="unfinished"></translation>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1687"/>
535 <location filename="../common/mainwindow.cpp" line="1699"/>
536 <location filename="../common/mainwindow.cpp" line="1709"/>
537 <location filename="../common/mainwindow.cpp" line="1716"/>
538 <source>Volume: %1%</source>
539 <translation type="unfinished"></translation>
540 </message>
541 <message>
542 <location filename="../common/mainwindow.cpp" line="1781"/>
497543 <location filename="../common/mainwindow.cpp" line="1789"/>
498 <source>Load successfully</source>
499 <translation type="unfinished"></translation>
500 </message>
501 <message>
502 <location filename="../common/mainwindow.cpp" line="698"/>
503 <location filename="../common/mainwindow.cpp" line="1789"/>
504 <source>Load failed</source>
505 <translation type="unfinished"></translation>
506 </message>
507 <message>
508 <location filename="../common/mainwindow.cpp" line="1392"/>
509 <source>No device found</source>
510 <translation type="unfinished"></translation>
511 </message>
512 <message>
513 <location filename="../common/mainwindow.cpp" line="1410"/>
514 <source>Parse Failed</source>
515 <translation type="unfinished"></translation>
516 </message>
517 <message>
518 <location filename="../common/mainwindow.cpp" line="1417"/>
519 <source>Open Folder</source>
520 <translation type="unfinished"></translation>
521 </message>
522 <message>
523 <location filename="../common/mainwindow.cpp" line="1432"/>
524 <location filename="../common/mainwindow.cpp" line="1449"/>
525 <location filename="../common/mainwindow.cpp" line="1784"/>
526 <source>Open File</source>
527 <translation type="unfinished"></translation>
528 </message>
529 <message>
530 <location filename="../common/mainwindow.cpp" line="1434"/>
531 <location filename="../common/mainwindow.cpp" line="1451"/>
532 <source>All videos (%1)</source>
533 <translation type="unfinished"></translation>
534 </message>
535 <message>
536 <location filename="../common/mainwindow.cpp" line="1652"/>
537 <source>Muted</source>
538 <translation type="unfinished"></translation>
539 </message>
540 <message>
541 <location filename="../common/mainwindow.cpp" line="1655"/>
542 <location filename="../common/mainwindow.cpp" line="1667"/>
543 <location filename="../common/mainwindow.cpp" line="1677"/>
544 <location filename="../common/mainwindow.cpp" line="1684"/>
545 <source>Volume: %1%</source>
546 <translation type="unfinished"></translation>
547 </message>
548 <message>
549 <location filename="../common/mainwindow.cpp" line="1749"/>
550 <location filename="../common/mainwindow.cpp" line="1757"/>
551544 <source>Subtitle %1: %2s</source>
552545 <translation type="unfinished"></translation>
553546 </message>
554547 <message>
555 <location filename="../common/mainwindow.cpp" line="1750"/>
556 <location filename="../common/mainwindow.cpp" line="1758"/>
548 <location filename="../common/mainwindow.cpp" line="1782"/>
549 <location filename="../common/mainwindow.cpp" line="1790"/>
557550 <source>delayed</source>
558551 <translation type="unfinished"></translation>
559552 </message>
560553 <message>
561 <location filename="../common/mainwindow.cpp" line="1750"/>
562 <location filename="../common/mainwindow.cpp" line="1758"/>
554 <location filename="../common/mainwindow.cpp" line="1782"/>
555 <location filename="../common/mainwindow.cpp" line="1790"/>
563556 <source>advanced</source>
564557 <translation type="unfinished"></translation>
565558 </message>
566559 <message>
567 <location filename="../common/mainwindow.cpp" line="1765"/>
568 <location filename="../common/mainwindow.cpp" line="1772"/>
569 <location filename="../common/mainwindow.cpp" line="1779"/>
560 <location filename="../common/mainwindow.cpp" line="1797"/>
561 <location filename="../common/mainwindow.cpp" line="1804"/>
562 <location filename="../common/mainwindow.cpp" line="1811"/>
570563 <source>Speed: %1x</source>
571564 <translation type="unfinished"></translation>
572565 </message>
573566 <message>
574 <location filename="../common/mainwindow.cpp" line="1786"/>
575 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
576 <translation type="unfinished"></translation>
577 </message>
578 <message>
579 <location filename="../common/mainwindow.cpp" line="1848"/>
567 <location filename="../common/mainwindow.cpp" line="1818"/>
568 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
569 <translation type="unfinished"></translation>
570 </message>
571 <message>
572 <location filename="../common/mainwindow.cpp" line="1880"/>
580573 <source>View</source>
581574 <translation type="unfinished"></translation>
582575 </message>
583576 <message>
584 <location filename="../common/mainwindow.cpp" line="1859"/>
577 <location filename="../common/mainwindow.cpp" line="1891"/>
585578 <source>Movie Screenshot</source>
586579 <translation type="unfinished"></translation>
587580 </message>
588581 <message>
589 <location filename="../common/mainwindow.cpp" line="1860"/>
582 <location filename="../common/mainwindow.cpp" line="1892"/>
590583 <source>Saved to</source>
591584 <translation type="unfinished"></translation>
592585 </message>
593586 <message>
594 <location filename="../common/mainwindow.cpp" line="1874"/>
595 <location filename="../common/mainwindow.cpp" line="1957"/>
587 <location filename="../common/mainwindow.cpp" line="1906"/>
588 <location filename="../common/mainwindow.cpp" line="1989"/>
596589 <source>The screenshot is saved</source>
597590 <translation type="unfinished"></translation>
598591 </message>
599592 <message>
600 <location filename="../common/mainwindow.cpp" line="1874"/>
601 <source>The screenshot is failed to save</source>
602 <translation type="unfinished"></translation>
603 </message>
604 <message>
605 <location filename="../common/mainwindow.cpp" line="2044"/>
606 <location filename="../common/mainwindow.cpp" line="2741"/>
593 <location filename="../common/mainwindow.cpp" line="1906"/>
594 <source>Failed to save the screenshot</source>
595 <translation type="unfinished"></translation>
596 </message>
597 <message>
598 <location filename="../common/mainwindow.cpp" line="2076"/>
599 <location filename="../common/mainwindow.cpp" line="2782"/>
607600 <source>Invalid file: %1</source>
601 <translation type="unfinished"></translation>
602 </message>
603 </context>
604 <context>
605 <name>dmr::MovieInfo</name>
606 <message>
607 <location filename="../libdmr/playlist_model.h" line="67"/>
608 <source>%1G</source>
609 <translation type="unfinished"></translation>
610 </message>
611 <message>
612 <location filename="../libdmr/playlist_model.h" line="69"/>
613 <source>%1M</source>
614 <translation type="unfinished"></translation>
615 </message>
616 <message>
617 <location filename="../libdmr/playlist_model.h" line="71"/>
618 <source>%1K</source>
619 <translation type="unfinished"></translation>
620 </message>
621 <message>
622 <location filename="../libdmr/playlist_model.h" line="73"/>
623 <source>%1</source>
608624 <translation type="unfinished"></translation>
609625 </message>
610626 </context>
639655 <context>
640656 <name>dmr::MpvProxy</name>
641657 <message>
642 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
643 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
658 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
659 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
644660 <source>[internal]</source>
645661 <translation type="unfinished"></translation>
646662 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Maak Gids Oop</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>Volume af</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
261255 <source>Settings</source>
262256 <translation type="unfinished"/>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Volskerm</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation type="unfinished"/>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Maak Gids Oop</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Stoor</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation type="unfinished"/>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Maak Gids Oop</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>ፎልደር መክፋቻ</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>መጠን መቀነሻ</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>ፋይል መክፈቻ</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>ማሰናጃዎች</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>የ ብርሃን ገጽታ</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>በሙሉ መመልከቻ ዘዴ</translation>
282271 <translation>የ ፊልም መረጃ</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>ፋይል መክፈቻ</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>ፎልደር መክፋቻ</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>የሚፈጀው ጊዜ %1</translation>
465 <source>Duration: %1</source>
466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>ሪዞሊሽን: %1</translation>
470 <source>Resolution: %1</source>
471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>መጠን: %1</translation>
475 <source>Size: %1</source>
476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation>ማስቀመጫ</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>ሙቪ</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>ተሳክቶ ተጭኗል </translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>መጫን አልተቻለም</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>ምንም አካል አልተገኘም</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>መተንተን አልተቻለም</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>ፎልደር መክፋቻ</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>ፋይል መክፈቻ</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>ሁሉንም ቪዲዮዎች (*)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>መቀነሻ</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>መጠን: %1</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>ንዑስ አርእስት %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>ዘግይቷል</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>የረቀቀ</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>ፍጥነት: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>ንዑስ አርእስት (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>መመልከቻ</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>የ ሙቪ መመልከቻ ፎቶ ማንሻ</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>ተቀምጧል ወደ</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>የ መመልከቻው ፎቶ ተቀምጧል </translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>የ መመልከቻው ፎቶ ማስቀመጥ አክተቻለም </translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>ዋጋ የሌለው ፋይል: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[የ ውስጥ]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>فتح مجلد</translation>
2323 </message>
2424 <message>
141141 <message>
142142 <location filename="../common/settings_translation.cpp" line="29"/>
143143 <source>Next frame</source>
144 <translation type="unfinished"/>
144 <translation>الإطار التالي</translation>
145145 </message>
146146 <message>
147147 <location filename="../common/settings_translation.cpp" line="30"/>
148148 <source>Previous frame</source>
149 <translation type="unfinished"/>
149 <translation>الإطار السابق</translation>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>خفض الصوت</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>فتح ملف</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>إعدادات</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>سمة فاتحة</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>ملء الشاشة</translation>
282271 <translation>معلومات الفلم</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>فتح ملف</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>فتح مجلد</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>السمة الفاتحة</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
355355 <message>
356356 <location filename="../common/actions.cpp" line="144"/>
357357 <source>Next frame</source>
358 <translation type="unfinished"/>
358 <translation>الإطار التالي</translation>
359359 </message>
360360 <message>
361361 <location filename="../common/actions.cpp" line="145"/>
362362 <source>Previous frame</source>
363 <translation type="unfinished"/>
363 <translation>الإطار السابق</translation>
364364 </message>
365365 <message>
366366 <location filename="../common/actions.cpp" line="152"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>المدة: %1</translation>
465 <source>Duration: %1</source>
466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>الدقة : %1</translation>
470 <source>Resolution: %1</source>
471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>الحجم : %1</translation>
475 <source>Size: %1</source>
476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation>حفظ</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>أفلام دييبن</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>تم التحميل بنجاح</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>فشل التحميل</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>لم يتم العثور على جهاز</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>فشل التحليل</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>فتح مجلد</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>فتح ملف</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>كافة الفيديوهات (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>صامت</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>الصوت: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>ترجمة %1 : %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>مؤخر</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>متقدم</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>السرعة: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>عرض</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>لقطة شاشة للفيلم</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>حفظ في</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>تم حفظ لقطة الشاشة</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>تعذر حفظ لقطة الشاشة </translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>ملف غير صالح : %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[داخلي]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Abrir carpeta</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>Baxar volume</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Abrir un ficheru</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Axustes</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Panatalla completa</translation>
282271 <translation>Información de película</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Abrir un ficheru</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Abrir una carpeta</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>duración: %1</translation>
465 <source>Duration: %1</source>
466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>resolución: %1</translation>
470 <source>Resolution: %1</source>
471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>tamañu: %1</translation>
475 <source>Size: %1</source>
476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Guardar</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Películes Deepin</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation type="unfinished"/>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation type="unfinished"/>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Nun s&apos;alcontraron preseos</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Falló l&apos;analís</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Abrir una carpeta</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Abrir un ficheru</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Tolos vídeos (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>SIlenciáu</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volume: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Velocidá: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Ver</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Guardóse en</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Guardóse la captura de pantalla</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Ficheru non válidu: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation type="unfinished"/>
21 <source>Open folder</source>
22 <translation>Qovluğu aç</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>Səsi azalt</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Tənzimləmələr</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Tam ekran</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Fayl aç</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
283 <translation>Qovluğu aç</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288288 <translation type="unfinished"/>
289289 </message>
290290 <message>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Saxla</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Film</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation type="unfinished"/>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation type="unfinished"/>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation type="unfinished"/>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation type="unfinished"/>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation>Qovluğu aç</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Fayl aç</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation type="unfinished"/>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Səssiz</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation type="unfinished"/>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Filmin ekran görüntüsünü çəkmək</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Отвори Папка</translation>
21 <source>Open folder</source>
22 <translation>Отваряне на папка</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>Намаляване на звука</translation>
153 <source>Volume down</source>
154 <translation>Намаляване</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Отвори файл</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Настройки</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Светла тема</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Цял екран</translation>
282271 <translation>Информация за филм</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Отвори файл</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Отвори Папка</translation>
282 <source>Open folder</source>
283 <translation>Отваряне на папка</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Светла тема</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
440440 <message>
441441 <location filename="../common/actions.cpp" line="267"/>
442442 <source>Playlist</source>
443 <translation>Списък</translation>
443 <translation>Плейлист</translation>
444444 </message>
445445 <message>
446446 <location filename="../common/actions.cpp" line="268"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>времетраене: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Продължителност: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>резолюция: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Резолюция: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>размер: %1</translation>
475 <source>Size: %1</source>
476 <translation>Размер: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>запази</translation>
480 <source>Save</source>
481 <translation>Запазване</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Филми</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Успешно зареждане</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Неуспешно зареждане</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Не е открито устройство</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Разборът е неуспешен</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Отвори Папка</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
510 <source>Open folder</source>
511 <translation>Отваряне на папка</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Отвори файл</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Всички видеа (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Заглушаване</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Сила на звука: %1</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Субтитри %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>забавен</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562 <translation>разпирен</translation>
563 </message>
564 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
555 <translation>разширен</translation>
556 </message>
557 <message>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Скорост: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Субтитри (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Субтитри (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Изглед</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Снимка на филма</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Запази в</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Снимка на екрана е запазена.</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Снимка на екрана не е запазена.</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Не може да се запази снимка на кадъра</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Невалиден файл: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[вътрешен]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>ফোল্ডার খুলুন</translation>
2323 </message>
2424 <message>
141141 <message>
142142 <location filename="../common/settings_translation.cpp" line="29"/>
143143 <source>Next frame</source>
144 <translation type="unfinished"/>
144 <translation>পরবর্তী ফ্রেম</translation>
145145 </message>
146146 <message>
147147 <location filename="../common/settings_translation.cpp" line="30"/>
148148 <source>Previous frame</source>
149 <translation type="unfinished"/>
149 <translation>পূর্বের ফ্রেম</translation>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>শব্দ কমান</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>ফাইল খুলুন</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>সেটিংস</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>হালকা থিম</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>সম্পূর্ণ পর্দা</translation>
282271 <translation>ফিল্মের তথ্য</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>ফাইল খুলুন</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>ফোল্ডার খুলুন</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>হালকা থিম</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
355355 <message>
356356 <location filename="../common/actions.cpp" line="144"/>
357357 <source>Next frame</source>
358 <translation type="unfinished"/>
358 <translation>পরের ফ্রেম</translation>
359359 </message>
360360 <message>
361361 <location filename="../common/actions.cpp" line="145"/>
362362 <source>Previous frame</source>
363 <translation type="unfinished"/>
363 <translation>পূর্বের ফ্রেম</translation>
364364 </message>
365365 <message>
366366 <location filename="../common/actions.cpp" line="152"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation>সময়কাল: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>রেজোলিউশন: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>রেজূূলিউশন: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation>আকার: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation>সংরক্ষণ করুন</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>ডিপিন মুভি</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>সফলভাবে লোড হয়েছে</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>লোড করতে বার্থ হয়েছে</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>কোনো ডিভাইস পাওয়া যায়নি</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>শব্দবিশ্লেষণ করতে ব্যর্থ হয়েছে</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>ফোল্ডার খুলুন</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>ফাইল খুলুন</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>সকল ভিডিওসমূহ(%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>নীরব করা হয়েছে</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>শব্দ: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>সাবটাইটেল %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>বিলম্ব করা হয়েছে</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>অ্যাডভান্সড</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>গতি: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>সাবটাইটেল (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>সাবটাইটেল (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>দেখুন</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>মুভি স্ক্রিনশট</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>এখানে সংরক্ষণ করুন</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>স্ক্রিনশটটি সংরক্ষণ করা হয়েছে</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>স্ক্রিনশটটি সংরক্ষণ করতে বার্থ হয়েছে</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>স্ক্রিনশট সংরক্ষণ করতে বার্থ হয়েছে</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>অবধৈ ফাইল: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[অভ্যন্তরীণ]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Obre una carpeta</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>volum avall</translation>
153 <source>Volume down</source>
154 <translation>Volum avall</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Obre un fitxer</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Configuració</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Tema clar</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Pantalla completa</translation>
282271 <translation>Informació de la pel·lícula</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Obre un fitxer</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Obre una carpeta</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Tema clar</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>durada: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Durada: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>resolució: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Resolució: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>mida: %1</translation>
475 <source>Size: %1</source>
476 <translation>Mida: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>desa</translation>
480 <source>Save</source>
481 <translation>Desa</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Pel·lícula del Deepin</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Càrrega correcta</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Ha fallat la càrrega.</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>No s&apos;ha trobat cap dispositiu.</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Ha fallat l&apos;anàlisi</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Obre una carpeta</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Obre un fitxer</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Tots els vídeos (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Silenciat</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volum: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Subtítol %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>ajornat</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>avançat</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Velocitat: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Subtítol (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Subtítols (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Visualització</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Captura de pantalla de la pel·lícula</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Desada a</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>La captura s&apos;ha desat.</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Ha fallat desar la captura.</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Ha fallat desar la captura de pantalla.</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Fitxer no vàlid: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1 G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1 M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1 K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[intern]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Otevřít složku</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>Snížit hlasitost</translation>
153 <source>Volume down</source>
154 <translation>Tišeji</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Otevřít soubor</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Nastavení</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Světlý vzhled</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Celá obrazovka</translation>
282271 <translation>Údaje o filmu</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Otevřít soubor</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Otevřít složku</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Světlý vzhled</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation>Doba trvání: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation>Rozlišení: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation>Velikost: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation>Uložit</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Filmy</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Nahráno úspěšně!</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Nepodařilo se nahrát</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Nenalezeno žádné zařízení</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Nepodařilo se zpracovat</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Otevřít složku</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Otevřít soubor</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Všechna videa (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Ztlumeno</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Hlasitost: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Titulky %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>Zpožděno</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>Pokročeno</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Rychlost: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Titulky (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Pohled</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Snímek filmového záběru</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Uloženo do</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Snímek obrazovky je uložen</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
600593 <translation>Snímek obrazovky se nepodařilo uložit</translation>
601594 </message>
602595 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Neplatný soubor: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1 G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1 M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1 K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[vnitřní]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Åbn mappe</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Lavere</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Åbn fil</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Indstillinger</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Lyst tema</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Fuldskærm</translation>
282271 <translation>Filminfo</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Åbn fil</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Åbn mappe</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Lyst tema</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>varighed: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Varighed: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>opløsning: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Opløsning: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>størrelse: %1</translation>
475 <source>Size: %1</source>
476 <translation>Størrelse: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>gem</translation>
480 <source>Save</source>
481 <translation>Gem</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin film</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Indlæsning lykkedes</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Indlæsning mislykkedes</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Ingen enhed fundet</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Fortolkning mislykkedes</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Åbn mappe</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Åbn fil</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Alle videoer (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Lydløst</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Lydstyrke: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Undertekst %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>forsinket</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>fremskudt</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Hastighed: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Undertekst (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Undertekst (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Vis</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>film skærmbillede</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Gemt til</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Skærmbilledet er gemt</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Skærmbilledet kunne ikke gemmes</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Kunne ikke gemme skærmbilledet</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Ugyldig fil: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[intern]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Ordner öffnen</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Lautstärke verringern</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Datei öffnen</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Einstellungen</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Helles Design</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Vollbild</translation>
282271 <translation>Filminfo</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Öffne Datei</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Ordner öffnen</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Helles Thema</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation>Dauer: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation>Auflösung: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation>Größe: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation>Speichern</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Film</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Erfolgreich geladen</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Laden fehlgeschlagen</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Kein Gerät gefunden</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Auslesen fehlgeschlagen</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Ordner öffnen</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation>Datei öffnen</translation>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Öffne Datei</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Alle Filme (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Stumm</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Lautstärke: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Untertitel %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>verzögert</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>vorgerückt</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Geschwindigkeit: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Untertitel (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Untertitel (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Ansicht</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Film-Screenshot</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Gespeichert in</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Screenshot gespeichert</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Fehler: Screenshot nicht gespeichert</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Bild konnte nicht gespeichert werden</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Ungültige Datei: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[intern]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Άνοιγμα φακέλου</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>Μείωση έντασης</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Ρυθμίσεις</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Πλήρης οθόνη</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Άνοιγμα αρχείου</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Άνοιγμα φακέλου</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
305305 <message>
306306 <location filename="../common/actions.cpp" line="115"/>
307307 <source>Play Mode</source>
308 <translation type="unfinished"/>
308 <translation>Λειτουργία αναπαραγωγής</translation>
309309 </message>
310310 <message>
311311 <location filename="../common/actions.cpp" line="118"/>
455455 <message>
456456 <location filename="../common/actions.cpp" line="283"/>
457457 <source>Display in file manager</source>
458 <translation type="unfinished"/>
458 <translation>Προβολή στη διαχείριση αρχείων</translation>
459459 </message>
460460 </context>
461461 <context>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Αποθήκευση</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Ταινίες Deepin</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation type="unfinished"/>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation type="unfinished"/>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation type="unfinished"/>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation type="unfinished"/>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Άνοιγμα φακέλου</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Άνοιγμα αρχείου</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation type="unfinished"/>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Σε σίγαση</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation type="unfinished"/>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Εμφάνιση</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Στιγμιότυπο οθόνης Ταινίας</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
626642 <message>
627643 <location filename="../widgets/movieinfo_dialog.cpp" line="121"/>
628644 <source>Duration:</source>
629 <translation type="unfinished"/>
645 <translation>Διάρκεια:</translation>
630646 </message>
631647 <message>
632648 <location filename="../widgets/movieinfo_dialog.cpp" line="126"/>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Open Folder</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>Volume down</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Settings</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Fullscreen</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Open file</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Open Folder</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Save</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Movie</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Open file</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Open Folder</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation type="unfinished"/>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation type="unfinished"/>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Agordoj</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Tutekrana</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation type="unfinished"/>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288288 <translation type="unfinished"/>
289289 </message>
290290 <message>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Gardi</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Filmujo</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Abrir carpeta</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
2626 <source>You don&apos;t have permission to operate this folder</source>
27 <translation>No tiene permiso para operar esta carpeta</translation>
27 <translation>No tiene permiso para operar en esta carpeta</translation>
2828 </message>
2929 <message>
3030 <location filename="../common/settings_translation.cpp" line="5"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>bajar bolumen</translation>
153 <source>Volume down</source>
154 <translation>Bajar volumen</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Abrir Archivo</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Configuración</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Tema Claro</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Pantalla completa</translation>
282271 <translation>Información del vídeo</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Abrir archivo</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Abrir carpeta</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Tema Claro</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation>duración: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation>resolución: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation>tamaño: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation>Guardar</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Movie</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Carga exitosa</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Carga fallida</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Dispositivo no encontrado</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Pase fallido</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Abrir carpeta</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Abrir archivo</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Todos los vídeos (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Silenciado</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volumen: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Subtítulo %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>retrasado</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>avanzado</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Velocidad: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Subtítulo (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Subtítulo (* .ass * .aqt * .jss * .gsub * .ssf * .srt * .sub * .ssa * .smi * .usf * .idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Ver</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Captura de pantalla de vídeo</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Guardado a</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>La captura de pantalla fue guardada</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>La captura de pantalla no se pudo guardar</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Falló al guardar la captura</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Archivo inválido: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[interno]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Abrir carpeta</translation>
21 <source>Open folder</source>
22 <translation>Abrir Carpeta</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
141141 <message>
142142 <location filename="../common/settings_translation.cpp" line="29"/>
143143 <source>Next frame</source>
144 <translation type="unfinished"/>
144 <translation>Siguiente fotograma</translation>
145145 </message>
146146 <message>
147147 <location filename="../common/settings_translation.cpp" line="30"/>
148148 <source>Previous frame</source>
149 <translation type="unfinished"/>
149 <translation>Anterior fotograma</translation>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>bajar bolumen</translation>
153 <source>Volume down</source>
154 <translation>Bajar volumen</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Abrir Archivo</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Configuración</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Tema Claro</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Pantalla completa</translation>
282271 <translation>Detalle del vídeo</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Abrir archivo</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Abrir carpeta</translation>
282 <source>Open folder</source>
283 <translation>Abrir Carpeta</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Tema Claro</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
355355 <message>
356356 <location filename="../common/actions.cpp" line="144"/>
357357 <source>Next frame</source>
358 <translation type="unfinished"/>
358 <translation>Siguiente fotograma</translation>
359359 </message>
360360 <message>
361361 <location filename="../common/actions.cpp" line="145"/>
362362 <source>Previous frame</source>
363 <translation type="unfinished"/>
363 <translation>Anterior fotograma</translation>
364364 </message>
365365 <message>
366366 <location filename="../common/actions.cpp" line="152"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>duración: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Duración %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>resolución: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Resolución %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>tamaño: %1</translation>
475 <source>Size: %1</source>
476 <translation>Tamaño %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation>Guardar</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Movie</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Carga exitosa</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Carga fallida</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Dispositivo no encontrado</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Pase fallido</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Abrir carpeta</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
510 <source>Open folder</source>
511 <translation>Abrir Carpeta</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Abrir archivo</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Todos los videos (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Silenciado</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volumen: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Subtítulo %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>retrasado</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>avanzado</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Velocidad: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Subtítulo (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Subtitulos (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Ver</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Captura de pantalla de vídeo</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Guardado a</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>La captura de pantalla fue guardada</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>La captura de pantalla no se pudo guardar</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Error al guardar la captura de pantalla</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Archivo inválido: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[interno]</translation>
644660 </message>
99 <message>
1010 <location filename="../main.cpp" line="89"/>
1111 <source>Deepin Movie is a well-designed and full-featured video player with simple borderless design. It supports local and streaming media play with multiple video formats.</source>
12 <translation type="unfinished"/>
12 <translation>دیپین مووی یک پخش کننده ویدئویی با طراحی خوب و کامل با طراحی ساده و بدون محدودیت است. این برنامه از پخش رسانه های محلی و استریم با فرمت های مختلف ویدیویی پشتیبانی می کند.</translation>
1313 </message>
1414 <message>
1515 <location filename="../common/mainwindow.cpp" line="116"/>
1616 <source>Invalid folder</source>
17 <translation type="unfinished"/>
17 <translation>پوشه نامعتبر</translation>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>باز کردن پوشه</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
2626 <source>You don&apos;t have permission to operate this folder</source>
27 <translation type="unfinished"/>
27 <translation>شما مجوز کار با این پوشه را ندارید</translation>
2828 </message>
2929 <message>
3030 <location filename="../common/settings_translation.cpp" line="5"/>
3131 <source>Auto add similar files to play</source>
32 <translation type="unfinished"/>
32 <translation>به صورت خودکار فایل های مشابه را برای اجرا اضافه کن</translation>
3333 </message>
3434 <message>
3535 <location filename="../common/settings_translation.cpp" line="6"/>
3636 <source>Clear playlist when exit</source>
37 <translation type="unfinished"/>
37 <translation>پاک کردن لیست پخش هنگام خروج</translation>
3838 </message>
3939 <message>
4040 <location filename="../common/settings_translation.cpp" line="7"/>
4141 <source>Show video preview on mouseover</source>
42 <translation type="unfinished"/>
42 <translation>نمایش پیش نمایش ویدیو با اشاره ماوس</translation>
4343 </message>
4444 <message>
4545 <location filename="../common/settings_translation.cpp" line="8"/>
4646 <source>Open a new player for each file played</source>
47 <translation type="unfinished"/>
47 <translation>باز کردن یک پلیر جدید برای هر فایل اجرا شده</translation>
4848 </message>
4949 <message>
5050 <location filename="../common/settings_translation.cpp" line="9"/>
5151 <source>Pause when minimized</source>
52 <translation type="unfinished"/>
52 <translation>توقف در هنگام کمینه</translation>
5353 </message>
5454 <message>
5555 <location filename="../common/settings_translation.cpp" line="10"/>
5959 <message>
6060 <location filename="../common/settings_translation.cpp" line="11"/>
6161 <source>Path</source>
62 <translation type="unfinished"/>
62 <translation>مسیر</translation>
6363 </message>
6464 <message>
6565 <location filename="../common/settings_translation.cpp" line="12"/>
8585 <message>
8686 <location filename="../common/settings_translation.cpp" line="16"/>
8787 <source>File</source>
88 <translation type="unfinished"/>
88 <translation>فایل</translation>
8989 </message>
9090 <message>
9191 <location filename="../common/settings_translation.cpp" line="17"/>
9292 <source>Frame/Sound</source>
93 <translation type="unfinished"/>
93 <translation>فریم/صدا</translation>
9494 </message>
9595 <message>
9696 <location filename="../common/settings_translation.cpp" line="18"/>
9797 <source>Playback</source>
98 <translation type="unfinished"/>
98 <translation>بازنواخت</translation>
9999 </message>
100100 <message>
101101 <location filename="../common/settings_translation.cpp" line="20"/>
102102 <location filename="../common/settings_translation.cpp" line="21"/>
103103 <source>Subtitle</source>
104 <translation type="unfinished"/>
104 <translation>زیرنویس</translation>
105105 </message>
106106 <message>
107107 <location filename="../common/settings_translation.cpp" line="22"/>
108108 <source>Font Style</source>
109 <translation type="unfinished"/>
109 <translation>سبک فونت</translation>
110110 </message>
111111 <message>
112112 <location filename="../common/settings_translation.cpp" line="23"/>
116116 <message>
117117 <location filename="../common/settings_translation.cpp" line="24"/>
118118 <source>Open file</source>
119 <translation type="unfinished"/>
119 <translation>باز کردن فایل</translation>
120120 </message>
121121 <message>
122122 <location filename="../common/settings_translation.cpp" line="25"/>
123123 <source>Open next</source>
124 <translation type="unfinished"/>
124 <translation>باز کردن بعدی</translation>
125125 </message>
126126 <message>
127127 <location filename="../common/settings_translation.cpp" line="26"/>
128128 <source>Open previous</source>
129 <translation type="unfinished"/>
129 <translation>باز کردن قبلی</translation>
130130 </message>
131131 <message>
132132 <location filename="../common/settings_translation.cpp" line="27"/>
133133 <source>Mini mode</source>
134 <translation type="unfinished"/>
134 <translation>حالت کوچک</translation>
135135 </message>
136136 <message>
137137 <location filename="../common/settings_translation.cpp" line="28"/>
141141 <message>
142142 <location filename="../common/settings_translation.cpp" line="29"/>
143143 <source>Next frame</source>
144 <translation type="unfinished"/>
144 <translation>فریم بعدی</translation>
145145 </message>
146146 <message>
147147 <location filename="../common/settings_translation.cpp" line="30"/>
148148 <source>Previous frame</source>
149 <translation type="unfinished"/>
149 <translation>فریم قبلی</translation>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>کاهش صدا</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
161161 <message>
162162 <location filename="../common/settings_translation.cpp" line="33"/>
163163 <source>Speed up</source>
164 <translation type="unfinished"/>
164 <translation>افزایش سرعت</translation>
165165 </message>
166166 <message>
167167 <location filename="../common/settings_translation.cpp" line="34"/>
168168 <source>Speed down</source>
169 <translation type="unfinished"/>
169 <translation>کاهش سرعت</translation>
170170 </message>
171171 <message>
172172 <location filename="../common/settings_translation.cpp" line="35"/>
176176 <message>
177177 <location filename="../common/settings_translation.cpp" line="36"/>
178178 <source>Pause/Play</source>
179 <translation type="unfinished"/>
179 <translation>وقفه/اجرا</translation>
180180 </message>
181181 <message>
182182 <location filename="../common/settings_translation.cpp" line="37"/>
186186 <message>
187187 <location filename="../common/settings_translation.cpp" line="38"/>
188188 <source>Reset speed</source>
189 <translation type="unfinished"/>
189 <translation>برگرداندن سرعت</translation>
190190 </message>
191191 <message>
192192 <location filename="../common/settings_translation.cpp" line="39"/>
193193 <source>Rewind</source>
194 <translation type="unfinished"/>
194 <translation>به عقب</translation>
195195 </message>
196196 <message>
197197 <location filename="../common/settings_translation.cpp" line="40"/>
198198 <source>Forward</source>
199 <translation type="unfinished"/>
199 <translation>به جلو</translation>
200200 </message>
201201 <message>
202202 <location filename="../common/settings_translation.cpp" line="41"/>
203203 <source>Burst screenshot</source>
204 <translation type="unfinished"/>
204 <translation>عکس گرفتن</translation>
205205 </message>
206206 <message>
207207 <location filename="../common/settings_translation.cpp" line="42"/>
208208 <source>Film screenshot</source>
209 <translation type="unfinished"/>
209 <translation>عکس گرفتن از فیلم</translation>
210210 </message>
211211 <message>
212212 <location filename="../common/settings_translation.cpp" line="43"/>
213213 <source>0.5s backward</source>
214 <translation type="unfinished"/>
214 <translation>0.5s رو به عقب </translation>
215215 </message>
216216 <message>
217217 <location filename="../common/settings_translation.cpp" line="44"/>
218218 <source>0.5s forward</source>
219 <translation type="unfinished"/>
219 <translation>0.5s رو به جلو </translation>
220220 </message>
221221 <message>
222222 <location filename="../common/settings_translation.cpp" line="45"/>
226226 <message>
227227 <location filename="../common/settings_translation.cpp" line="46"/>
228228 <source>Font Size</source>
229 <translation type="unfinished"/>
229 <translation>سایز فونت</translation>
230230 </message>
231231 </context>
232232 <context>
244244 <message>
245245 <location filename="../widgets/url_dialog.cpp" line="46"/>
246246 <source>Please enter the URL:</source>
247 <translation type="unfinished"/>
247 <translation>لطفا URL را وارد نمایید</translation>
248248 </message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>تنظیمات</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>تمام صفحه</translation>
274263 <message>
275264 <location filename="../common/actions.cpp" line="110"/>
276265 <source>Always on Top</source>
277 <translation type="unfinished"/>
266 <translation>همیشه رو باشد</translation>
278267 </message>
279268 <message>
280269 <location filename="../common/actions.cpp" line="284"/>
281270 <source>Film info</source>
282 <translation type="unfinished"/>
271 <translation>دریاره فیلم</translation>
272 </message>
273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>باز کردن فایل</translation>
283278 </message>
284279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>باز کردن پوشه</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>تم روشن</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
292292 <source>Open URL</source>
293 <translation type="unfinished"/>
293 <translation>باز کردن URL </translation>
294294 </message>
295295 <message>
296296 <location filename="../common/actions.cpp" line="105"/>
297297 <source>Open CD/DVD</source>
298 <translation type="unfinished"/>
298 <translation>باز کردن CD/DVF</translation>
299299 </message>
300300 <message>
301301 <location filename="../common/actions.cpp" line="109"/>
302302 <source>Mini Mode</source>
303 <translation type="unfinished"/>
303 <translation>حالت کوچک</translation>
304304 </message>
305305 <message>
306306 <location filename="../common/actions.cpp" line="115"/>
310310 <message>
311311 <location filename="../common/actions.cpp" line="118"/>
312312 <source>Order Play</source>
313 <translation type="unfinished"/>
313 <translation>اجرای سفارشی</translation>
314314 </message>
315315 <message>
316316 <location filename="../common/actions.cpp" line="119"/>
317317 <source>Shuffle Play</source>
318 <translation type="unfinished"/>
318 <translation>اجرای درهم</translation>
319319 </message>
320320 <message>
321321 <location filename="../common/actions.cpp" line="120"/>
322322 <source>Single Play</source>
323 <translation type="unfinished"/>
323 <translation>اجرای تک</translation>
324324 </message>
325325 <message>
326326 <location filename="../common/actions.cpp" line="121"/>
335335 <message>
336336 <location filename="../common/actions.cpp" line="129"/>
337337 <source>Frame</source>
338 <translation type="unfinished"/>
338 <translation>فریم</translation>
339339 </message>
340340 <message>
341341 <location filename="../common/actions.cpp" line="132"/>
345345 <message>
346346 <location filename="../common/actions.cpp" line="140"/>
347347 <source>Clockwise</source>
348 <translation type="unfinished"/>
348 <translation>ساعت گرد</translation>
349349 </message>
350350 <message>
351351 <location filename="../common/actions.cpp" line="141"/>
352352 <source>Counterclockwise</source>
353 <translation type="unfinished"/>
353 <translation>پاد ساعتگرد</translation>
354354 </message>
355355 <message>
356356 <location filename="../common/actions.cpp" line="144"/>
357357 <source>Next frame</source>
358 <translation type="unfinished"/>
358 <translation>فریم بعدی</translation>
359359 </message>
360360 <message>
361361 <location filename="../common/actions.cpp" line="145"/>
362362 <source>Previous frame</source>
363 <translation type="unfinished"/>
363 <translation>فریم قبلی</translation>
364364 </message>
365365 <message>
366366 <location filename="../common/actions.cpp" line="152"/>
375375 <message>
376376 <location filename="../common/actions.cpp" line="158"/>
377377 <source>Stereo</source>
378 <translation type="unfinished"/>
378 <translation>استریو</translation>
379379 </message>
380380 <message>
381381 <location filename="../common/actions.cpp" line="159"/>
382382 <source>Left channel</source>
383 <translation type="unfinished"/>
383 <translation>کانال چپ</translation>
384384 </message>
385385 <message>
386386 <location filename="../common/actions.cpp" line="160"/>
387387 <source>Right channel</source>
388 <translation type="unfinished"/>
388 <translation>کانال راست</translation>
389389 </message>
390390 <message>
391391 <location filename="../common/actions.cpp" line="166"/>
392392 <source>Track</source>
393 <translation type="unfinished"/>
393 <translation>ترک</translation>
394394 </message>
395395 <message>
396396 <location filename="../common/actions.cpp" line="176"/>
397397 <source>Subtitle</source>
398 <translation type="unfinished"/>
398 <translation>زیرنویس</translation>
399399 </message>
400400 <message>
401401 <location filename="../common/actions.cpp" line="177"/>
402402 <source>Load</source>
403 <translation type="unfinished"/>
403 <translation>بارگذاری</translation>
404404 </message>
405405 <message>
406406 <location filename="../common/actions.cpp" line="178"/>
407407 <source>Online Search</source>
408 <translation type="unfinished"/>
408 <translation>جستجوی آنلاین</translation>
409409 </message>
410410 <message>
411411 <location filename="../common/actions.cpp" line="182"/>
415415 <message>
416416 <location filename="../common/actions.cpp" line="186"/>
417417 <source>Hide</source>
418 <translation type="unfinished"/>
418 <translation>مخفی</translation>
419419 </message>
420420 <message>
421421 <location filename="../common/actions.cpp" line="190"/>
422422 <source>Encodings</source>
423 <translation type="unfinished"/>
423 <translation>رمزگذاری</translation>
424424 </message>
425425 <message>
426426 <location filename="../common/actions.cpp" line="258"/>
430430 <message>
431431 <location filename="../common/actions.cpp" line="259"/>
432432 <source>Film Screenshot</source>
433 <translation type="unfinished"/>
433 <translation>عکس از فیلم</translation>
434434 </message>
435435 <message>
436436 <location filename="../common/actions.cpp" line="260"/>
437437 <source>Burst Shooting</source>
438 <translation type="unfinished"/>
438 <translation>عکس متوالی</translation>
439439 </message>
440440 <message>
441441 <location filename="../common/actions.cpp" line="267"/>
445445 <message>
446446 <location filename="../common/actions.cpp" line="268"/>
447447 <source>Film Info</source>
448 <translation type="unfinished"/>
448 <translation>درباره فیلم</translation>
449449 </message>
450450 <message>
451451 <location filename="../common/actions.cpp" line="282"/>
452452 <source>Clear playlist</source>
453 <translation type="unfinished"/>
453 <translation>پاک کردن لیست اجرا</translation>
454454 </message>
455455 <message>
456456 <location filename="../common/actions.cpp" line="283"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation type="unfinished"/>
465 <source>Duration: %1</source>
466 <translation>مدت زمان 1%</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation type="unfinished"/>
470 <source>Resolution: %1</source>
471 <translation>وضوح 1%</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation type="unfinished"/>
475 <source>Size: %1</source>
476 <translation>سایز 1%</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>ذخیره</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Movie (نرم افزار تماشای فیلم دیپین)</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation>با موفقیت بازگذاری شد</translation>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation>بارگذاری ناموفق بود</translation>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation>دستگاهی پیدا نشد</translation>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation>تجزیه شکست خورد</translation>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation>باز کردن پوشه</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>باز کردن فایل</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation>همه ویدیو ها (1%)</translation>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation>بی صدا شده</translation>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation>صدا %1%</translation>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>باز کردن پوشه</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550 <translation type="unfinished"/>
551 </message>
552 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
543 <translation>زیرنویس %1:s2%</translation>
544 </message>
545 <message>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556 <translation type="unfinished"/>
557 </message>
558 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
549 <translation>تعویق افتاده</translation>
550 </message>
551 <message>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562 <translation type="unfinished"/>
563 </message>
564 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
555 <translation>پیشرفته</translation>
556 </message>
557 <message>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569 <translation type="unfinished"/>
570 </message>
571 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
562 <translation>سرعت: x1%</translation>
563 </message>
564 <message>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>زیرنویس (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579 <translation type="unfinished"/>
580 </message>
581 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
572 <translation>نما</translation>
573 </message>
574 <message>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584 <translation type="unfinished"/>
585 </message>
586 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
577 <translation>اسکرین شات از فیلم</translation>
578 </message>
579 <message>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589 <translation type="unfinished"/>
590 </message>
591 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
582 <translation>ذخیره شده در</translation>
583 </message>
584 <message>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595 <translation type="unfinished"/>
596 </message>
597 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
588 <translation>اسکرین شات ذخیره شد</translation>
589 </message>
590 <message>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>اسکرین شات نتوانست ذخیره شود</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606 <translation type="unfinished"/>
599 <translation>فابل نامعتبر : 1%</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
611627 <message>
612628 <location filename="../widgets/movieinfo_dialog.cpp" line="118"/>
613629 <source>File Type:</source>
614 <translation type="unfinished"/>
630 <translation>نوع فایل :</translation>
615631 </message>
616632 <message>
617633 <location filename="../widgets/movieinfo_dialog.cpp" line="119"/>
618634 <source>Resolution:</source>
619 <translation type="unfinished"/>
635 <translation>وضوح :</translation>
620636 </message>
621637 <message>
622638 <location filename="../widgets/movieinfo_dialog.cpp" line="120"/>
623639 <source>File Size:</source>
624 <translation type="unfinished"/>
640 <translation>حجم فایل : </translation>
625641 </message>
626642 <message>
627643 <location filename="../widgets/movieinfo_dialog.cpp" line="121"/>
631647 <message>
632648 <location filename="../widgets/movieinfo_dialog.cpp" line="126"/>
633649 <source>File Path:</source>
634 <translation type="unfinished"/>
650 <translation>مسیر فایل :</translation>
635651 </message>
636652 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643 <translation type="unfinished"/>
659 <translation>[داخلی]</translation>
644660 </message>
645661 </context>
646662 <context>
650666 <location filename="../widgets/playlist_widget.cpp" line="227"/>
651667 <location filename="../widgets/playlist_widget.cpp" line="402"/>
652668 <source>File does not exist</source>
653 <translation type="unfinished"/>
669 <translation>فایل وجود ندارد</translation>
654670 </message>
655671 </context>
656672 <context>
658674 <message>
659675 <location filename="../common/dmr_settings.cpp" line="155"/>
660676 <source>%1/DMovie%2.jpg</source>
661 <translation type="unfinished"/>
677 <translation>%1/DMovie%2.jpg</translation>
662678 </message>
663679 <message>
664680 <location filename="../common/dmr_settings.cpp" line="161"/>
665681 <source>%1/DMovie%2(%3).jpg</source>
666 <translation type="unfinished"/>
682 <translation>%1/DMovie%2(%3).jpg</translation>
667683 </message>
668684 </context>
669685 <context>
689705 <location filename="../widgets/toolbox_proxy.cpp" line="687"/>
690706 <location filename="../widgets/toolbox_proxy.cpp" line="697"/>
691707 <source>Subtitles</source>
692 <translation type="unfinished"/>
708 <translation>زیرنویس ها</translation>
693709 </message>
694710 <message>
695711 <location filename="../widgets/toolbox_proxy.cpp" line="688"/>
713729 <message>
714730 <location filename="../widgets/toolbox_proxy.cpp" line="873"/>
715731 <source>Exit fullscreen</source>
716 <translation type="unfinished"/>
732 <translation>خروج از تمام صفحه</translation>
717733 </message>
718734 <message>
719735 <location filename="../widgets/toolbox_proxy.cpp" line="886"/>
44 <location filename="../main.cpp" line="88"/>
55 <location filename="../main.cpp" line="120"/>
66 <source>Deepin Movie</source>
7 <translation>Deepin Elokuva</translation>
7 <translation>Deepin Elokuvat</translation>
88 </message>
99 <message>
1010 <location filename="../main.cpp" line="89"/>
1111 <source>Deepin Movie is a well-designed and full-featured video player with simple borderless design. It supports local and streaming media play with multiple video formats.</source>
12 <translation>Deepin Movie on erinomaisesti suunniteltu ja kattavilla ominaisuuksilla varusteltu simppeli ja rajaton videosoitin. Se tulee useiden eri videoalustojen paikallis- ja suoratoistosoittoa.</translation>
12 <translation>Deepin Elokuva on erinomaisesti suunniteltu ja kattavilla ominaisuuksilla varusteltu yksinkertainen ja tyylikäs videosoitin. Se tukee useiden eri videoformaattien paikallis- ja suoratoistosoittoa.</translation>
1313 </message>
1414 <message>
1515 <location filename="../common/mainwindow.cpp" line="116"/>
1616 <source>Invalid folder</source>
17 <translation type="unfinished"/>
17 <translation>Virheellinen kansio</translation>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Avaa kansio</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
2626 <source>You don&apos;t have permission to operate this folder</source>
27 <translation type="unfinished"/>
27 <translation>Sinulla ei ole lupaa käyttää tätä kansiota</translation>
2828 </message>
2929 <message>
3030 <location filename="../common/settings_translation.cpp" line="5"/>
3131 <source>Auto add similar files to play</source>
32 <translation type="unfinished"/>
32 <translation>Lisää samankaltaisia tiedostoja automaattisesti</translation>
3333 </message>
3434 <message>
3535 <location filename="../common/settings_translation.cpp" line="6"/>
3636 <source>Clear playlist when exit</source>
37 <translation type="unfinished"/>
37 <translation>Tyhjennä soittolista lopettaessasi</translation>
3838 </message>
3939 <message>
4040 <location filename="../common/settings_translation.cpp" line="7"/>
4141 <source>Show video preview on mouseover</source>
42 <translation type="unfinished"/>
42 <translation>Näytä videon esikatselukuva hiirellä</translation>
4343 </message>
4444 <message>
4545 <location filename="../common/settings_translation.cpp" line="8"/>
4646 <source>Open a new player for each file played</source>
47 <translation type="unfinished"/>
47 <translation>Avaa uusi soitin jokaiselle toistetulle tiedostolle</translation>
4848 </message>
4949 <message>
5050 <location filename="../common/settings_translation.cpp" line="9"/>
5454 <message>
5555 <location filename="../common/settings_translation.cpp" line="10"/>
5656 <source>Remember playback position</source>
57 <translation type="unfinished"/>
57 <translation>Muista toiston sijainti</translation>
5858 </message>
5959 <message>
6060 <location filename="../common/settings_translation.cpp" line="11"/>
7575 <location filename="../common/settings_translation.cpp" line="14"/>
7676 <location filename="../common/settings_translation.cpp" line="19"/>
7777 <source>Screenshot</source>
78 <translation>Ruudunkaappaus</translation>
78 <translation>Kuvakaappaus</translation>
7979 </message>
8080 <message>
8181 <location filename="../common/settings_translation.cpp" line="15"/>
9090 <message>
9191 <location filename="../common/settings_translation.cpp" line="17"/>
9292 <source>Frame/Sound</source>
93 <translation>Kehykset/Äänet</translation>
93 <translation>Kuvaruudut/Ääni</translation>
9494 </message>
9595 <message>
9696 <location filename="../common/settings_translation.cpp" line="18"/>
101101 <location filename="../common/settings_translation.cpp" line="20"/>
102102 <location filename="../common/settings_translation.cpp" line="21"/>
103103 <source>Subtitle</source>
104 <translation type="unfinished"/>
104 <translation>Tekstitys</translation>
105105 </message>
106106 <message>
107107 <location filename="../common/settings_translation.cpp" line="22"/>
108108 <source>Font Style</source>
109 <translation type="unfinished"/>
109 <translation>Fonttityyli</translation>
110110 </message>
111111 <message>
112112 <location filename="../common/settings_translation.cpp" line="23"/>
113113 <source>Restore Defaults</source>
114 <translation>Palauta Oletusasetukset</translation>
114 <translation>Palauta oletukset</translation>
115115 </message>
116116 <message>
117117 <location filename="../common/settings_translation.cpp" line="24"/>
136136 <message>
137137 <location filename="../common/settings_translation.cpp" line="28"/>
138138 <source>Mute</source>
139 <translation>Mykistä</translation>
139 <translation>Vaienna</translation>
140140 </message>
141141 <message>
142142 <location filename="../common/settings_translation.cpp" line="29"/>
143143 <source>Next frame</source>
144 <translation type="unfinished"/>
144 <translation>Seuraava kuvaruutu</translation>
145145 </message>
146146 <message>
147147 <location filename="../common/settings_translation.cpp" line="30"/>
148148 <source>Previous frame</source>
149 <translation type="unfinished"/>
149 <translation>Edellinen kuvaruutu</translation>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>Äänitaso alas</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
158158 <source>Volume up</source>
159 <translation>Volyymi ylös</translation>
159 <translation>Äänitaso ylös</translation>
160160 </message>
161161 <message>
162162 <location filename="../common/settings_translation.cpp" line="33"/>
163163 <source>Speed up</source>
164 <translation type="unfinished"/>
164 <translation>Nopeuta</translation>
165165 </message>
166166 <message>
167167 <location filename="../common/settings_translation.cpp" line="34"/>
168168 <source>Speed down</source>
169 <translation type="unfinished"/>
169 <translation>Hidasta</translation>
170170 </message>
171171 <message>
172172 <location filename="../common/settings_translation.cpp" line="35"/>
186186 <message>
187187 <location filename="../common/settings_translation.cpp" line="38"/>
188188 <source>Reset speed</source>
189 <translation type="unfinished"/>
189 <translation>Nollaa nopeus</translation>
190190 </message>
191191 <message>
192192 <location filename="../common/settings_translation.cpp" line="39"/>
193193 <source>Rewind</source>
194 <translation>Kelaa taaksepäin</translation>
194 <translation>Taaksepäin</translation>
195195 </message>
196196 <message>
197197 <location filename="../common/settings_translation.cpp" line="40"/>
201201 <message>
202202 <location filename="../common/settings_translation.cpp" line="41"/>
203203 <source>Burst screenshot</source>
204 <translation>Purske-kuvankaappaus</translation>
204 <translation>Kuvakaappaus sarja</translation>
205205 </message>
206206 <message>
207207 <location filename="../common/settings_translation.cpp" line="42"/>
208208 <source>Film screenshot</source>
209 <translation type="unfinished"/>
209 <translation>Filmin kuvakaappaus</translation>
210210 </message>
211211 <message>
212212 <location filename="../common/settings_translation.cpp" line="43"/>
213213 <source>0.5s backward</source>
214 <translation type="unfinished"/>
214 <translation>0.5s taaksepäin</translation>
215215 </message>
216216 <message>
217217 <location filename="../common/settings_translation.cpp" line="44"/>
218218 <source>0.5s forward</source>
219 <translation type="unfinished"/>
219 <translation>0.5s eteenpäin</translation>
220220 </message>
221221 <message>
222222 <location filename="../common/settings_translation.cpp" line="45"/>
226226 <message>
227227 <location filename="../common/settings_translation.cpp" line="46"/>
228228 <source>Font Size</source>
229 <translation type="unfinished"/>
229 <translation>Fonttikoko</translation>
230230 </message>
231231 </context>
232232 <context>
244244 <message>
245245 <location filename="../widgets/url_dialog.cpp" line="46"/>
246246 <source>Please enter the URL:</source>
247 <translation type="unfinished"/>
247 <translation>Syötä URL:</translation>
248248 </message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Asetukset</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Koko näytön tila</translation>
274263 <message>
275264 <location filename="../common/actions.cpp" line="110"/>
276265 <source>Always on Top</source>
277 <translation type="unfinished"/>
266 <translation>Aina päällimmäisenä</translation>
278267 </message>
279268 <message>
280269 <location filename="../common/actions.cpp" line="284"/>
281270 <source>Film info</source>
282 <translation type="unfinished"/>
271 <translation>Tiedoston info</translation>
272 </message>
273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Avaa tiedosto</translation>
283278 </message>
284279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Avaa kansio</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Vaalea teema</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
295295 <message>
296296 <location filename="../common/actions.cpp" line="105"/>
297297 <source>Open CD/DVD</source>
298 <translation type="unfinished"/>
298 <translation>Avaa CD/DVD</translation>
299299 </message>
300300 <message>
301301 <location filename="../common/actions.cpp" line="109"/>
302302 <source>Mini Mode</source>
303 <translation>Mini-tila</translation>
303 <translation>Minitila</translation>
304304 </message>
305305 <message>
306306 <location filename="../common/actions.cpp" line="115"/>
307307 <source>Play Mode</source>
308 <translation type="unfinished"/>
308 <translation>Toistotila</translation>
309309 </message>
310310 <message>
311311 <location filename="../common/actions.cpp" line="118"/>
312312 <source>Order Play</source>
313 <translation type="unfinished"/>
313 <translation>Soittojärjestys</translation>
314314 </message>
315315 <message>
316316 <location filename="../common/actions.cpp" line="119"/>
317317 <source>Shuffle Play</source>
318 <translation type="unfinished"/>
318 <translation>Sekoita soittojärjestys</translation>
319319 </message>
320320 <message>
321321 <location filename="../common/actions.cpp" line="120"/>
322322 <source>Single Play</source>
323 <translation type="unfinished"/>
323 <translation>Toista yksi</translation>
324324 </message>
325325 <message>
326326 <location filename="../common/actions.cpp" line="121"/>
327327 <source>Single Loop</source>
328 <translation type="unfinished"/>
328 <translation>Yhden jatkuva toisto</translation>
329329 </message>
330330 <message>
331331 <location filename="../common/actions.cpp" line="122"/>
332332 <source>List Loop</source>
333 <translation type="unfinished"/>
333 <translation>Listan jatkuva toisto</translation>
334334 </message>
335335 <message>
336336 <location filename="../common/actions.cpp" line="129"/>
337337 <source>Frame</source>
338 <translation>Kehystä</translation>
338 <translation>Kuvasuhde</translation>
339339 </message>
340340 <message>
341341 <location filename="../common/actions.cpp" line="132"/>
345345 <message>
346346 <location filename="../common/actions.cpp" line="140"/>
347347 <source>Clockwise</source>
348 <translation type="unfinished"/>
348 <translation>Myötäpäivään</translation>
349349 </message>
350350 <message>
351351 <location filename="../common/actions.cpp" line="141"/>
352352 <source>Counterclockwise</source>
353 <translation type="unfinished"/>
353 <translation>Vastapäivään</translation>
354354 </message>
355355 <message>
356356 <location filename="../common/actions.cpp" line="144"/>
357357 <source>Next frame</source>
358 <translation type="unfinished"/>
358 <translation>Seuraava kuvaruutu</translation>
359359 </message>
360360 <message>
361361 <location filename="../common/actions.cpp" line="145"/>
362362 <source>Previous frame</source>
363 <translation type="unfinished"/>
363 <translation>Edellinen kuvaruutu</translation>
364364 </message>
365365 <message>
366366 <location filename="../common/actions.cpp" line="152"/>
380380 <message>
381381 <location filename="../common/actions.cpp" line="159"/>
382382 <source>Left channel</source>
383 <translation type="unfinished"/>
383 <translation>Vasen kanava</translation>
384384 </message>
385385 <message>
386386 <location filename="../common/actions.cpp" line="160"/>
387387 <source>Right channel</source>
388 <translation type="unfinished"/>
388 <translation>Oikea kanava</translation>
389389 </message>
390390 <message>
391391 <location filename="../common/actions.cpp" line="166"/>
392392 <source>Track</source>
393 <translation>Kappale</translation>
393 <translation>Ääniraita</translation>
394394 </message>
395395 <message>
396396 <location filename="../common/actions.cpp" line="176"/>
397397 <source>Subtitle</source>
398 <translation type="unfinished"/>
398 <translation>Tekstitys</translation>
399399 </message>
400400 <message>
401401 <location filename="../common/actions.cpp" line="177"/>
402402 <source>Load</source>
403 <translation type="unfinished"/>
403 <translation>Lataa</translation>
404404 </message>
405405 <message>
406406 <location filename="../common/actions.cpp" line="178"/>
407407 <source>Online Search</source>
408 <translation type="unfinished"/>
408 <translation>Online-haku</translation>
409409 </message>
410410 <message>
411411 <location filename="../common/actions.cpp" line="182"/>
415415 <message>
416416 <location filename="../common/actions.cpp" line="186"/>
417417 <source>Hide</source>
418 <translation type="unfinished"/>
418 <translation>Piilota</translation>
419419 </message>
420420 <message>
421421 <location filename="../common/actions.cpp" line="190"/>
422422 <source>Encodings</source>
423 <translation type="unfinished"/>
423 <translation>Koodaukset</translation>
424424 </message>
425425 <message>
426426 <location filename="../common/actions.cpp" line="258"/>
427427 <source>Screenshot</source>
428 <translation>Ruudunkaappaus</translation>
428 <translation>Kuvakaappaus</translation>
429429 </message>
430430 <message>
431431 <location filename="../common/actions.cpp" line="259"/>
432432 <source>Film Screenshot</source>
433 <translation type="unfinished"/>
433 <translation>Filmin kuvakaappaus</translation>
434434 </message>
435435 <message>
436436 <location filename="../common/actions.cpp" line="260"/>
437437 <source>Burst Shooting</source>
438 <translation type="unfinished"/>
438 <translation>Sarjakuvaus</translation>
439439 </message>
440440 <message>
441441 <location filename="../common/actions.cpp" line="267"/>
445445 <message>
446446 <location filename="../common/actions.cpp" line="268"/>
447447 <source>Film Info</source>
448 <translation type="unfinished"/>
448 <translation>Tiedoston info</translation>
449449 </message>
450450 <message>
451451 <location filename="../common/actions.cpp" line="282"/>
455455 <message>
456456 <location filename="../common/actions.cpp" line="283"/>
457457 <source>Display in file manager</source>
458 <translation type="unfinished"/>
458 <translation>Näytä tiedostonhallinnassa</translation>
459459 </message>
460460 </context>
461461 <context>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation type="unfinished"/>
465 <source>Duration: %1</source>
466 <translation>Kesto: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation type="unfinished"/>
470 <source>Resolution: %1</source>
471 <translation>Resoluutio: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation type="unfinished"/>
475 <source>Size: %1</source>
476 <translation>Koko: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Tallenna</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Elokuva</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
490 <translation>Lataus onnistui</translation>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
496 <translation>Lataus epäonnistui</translation>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
501 <translation>Laitetta ei löytynyt</translation>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
506 <translation>Jäsentely epäonnistui</translation>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Avaa kansio</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Avaa tiedosto</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
524 <translation>Kaikki videot (%1)</translation>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Vaiennettu</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
537 <translation>Äänitaso: %1%</translation>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550 <translation type="unfinished"/>
551 </message>
552 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
543 <translation>Tekstitys %1: %2s</translation>
544 </message>
545 <message>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556 <translation type="unfinished"/>
557 </message>
558 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
549 <translation>myöhässä</translation>
550 </message>
551 <message>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562 <translation type="unfinished"/>
563 </message>
564 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
555 <translation>edistynyt</translation>
556 </message>
557 <message>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569 <translation type="unfinished"/>
570 </message>
571 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
562 <translation>Nopeus: %1x</translation>
563 </message>
564 <message>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Tekstitys (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579 <translation>Katsele</translation>
580 </message>
581 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
572 <translation>Näytä</translation>
573 </message>
574 <message>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584 <translation>Elokuvan ruudunkaappaus</translation>
585 </message>
586 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
577 <translation>Elokuvan kuvakaappaus</translation>
578 </message>
579 <message>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589 <translation type="unfinished"/>
590 </message>
591 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
582 <translation>Tallenna nimellä</translation>
583 </message>
584 <message>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595 <translation type="unfinished"/>
596 </message>
597 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
588 <translation>Kuvakaappaus tallennettu</translation>
589 </message>
590 <message>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Kuvakaappauksen tallentaminen epäonnistui</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606 <translation type="unfinished"/>
599 <translation>Virheellinen tiedosto: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
611627 <message>
612628 <location filename="../widgets/movieinfo_dialog.cpp" line="118"/>
613629 <source>File Type:</source>
614 <translation type="unfinished"/>
630 <translation>Tiedostotyyppi:</translation>
615631 </message>
616632 <message>
617633 <location filename="../widgets/movieinfo_dialog.cpp" line="119"/>
618634 <source>Resolution:</source>
619 <translation type="unfinished"/>
635 <translation>Resoluutio:</translation>
620636 </message>
621637 <message>
622638 <location filename="../widgets/movieinfo_dialog.cpp" line="120"/>
623639 <source>File Size:</source>
624 <translation type="unfinished"/>
640 <translation>Tiedoston koko:</translation>
625641 </message>
626642 <message>
627643 <location filename="../widgets/movieinfo_dialog.cpp" line="121"/>
628644 <source>Duration:</source>
629 <translation type="unfinished"/>
645 <translation>Kesto:</translation>
630646 </message>
631647 <message>
632648 <location filename="../widgets/movieinfo_dialog.cpp" line="126"/>
633649 <source>File Path:</source>
634 <translation type="unfinished"/>
650 <translation>Tiedoston polku:</translation>
635651 </message>
636652 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643 <translation type="unfinished"/>
659 <translation>[sisäinen]</translation>
644660 </message>
645661 </context>
646662 <context>
650666 <location filename="../widgets/playlist_widget.cpp" line="227"/>
651667 <location filename="../widgets/playlist_widget.cpp" line="402"/>
652668 <source>File does not exist</source>
653 <translation type="unfinished"/>
669 <translation>Tiedostoa ei ole</translation>
654670 </message>
655671 </context>
656672 <context>
658674 <message>
659675 <location filename="../common/dmr_settings.cpp" line="155"/>
660676 <source>%1/DMovie%2.jpg</source>
661 <translation type="unfinished"/>
677 <translation>%1/DMovie%2.jpg</translation>
662678 </message>
663679 <message>
664680 <location filename="../common/dmr_settings.cpp" line="161"/>
665681 <source>%1/DMovie%2(%3).jpg</source>
666 <translation type="unfinished"/>
682 <translation>%1/DMovie%2(%3).jpg</translation>
667683 </message>
668684 </context>
669685 <context>
702718 <location filename="../widgets/toolbox_proxy.cpp" line="697"/>
703719 <location filename="../widgets/toolbox_proxy.cpp" line="876"/>
704720 <source>Fullscreen</source>
705 <translation>Koko näytön tila</translation>
721 <translation>Kokoruutu</translation>
706722 </message>
707723 <message>
708724 <location filename="../widgets/toolbox_proxy.cpp" line="683"/>
713729 <message>
714730 <location filename="../widgets/toolbox_proxy.cpp" line="873"/>
715731 <source>Exit fullscreen</source>
716 <translation>Poistu koko näytön tilasta</translation>
732 <translation>Poistu kokoruudusta</translation>
717733 </message>
718734 <message>
719735 <location filename="../widgets/toolbox_proxy.cpp" line="886"/>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="fil" version="2.1">
0 <?xml version="1.0" encoding="utf-8"?>
1 <!DOCTYPE TS>
2 <TS version="2.1" language="fil">
13 <context>
24 <name>QObject</name>
35 <message>
911 <message>
1012 <location filename="../main.cpp" line="89"/>
1113 <source>Deepin Movie is a well-designed and full-featured video player with simple borderless design. It supports local and streaming media play with multiple video formats.</source>
12 <translation type="unfinished"/>
14 <translation type="unfinished"></translation>
1315 </message>
1416 <message>
1517 <location filename="../common/mainwindow.cpp" line="116"/>
1618 <source>Invalid folder</source>
17 <translation type="unfinished"/>
19 <translation type="unfinished"></translation>
1820 </message>
1921 <message>
2022 <location filename="../common/mainwindow.cpp" line="130"/>
2123 <source>Open Folder</source>
22 <translation type="unfinished"/>
24 <translation type="unfinished"></translation>
2325 </message>
2426 <message>
2527 <location filename="../common/mainwindow.cpp" line="121"/>
2628 <source>You don&apos;t have permission to operate this folder</source>
27 <translation type="unfinished"/>
29 <translation type="unfinished"></translation>
2830 </message>
2931 <message>
3032 <location filename="../common/settings_translation.cpp" line="5"/>
3133 <source>Auto add similar files to play</source>
32 <translation type="unfinished"/>
34 <translation type="unfinished"></translation>
3335 </message>
3436 <message>
3537 <location filename="../common/settings_translation.cpp" line="6"/>
3638 <source>Clear playlist when exit</source>
37 <translation type="unfinished"/>
39 <translation type="unfinished"></translation>
3840 </message>
3941 <message>
4042 <location filename="../common/settings_translation.cpp" line="7"/>
4143 <source>Show video preview on mouseover</source>
42 <translation type="unfinished"/>
44 <translation type="unfinished"></translation>
4345 </message>
4446 <message>
4547 <location filename="../common/settings_translation.cpp" line="8"/>
4648 <source>Open a new player for each file played</source>
47 <translation type="unfinished"/>
49 <translation type="unfinished"></translation>
4850 </message>
4951 <message>
5052 <location filename="../common/settings_translation.cpp" line="9"/>
5153 <source>Pause when minimized</source>
52 <translation type="unfinished"/>
54 <translation type="unfinished"></translation>
5355 </message>
5456 <message>
5557 <location filename="../common/settings_translation.cpp" line="10"/>
5658 <source>Remember playback position</source>
57 <translation type="unfinished"/>
59 <translation type="unfinished"></translation>
5860 </message>
5961 <message>
6062 <location filename="../common/settings_translation.cpp" line="11"/>
6163 <source>Path</source>
62 <translation type="unfinished"/>
64 <translation type="unfinished"></translation>
6365 </message>
6466 <message>
6567 <location filename="../common/settings_translation.cpp" line="12"/>
6668 <source>Basic</source>
67 <translation type="unfinished"/>
69 <translation type="unfinished"></translation>
6870 </message>
6971 <message>
7072 <location filename="../common/settings_translation.cpp" line="13"/>
7173 <source>Play</source>
72 <translation type="unfinished"/>
74 <translation type="unfinished"></translation>
7375 </message>
7476 <message>
7577 <location filename="../common/settings_translation.cpp" line="14"/>
7678 <location filename="../common/settings_translation.cpp" line="19"/>
7779 <source>Screenshot</source>
78 <translation type="unfinished"/>
80 <translation type="unfinished"></translation>
7981 </message>
8082 <message>
8183 <location filename="../common/settings_translation.cpp" line="15"/>
8284 <source>Shortcuts</source>
83 <translation type="unfinished"/>
85 <translation type="unfinished"></translation>
8486 </message>
8587 <message>
8688 <location filename="../common/settings_translation.cpp" line="16"/>
8789 <source>File</source>
88 <translation type="unfinished"/>
90 <translation type="unfinished"></translation>
8991 </message>
9092 <message>
9193 <location filename="../common/settings_translation.cpp" line="17"/>
9294 <source>Frame/Sound</source>
93 <translation type="unfinished"/>
95 <translation type="unfinished"></translation>
9496 </message>
9597 <message>
9698 <location filename="../common/settings_translation.cpp" line="18"/>
9799 <source>Playback</source>
98 <translation type="unfinished"/>
100 <translation type="unfinished"></translation>
99101 </message>
100102 <message>
101103 <location filename="../common/settings_translation.cpp" line="20"/>
102104 <location filename="../common/settings_translation.cpp" line="21"/>
103105 <source>Subtitle</source>
104 <translation type="unfinished"/>
106 <translation type="unfinished"></translation>
105107 </message>
106108 <message>
107109 <location filename="../common/settings_translation.cpp" line="22"/>
108110 <source>Font Style</source>
109 <translation type="unfinished"/>
111 <translation type="unfinished"></translation>
110112 </message>
111113 <message>
112114 <location filename="../common/settings_translation.cpp" line="23"/>
113115 <source>Restore Defaults</source>
114 <translation type="unfinished"/>
116 <translation type="unfinished"></translation>
115117 </message>
116118 <message>
117119 <location filename="../common/settings_translation.cpp" line="24"/>
118120 <source>Open file</source>
119 <translation type="unfinished"/>
121 <translation type="unfinished"></translation>
120122 </message>
121123 <message>
122124 <location filename="../common/settings_translation.cpp" line="25"/>
123125 <source>Open next</source>
124 <translation type="unfinished"/>
126 <translation type="unfinished"></translation>
125127 </message>
126128 <message>
127129 <location filename="../common/settings_translation.cpp" line="26"/>
128130 <source>Open previous</source>
129 <translation type="unfinished"/>
131 <translation type="unfinished"></translation>
130132 </message>
131133 <message>
132134 <location filename="../common/settings_translation.cpp" line="27"/>
133135 <source>Mini mode</source>
134 <translation type="unfinished"/>
136 <translation type="unfinished"></translation>
135137 </message>
136138 <message>
137139 <location filename="../common/settings_translation.cpp" line="28"/>
138140 <source>Mute</source>
139 <translation type="unfinished"/>
141 <translation type="unfinished"></translation>
140142 </message>
141143 <message>
142144 <location filename="../common/settings_translation.cpp" line="29"/>
143145 <source>Next frame</source>
144 <translation type="unfinished"/>
146 <translation type="unfinished"></translation>
145147 </message>
146148 <message>
147149 <location filename="../common/settings_translation.cpp" line="30"/>
148150 <source>Previous frame</source>
149 <translation type="unfinished"/>
151 <translation type="unfinished"></translation>
150152 </message>
151153 <message>
152154 <location filename="../common/settings_translation.cpp" line="31"/>
153155 <source>volume down</source>
154 <translation type="unfinished"/>
156 <translation type="unfinished"></translation>
155157 </message>
156158 <message>
157159 <location filename="../common/settings_translation.cpp" line="32"/>
158160 <source>Volume up</source>
159 <translation type="unfinished"/>
161 <translation type="unfinished"></translation>
160162 </message>
161163 <message>
162164 <location filename="../common/settings_translation.cpp" line="33"/>
163165 <source>Speed up</source>
164 <translation type="unfinished"/>
166 <translation type="unfinished"></translation>
165167 </message>
166168 <message>
167169 <location filename="../common/settings_translation.cpp" line="34"/>
168170 <source>Speed down</source>
169 <translation type="unfinished"/>
171 <translation type="unfinished"></translation>
170172 </message>
171173 <message>
172174 <location filename="../common/settings_translation.cpp" line="35"/>
173175 <source>Fullscreen</source>
174 <translation type="unfinished"/>
176 <translation type="unfinished"></translation>
175177 </message>
176178 <message>
177179 <location filename="../common/settings_translation.cpp" line="36"/>
178180 <source>Pause/Play</source>
179 <translation type="unfinished"/>
181 <translation type="unfinished"></translation>
180182 </message>
181183 <message>
182184 <location filename="../common/settings_translation.cpp" line="37"/>
183185 <source>Playlist</source>
184 <translation type="unfinished"/>
186 <translation type="unfinished"></translation>
185187 </message>
186188 <message>
187189 <location filename="../common/settings_translation.cpp" line="38"/>
188190 <source>Reset speed</source>
189 <translation type="unfinished"/>
191 <translation type="unfinished"></translation>
190192 </message>
191193 <message>
192194 <location filename="../common/settings_translation.cpp" line="39"/>
193195 <source>Rewind</source>
194 <translation type="unfinished"/>
196 <translation type="unfinished"></translation>
195197 </message>
196198 <message>
197199 <location filename="../common/settings_translation.cpp" line="40"/>
198200 <source>Forward</source>
199 <translation type="unfinished"/>
201 <translation type="unfinished"></translation>
200202 </message>
201203 <message>
202204 <location filename="../common/settings_translation.cpp" line="41"/>
203205 <source>Burst screenshot</source>
204 <translation type="unfinished"/>
206 <translation type="unfinished"></translation>
205207 </message>
206208 <message>
207209 <location filename="../common/settings_translation.cpp" line="42"/>
208210 <source>Film screenshot</source>
209 <translation type="unfinished"/>
211 <translation type="unfinished"></translation>
210212 </message>
211213 <message>
212214 <location filename="../common/settings_translation.cpp" line="43"/>
213215 <source>0.5s backward</source>
214 <translation type="unfinished"/>
216 <translation type="unfinished"></translation>
215217 </message>
216218 <message>
217219 <location filename="../common/settings_translation.cpp" line="44"/>
218220 <source>0.5s forward</source>
219 <translation type="unfinished"/>
221 <translation type="unfinished"></translation>
220222 </message>
221223 <message>
222224 <location filename="../common/settings_translation.cpp" line="45"/>
223225 <source>Font</source>
224 <translation type="unfinished"/>
226 <translation type="unfinished"></translation>
225227 </message>
226228 <message>
227229 <location filename="../common/settings_translation.cpp" line="46"/>
228230 <source>Font Size</source>
229 <translation type="unfinished"/>
231 <translation type="unfinished"></translation>
230232 </message>
231233 </context>
232234 <context>
234236 <message>
235237 <location filename="../widgets/url_dialog.cpp" line="41"/>
236238 <source>Cancel</source>
237 <translation type="unfinished"/>
239 <translation type="unfinished"></translation>
238240 </message>
239241 <message>
240242 <location filename="../widgets/url_dialog.cpp" line="42"/>
241243 <source>Confirm</source>
242 <translation type="unfinished"/>
244 <translation type="unfinished"></translation>
243245 </message>
244246 <message>
245247 <location filename="../widgets/url_dialog.cpp" line="46"/>
246248 <source>Please enter the URL:</source>
247 <translation type="unfinished"/>
249 <translation type="unfinished"></translation>
248250 </message>
249251 </context>
250252 <context>
253255 <location filename="../common/actions.cpp" line="82"/>
254256 <location filename="../common/actions.cpp" line="102"/>
255257 <source>Open File</source>
256 <translation type="unfinished"/>
258 <translation type="unfinished"></translation>
257259 </message>
258260 <message>
259261 <location filename="../common/actions.cpp" line="84"/>
260262 <location filename="../common/actions.cpp" line="269"/>
261263 <source>Settings</source>
262 <translation type="unfinished"/>
264 <translation type="unfinished"></translation>
263265 </message>
264266 <message>
265267 <location filename="../common/actions.cpp" line="85"/>
266268 <source>Light Theme</source>
267 <translation type="unfinished"/>
269 <translation type="unfinished"></translation>
268270 </message>
269271 <message>
270272 <location filename="../common/actions.cpp" line="108"/>
271273 <source>Fullscreen</source>
272 <translation type="unfinished"/>
274 <translation type="unfinished"></translation>
273275 </message>
274276 <message>
275277 <location filename="../common/actions.cpp" line="110"/>
276278 <source>Always on Top</source>
277 <translation type="unfinished"/>
279 <translation type="unfinished"></translation>
278280 </message>
279281 <message>
280282 <location filename="../common/actions.cpp" line="284"/>
281283 <source>Film info</source>
282 <translation type="unfinished"/>
284 <translation type="unfinished"></translation>
283285 </message>
284286 <message>
285287 <location filename="../common/actions.cpp" line="83"/>
286288 <location filename="../common/actions.cpp" line="103"/>
287289 <source>Open Folder</source>
288 <translation type="unfinished"/>
290 <translation type="unfinished"></translation>
289291 </message>
290292 <message>
291293 <location filename="../common/actions.cpp" line="104"/>
292294 <source>Open URL</source>
293 <translation type="unfinished"/>
295 <translation type="unfinished"></translation>
294296 </message>
295297 <message>
296298 <location filename="../common/actions.cpp" line="105"/>
297299 <source>Open CD/DVD</source>
298 <translation type="unfinished"/>
300 <translation type="unfinished"></translation>
299301 </message>
300302 <message>
301303 <location filename="../common/actions.cpp" line="109"/>
302304 <source>Mini Mode</source>
303 <translation type="unfinished"/>
305 <translation type="unfinished"></translation>
304306 </message>
305307 <message>
306308 <location filename="../common/actions.cpp" line="115"/>
307309 <source>Play Mode</source>
308 <translation type="unfinished"/>
310 <translation type="unfinished"></translation>
309311 </message>
310312 <message>
311313 <location filename="../common/actions.cpp" line="118"/>
312314 <source>Order Play</source>
313 <translation type="unfinished"/>
315 <translation type="unfinished"></translation>
314316 </message>
315317 <message>
316318 <location filename="../common/actions.cpp" line="119"/>
317319 <source>Shuffle Play</source>
318 <translation type="unfinished"/>
320 <translation type="unfinished"></translation>
319321 </message>
320322 <message>
321323 <location filename="../common/actions.cpp" line="120"/>
322324 <source>Single Play</source>
323 <translation type="unfinished"/>
325 <translation type="unfinished"></translation>
324326 </message>
325327 <message>
326328 <location filename="../common/actions.cpp" line="121"/>
327329 <source>Single Loop</source>
328 <translation type="unfinished"/>
330 <translation type="unfinished"></translation>
329331 </message>
330332 <message>
331333 <location filename="../common/actions.cpp" line="122"/>
332334 <source>List Loop</source>
333 <translation type="unfinished"/>
335 <translation type="unfinished"></translation>
334336 </message>
335337 <message>
336338 <location filename="../common/actions.cpp" line="129"/>
337339 <source>Frame</source>
338 <translation type="unfinished"/>
340 <translation type="unfinished"></translation>
339341 </message>
340342 <message>
341343 <location filename="../common/actions.cpp" line="132"/>
342344 <source>Default</source>
343 <translation type="unfinished"/>
345 <translation type="unfinished"></translation>
344346 </message>
345347 <message>
346348 <location filename="../common/actions.cpp" line="140"/>
347349 <source>Clockwise</source>
348 <translation type="unfinished"/>
350 <translation type="unfinished"></translation>
349351 </message>
350352 <message>
351353 <location filename="../common/actions.cpp" line="141"/>
352354 <source>Counterclockwise</source>
353 <translation type="unfinished"/>
355 <translation type="unfinished"></translation>
354356 </message>
355357 <message>
356358 <location filename="../common/actions.cpp" line="144"/>
357359 <source>Next frame</source>
358 <translation type="unfinished"/>
360 <translation type="unfinished"></translation>
359361 </message>
360362 <message>
361363 <location filename="../common/actions.cpp" line="145"/>
362364 <source>Previous frame</source>
363 <translation type="unfinished"/>
365 <translation type="unfinished"></translation>
364366 </message>
365367 <message>
366368 <location filename="../common/actions.cpp" line="152"/>
367369 <source>Sound</source>
368 <translation type="unfinished"/>
370 <translation type="unfinished"></translation>
369371 </message>
370372 <message>
371373 <location filename="../common/actions.cpp" line="155"/>
372374 <source>Channel</source>
373 <translation type="unfinished"/>
375 <translation type="unfinished"></translation>
374376 </message>
375377 <message>
376378 <location filename="../common/actions.cpp" line="158"/>
377379 <source>Stereo</source>
378 <translation type="unfinished"/>
380 <translation type="unfinished"></translation>
379381 </message>
380382 <message>
381383 <location filename="../common/actions.cpp" line="159"/>
382384 <source>Left channel</source>
383 <translation type="unfinished"/>
385 <translation type="unfinished"></translation>
384386 </message>
385387 <message>
386388 <location filename="../common/actions.cpp" line="160"/>
387389 <source>Right channel</source>
388 <translation type="unfinished"/>
390 <translation type="unfinished"></translation>
389391 </message>
390392 <message>
391393 <location filename="../common/actions.cpp" line="166"/>
392394 <source>Track</source>
393 <translation type="unfinished"/>
395 <translation type="unfinished"></translation>
394396 </message>
395397 <message>
396398 <location filename="../common/actions.cpp" line="176"/>
397399 <source>Subtitle</source>
398 <translation type="unfinished"/>
400 <translation type="unfinished"></translation>
399401 </message>
400402 <message>
401403 <location filename="../common/actions.cpp" line="177"/>
402404 <source>Load</source>
403 <translation type="unfinished"/>
405 <translation type="unfinished"></translation>
404406 </message>
405407 <message>
406408 <location filename="../common/actions.cpp" line="178"/>
407409 <source>Online Search</source>
408 <translation type="unfinished"/>
410 <translation type="unfinished"></translation>
409411 </message>
410412 <message>
411413 <location filename="../common/actions.cpp" line="182"/>
412414 <source>Select</source>
413 <translation type="unfinished"/>
415 <translation type="unfinished"></translation>
414416 </message>
415417 <message>
416418 <location filename="../common/actions.cpp" line="186"/>
417419 <source>Hide</source>
418 <translation type="unfinished"/>
420 <translation type="unfinished"></translation>
419421 </message>
420422 <message>
421423 <location filename="../common/actions.cpp" line="190"/>
422424 <source>Encodings</source>
423 <translation type="unfinished"/>
425 <translation type="unfinished"></translation>
424426 </message>
425427 <message>
426428 <location filename="../common/actions.cpp" line="258"/>
427429 <source>Screenshot</source>
428 <translation type="unfinished"/>
430 <translation type="unfinished"></translation>
429431 </message>
430432 <message>
431433 <location filename="../common/actions.cpp" line="259"/>
432434 <source>Film Screenshot</source>
433 <translation type="unfinished"/>
435 <translation type="unfinished"></translation>
434436 </message>
435437 <message>
436438 <location filename="../common/actions.cpp" line="260"/>
437439 <source>Burst Shooting</source>
438 <translation type="unfinished"/>
440 <translation type="unfinished"></translation>
439441 </message>
440442 <message>
441443 <location filename="../common/actions.cpp" line="267"/>
442444 <source>Playlist</source>
443 <translation type="unfinished"/>
445 <translation type="unfinished"></translation>
444446 </message>
445447 <message>
446448 <location filename="../common/actions.cpp" line="268"/>
447449 <source>Film Info</source>
448 <translation type="unfinished"/>
450 <translation type="unfinished"></translation>
449451 </message>
450452 <message>
451453 <location filename="../common/actions.cpp" line="282"/>
452454 <source>Clear playlist</source>
453 <translation type="unfinished"/>
455 <translation type="unfinished"></translation>
454456 </message>
455457 <message>
456458 <location filename="../common/actions.cpp" line="283"/>
457459 <source>Display in file manager</source>
458 <translation type="unfinished"/>
460 <translation type="unfinished"></translation>
459461 </message>
460462 </context>
461463 <context>
463465 <message>
464466 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465467 <source>duration: %1</source>
466 <translation type="unfinished"/>
468 <translation type="unfinished"></translation>
467469 </message>
468470 <message>
469471 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470472 <source>resolution: %1</source>
471 <translation type="unfinished"/>
473 <translation type="unfinished"></translation>
472474 </message>
473475 <message>
474476 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475477 <source>size: %1</source>
476 <translation type="unfinished"/>
478 <translation type="unfinished"></translation>
477479 </message>
478480 <message>
479481 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480482 <source>save</source>
481 <translation type="unfinished"/>
483 <translation type="unfinished"></translation>
482484 </message>
483485 </context>
484486 <context>
485487 <name>dmr::MainWindow</name>
486488 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490489 <source>Deepin Movie</source>
491 <translation>Deepin Music</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
490 <translation type="vanished">Deepin Music</translation>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load successfully</source>
496 <translation type="unfinished"></translation>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="720"/>
500 <location filename="../common/mainwindow.cpp" line="1821"/>
501 <source>Load failed</source>
502 <translation type="unfinished"></translation>
503 </message>
504 <message>
505 <location filename="../common/mainwindow.cpp" line="1424"/>
506 <source>No device found</source>
507 <translation type="unfinished"></translation>
508 </message>
509 <message>
510 <location filename="../common/mainwindow.cpp" line="1442"/>
511 <source>Parse Failed</source>
512 <translation type="unfinished"></translation>
513 </message>
514 <message>
515 <location filename="../common/mainwindow.cpp" line="1449"/>
516 <source>Open Folder</source>
517 <translation type="unfinished"></translation>
518 </message>
519 <message>
520 <location filename="../common/mainwindow.cpp" line="1464"/>
521 <location filename="../common/mainwindow.cpp" line="1481"/>
522 <location filename="../common/mainwindow.cpp" line="1816"/>
523 <source>Open File</source>
524 <translation type="unfinished"></translation>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1466"/>
528 <location filename="../common/mainwindow.cpp" line="1483"/>
529 <source>All videos (%1)</source>
530 <translation type="unfinished"></translation>
531 </message>
532 <message>
533 <location filename="../common/mainwindow.cpp" line="1684"/>
534 <source>Muted</source>
535 <translation type="unfinished"></translation>
536 </message>
537 <message>
538 <location filename="../common/mainwindow.cpp" line="1687"/>
539 <location filename="../common/mainwindow.cpp" line="1699"/>
540 <location filename="../common/mainwindow.cpp" line="1709"/>
541 <location filename="../common/mainwindow.cpp" line="1716"/>
542 <source>Volume: %1%</source>
543 <translation type="unfinished"></translation>
544 </message>
545 <message>
546 <location filename="../common/mainwindow.cpp" line="1781"/>
495547 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549548 <source>Subtitle %1: %2s</source>
550 <translation type="unfinished"/>
551 </message>
552 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
549 <translation type="unfinished"></translation>
550 </message>
551 <message>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
555554 <source>delayed</source>
556 <translation type="unfinished"/>
557 </message>
558 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
555 <translation type="unfinished"></translation>
556 </message>
557 <message>
558 <location filename="../common/mainwindow.cpp" line="1782"/>
559 <location filename="../common/mainwindow.cpp" line="1790"/>
561560 <source>advanced</source>
562 <translation type="unfinished"/>
563 </message>
564 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
561 <translation type="unfinished"></translation>
562 </message>
563 <message>
564 <location filename="../common/mainwindow.cpp" line="1797"/>
565 <location filename="../common/mainwindow.cpp" line="1804"/>
566 <location filename="../common/mainwindow.cpp" line="1811"/>
568567 <source>Speed: %1x</source>
569 <translation type="unfinished"/>
570 </message>
571 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
568 <translation type="unfinished"></translation>
569 </message>
570 <message>
571 <location filename="../common/mainwindow.cpp" line="1818"/>
572 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
573 <translation type="unfinished"></translation>
574 </message>
575 <message>
576 <location filename="../common/mainwindow.cpp" line="1880"/>
578577 <source>View</source>
579 <translation type="unfinished"/>
580 </message>
581 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
578 <translation type="unfinished"></translation>
579 </message>
580 <message>
581 <location filename="../common/mainwindow.cpp" line="1891"/>
583582 <source>Movie Screenshot</source>
584 <translation type="unfinished"/>
585 </message>
586 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
583 <translation type="unfinished"></translation>
584 </message>
585 <message>
586 <location filename="../common/mainwindow.cpp" line="1892"/>
588587 <source>Saved to</source>
589 <translation type="unfinished"/>
590 </message>
591 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
588 <translation type="unfinished"></translation>
589 </message>
590 <message>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <location filename="../common/mainwindow.cpp" line="1989"/>
594593 <source>The screenshot is saved</source>
595 <translation type="unfinished"/>
596 </message>
597 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
594 <translation type="unfinished"></translation>
595 </message>
596 <message>
597 <location filename="../common/mainwindow.cpp" line="1906"/>
599598 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
599 <translation type="unfinished"></translation>
600 </message>
601 <message>
602 <location filename="../common/mainwindow.cpp" line="2076"/>
603 <location filename="../common/mainwindow.cpp" line="2782"/>
605604 <source>Invalid file: %1</source>
606 <translation type="unfinished"/>
605 <translation type="unfinished"></translation>
607606 </message>
608607 </context>
609608 <context>
611610 <message>
612611 <location filename="../widgets/movieinfo_dialog.cpp" line="118"/>
613612 <source>File Type:</source>
614 <translation type="unfinished"/>
613 <translation type="unfinished"></translation>
615614 </message>
616615 <message>
617616 <location filename="../widgets/movieinfo_dialog.cpp" line="119"/>
618617 <source>Resolution:</source>
619 <translation type="unfinished"/>
618 <translation type="unfinished"></translation>
620619 </message>
621620 <message>
622621 <location filename="../widgets/movieinfo_dialog.cpp" line="120"/>
623622 <source>File Size:</source>
624 <translation type="unfinished"/>
623 <translation type="unfinished"></translation>
625624 </message>
626625 <message>
627626 <location filename="../widgets/movieinfo_dialog.cpp" line="121"/>
628627 <source>Duration:</source>
629 <translation type="unfinished"/>
628 <translation type="unfinished"></translation>
630629 </message>
631630 <message>
632631 <location filename="../widgets/movieinfo_dialog.cpp" line="126"/>
633632 <source>File Path:</source>
634 <translation type="unfinished"/>
633 <translation type="unfinished"></translation>
635634 </message>
636635 </context>
637636 <context>
638637 <name>dmr::MpvProxy</name>
639638 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
639 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642641 <source>[internal]</source>
643 <translation type="unfinished"/>
642 <translation type="unfinished"></translation>
644643 </message>
645644 </context>
646645 <context>
650649 <location filename="../widgets/playlist_widget.cpp" line="227"/>
651650 <location filename="../widgets/playlist_widget.cpp" line="402"/>
652651 <source>File does not exist</source>
653 <translation type="unfinished"/>
652 <translation type="unfinished"></translation>
654653 </message>
655654 </context>
656655 <context>
658657 <message>
659658 <location filename="../common/dmr_settings.cpp" line="155"/>
660659 <source>%1/DMovie%2.jpg</source>
661 <translation type="unfinished"/>
660 <translation type="unfinished"></translation>
662661 </message>
663662 <message>
664663 <location filename="../common/dmr_settings.cpp" line="161"/>
665664 <source>%1/DMovie%2(%3).jpg</source>
666 <translation type="unfinished"/>
665 <translation type="unfinished"></translation>
667666 </message>
668667 </context>
669668 <context>
671670 <message>
672671 <location filename="../widgets/toolbox_proxy.cpp" line="889"/>
673672 <source>Play</source>
674 <translation type="unfinished"/>
673 <translation type="unfinished"></translation>
675674 </message>
676675 <message>
677676 <location filename="../widgets/toolbox_proxy.cpp" line="685"/>
678677 <location filename="../widgets/toolbox_proxy.cpp" line="696"/>
679678 <source>Previous</source>
680 <translation type="unfinished"/>
679 <translation type="unfinished"></translation>
681680 </message>
682681 <message>
683682 <location filename="../widgets/toolbox_proxy.cpp" line="686"/>
684683 <location filename="../widgets/toolbox_proxy.cpp" line="696"/>
685684 <source>Next</source>
686 <translation type="unfinished"/>
685 <translation type="unfinished"></translation>
687686 </message>
688687 <message>
689688 <location filename="../widgets/toolbox_proxy.cpp" line="687"/>
690689 <location filename="../widgets/toolbox_proxy.cpp" line="697"/>
691690 <source>Subtitles</source>
692 <translation type="unfinished"/>
691 <translation type="unfinished"></translation>
693692 </message>
694693 <message>
695694 <location filename="../widgets/toolbox_proxy.cpp" line="688"/>
696695 <location filename="../widgets/toolbox_proxy.cpp" line="697"/>
697696 <source>Playlist</source>
698 <translation type="unfinished"/>
697 <translation type="unfinished"></translation>
699698 </message>
700699 <message>
701700 <location filename="../widgets/toolbox_proxy.cpp" line="689"/>
702701 <location filename="../widgets/toolbox_proxy.cpp" line="697"/>
703702 <location filename="../widgets/toolbox_proxy.cpp" line="876"/>
704703 <source>Fullscreen</source>
705 <translation type="unfinished"/>
704 <translation type="unfinished"></translation>
706705 </message>
707706 <message>
708707 <location filename="../widgets/toolbox_proxy.cpp" line="683"/>
709708 <location filename="../widgets/toolbox_proxy.cpp" line="696"/>
710709 <source>Play/Pause</source>
711 <translation type="unfinished"/>
710 <translation type="unfinished"></translation>
712711 </message>
713712 <message>
714713 <location filename="../widgets/toolbox_proxy.cpp" line="873"/>
715714 <source>Exit fullscreen</source>
716 <translation type="unfinished"/>
715 <translation type="unfinished"></translation>
717716 </message>
718717 <message>
719718 <location filename="../widgets/toolbox_proxy.cpp" line="886"/>
720719 <source>Pause</source>
721 <translation type="unfinished"/>
722 </message>
723 </context>
724 </TS>
720 <translation type="unfinished"></translation>
721 </message>
722 </context>
723 </TS>
44 <location filename="../main.cpp" line="88"/>
55 <location filename="../main.cpp" line="120"/>
66 <source>Deepin Movie</source>
7 <translation>Deepin Film</translation>
7 <translation>Deepin Movie</translation>
88 </message>
99 <message>
1010 <location filename="../main.cpp" line="89"/>
1111 <source>Deepin Movie is a well-designed and full-featured video player with simple borderless design. It supports local and streaming media play with multiple video formats.</source>
12 <translation>Deepin film est un lecteur vidéo visuellement agréable et très complet. Il prend en charge la lecture ainsi que le « streaming » de fichiers en différents formats.</translation>
12 <translation>Deepin Movie est un lecteur vidéo visuellement agréable et très complet. Il prend en charge la lecture ainsi que le « streaming » de fichiers en différents formats.</translation>
1313 </message>
1414 <message>
1515 <location filename="../common/mainwindow.cpp" line="116"/>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Ouvrir le dossier</translation>
21 <source>Open folder</source>
22 <translation>Ouvrir un dossier</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>baisser le volume</translation>
153 <source>Volume down</source>
154 <translation>Diminuer le volume</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Ouvrir un fichier</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Paramètres </translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Thème Clair</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Plein écran</translation>
282271 <translation>Infos du film</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Ouvrir un fichier</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Ouvrir le dossier</translation>
282 <source>Open folder</source>
283 <translation>Ouvrir un dossier</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Thème clair</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>durée : %1</translation>
465 <source>Duration: %1</source>
466 <translation>Durée : %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>résolution : %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Résolution : %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>taille : %1</translation>
475 <source>Size: %1</source>
476 <translation>Taille : %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>enregistrer</translation>
480 <source>Save</source>
481 <translation>Sauvegarder</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Film</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Chargement réussi</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Échec du chargement</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Aucun périphérique trouvé</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Échec de l&apos;analyse</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Ouvrir le dossier</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
510 <source>Open folder</source>
511 <translation>Ouvrir un dossier</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Ouvrir un fichier</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Toutes les vidéos (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Sourdine</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volume : %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Sous-titre %1 : %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>Retardé</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>avancé</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Vitesse : %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Sous-titre (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Sous-titres (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Vue</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Capture d&apos;écran du film</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Sauvegardé dans</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Capture d&apos;écran enregistrée</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Échec d&apos;enregistrement de la capture d&apos;écran</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Échec de la sauvegarde de la capture d&apos;écran</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Fichier non valide : %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1 GO</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1 MO</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1 KO</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[interne]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Abrir cartafol</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Baixar o volume</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Abrir ficheiro</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Axustes</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Tema claro</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Pantalla completa</translation>
282271 <translation>Información do filme</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Abrir ficheiro</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Abrir cartafol</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>duración: %1</translation>
465 <source>Duration: %1</source>
466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>resolución: %1</translation>
470 <source>Resolution: %1</source>
471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>tamaño: %1</translation>
475 <source>Size: %1</source>
476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>gardar</translation>
480 <source>Save</source>
481 <translation>Gardar</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Filmes</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Cargado/a con éxito</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Produciuse un erro ao cargar</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Non se atopou ningún dispositivo</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>A análise fallou</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Abrir cartafol</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Abrir ficheiro</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Todos os vídeos (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Silenciar</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volume: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Subtítulos %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>atrasado</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>avanzado</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Velocidade: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Subtítulos (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Ver</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Captura do filme</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Gardar en</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>A captura da pantalla foi gardada</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Non se puido gardar a captura de pantalla</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Ficheiro non válido: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[internal]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>פתח תיקייה</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>הנמכה</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>הגדרות</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>מסך מלא</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>פתח קובץ</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>פתח תיקייה</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>שמור</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>נגן הסרטים של Deepin</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation type="unfinished"/>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation type="unfinished"/>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation type="unfinished"/>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation type="unfinished"/>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>פתח תיקייה</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>פתח קובץ</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation type="unfinished"/>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>מושתק</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation type="unfinished"/>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>תצוגה</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>फोल्डर खोलें </translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
5454 <message>
5555 <location filename="../common/settings_translation.cpp" line="10"/>
5656 <source>Remember playback position</source>
57 <translation type="unfinished"/>
57 <translation>प्लेबैक स्थिति याद रखें</translation>
5858 </message>
5959 <message>
6060 <location filename="../common/settings_translation.cpp" line="11"/>
6464 <message>
6565 <location filename="../common/settings_translation.cpp" line="12"/>
6666 <source>Basic</source>
67 <translation type="unfinished"/>
67 <translation>मौलिक</translation>
6868 </message>
6969 <message>
7070 <location filename="../common/settings_translation.cpp" line="13"/>
111111 <message>
112112 <location filename="../common/settings_translation.cpp" line="23"/>
113113 <source>Restore Defaults</source>
114 <translation type="unfinished"/>
114 <translation>डिफॉल्ट्स पुनःस्थापित करें</translation>
115115 </message>
116116 <message>
117117 <location filename="../common/settings_translation.cpp" line="24"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>आवाज घटाएँ</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>व्यवस्था</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>पूर्ण पटल</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>फ़ाइल खोलें</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>फोल्डर खोलें </translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
305305 <message>
306306 <location filename="../common/actions.cpp" line="115"/>
307307 <source>Play Mode</source>
308 <translation type="unfinished"/>
308 <translation>प्ले मोड </translation>
309309 </message>
310310 <message>
311311 <location filename="../common/actions.cpp" line="118"/>
325325 <message>
326326 <location filename="../common/actions.cpp" line="121"/>
327327 <source>Single Loop</source>
328 <translation type="unfinished"/>
328 <translation>सिंगल लूप</translation>
329329 </message>
330330 <message>
331331 <location filename="../common/actions.cpp" line="122"/>
332332 <source>List Loop</source>
333 <translation type="unfinished"/>
333 <translation>लिस्ट लूप</translation>
334334 </message>
335335 <message>
336336 <location filename="../common/actions.cpp" line="129"/>
455455 <message>
456456 <location filename="../common/actions.cpp" line="283"/>
457457 <source>Display in file manager</source>
458 <translation type="unfinished"/>
458 <translation>फ़ाइल मैनेजर में प्रदर्शित करें</translation>
459459 </message>
460460 </context>
461461 <context>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>संचित करें</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>डीपइन चलचित्र</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation type="unfinished"/>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation type="unfinished"/>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation type="unfinished"/>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation type="unfinished"/>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>फोल्डर खोलें </translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>फ़ाइल खोलें</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation type="unfinished"/>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>मूक</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation type="unfinished"/>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>देखें</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>मूवी स्क्रीनशॉट</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
626642 <message>
627643 <location filename="../widgets/movieinfo_dialog.cpp" line="121"/>
628644 <source>Duration:</source>
629 <translation type="unfinished"/>
645 <translation>अवधि:</translation>
630646 </message>
631647 <message>
632648 <location filename="../widgets/movieinfo_dialog.cpp" line="126"/>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Otvori mapu</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>stišaj</translation>
153 <source>Volume down</source>
154 <translation>Smanji glasnoću zvuka</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Otvori datoteku</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Postavke</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Svijetla tema</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Cijeli zaslon</translation>
282271 <translation>Informacije o filmu</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Otvori datoteku</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Otvori mapu</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>trajanje: %1</translation>
465 <source>Duration: %1</source>
466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>razlučivost: %1</translation>
470 <source>Resolution: %1</source>
471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>veličina: %1</translation>
475 <source>Size: %1</source>
476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>spremi</translation>
480 <source>Save</source>
481 <translation>Spremi</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin film</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Uspješno učitano</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Neuspjelo učitavanje</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>NIje pronađen uređaj</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation type="unfinished"/>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Otvori mapu</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Otvori datoteku</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation type="unfinished"/>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Utišano</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Glasnoća: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Podnapis %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>odgođeno</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>napredno</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Brzina: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Podnapis (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Pogled</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Snimka zaslona filma</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Spremljeno u</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Neispravna datoteka: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Mappa megnyitása</translation>
21 <source>Open folder</source>
22 <translation>Könytár megnyitása</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
2626 <source>You don&apos;t have permission to operate this folder</source>
27 <translation>Nincs engedélye a mappa használatához</translation>
27 <translation>Nincs jogosultságod a mappa használatához</translation>
2828 </message>
2929 <message>
3030 <location filename="../common/settings_translation.cpp" line="5"/>
141141 <message>
142142 <location filename="../common/settings_translation.cpp" line="29"/>
143143 <source>Next frame</source>
144 <translation type="unfinished"/>
144 <translation>Következő képkocka</translation>
145145 </message>
146146 <message>
147147 <location filename="../common/settings_translation.cpp" line="30"/>
148148 <source>Previous frame</source>
149 <translation type="unfinished"/>
149 <translation>Előző képkocka</translation>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Hangerő csökkentése</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Fálj megnyitása</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Beállítások</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Egyszerű sablon</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Teljes képernyő</translation>
282271 <translation>Film információ</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Fájl megnyitás</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Mappa megnyitása</translation>
282 <source>Open folder</source>
283 <translation>Könytár megnyitása</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
355355 <message>
356356 <location filename="../common/actions.cpp" line="144"/>
357357 <source>Next frame</source>
358 <translation type="unfinished"/>
358 <translation>Következő képkocka</translation>
359359 </message>
360360 <message>
361361 <location filename="../common/actions.cpp" line="145"/>
362362 <source>Previous frame</source>
363 <translation type="unfinished"/>
363 <translation>Előző képkocka</translation>
364364 </message>
365365 <message>
366366 <location filename="../common/actions.cpp" line="152"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>Időtartam: %1</translation>
465 <source>Duration: %1</source>
466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>felbontás: %1</translation>
470 <source>Resolution: %1</source>
471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>méret: %1</translation>
475 <source>Size: %1</source>
476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>Mentés</translation>
480 <source>Save</source>
481 <translation>Ment</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Film</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Sikeres betöltés</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Sikertelen betöltés</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Nem található az eszköz</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Sikertelen elemzés</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Mappa megnyitása</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation>Fálj megnyitása</translation>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation>Könytár megnyitása</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Fájl megnyitás</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Összes videó (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Némítva</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Hangerő: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Felirat %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>időzítve</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>Kibővített</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Sebesség: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Felirat (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Megtekintés</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Film pillanatkép</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Elmentve</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>A képernyőkép mentése sikeres</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Nem sikerült a képernyőkép mentése</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Érvénytelen fájl: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[belső]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation type="unfinished"/>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation type="unfinished"/>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Կարգավորումներ</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation type="unfinished"/>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Բացել նիշքը</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288288 <translation type="unfinished"/>
289289 </message>
290290 <message>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Պահել</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Ֆիլմեր</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Բացել նիշքը</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
44 <location filename="../main.cpp" line="88"/>
55 <location filename="../main.cpp" line="120"/>
66 <source>Deepin Movie</source>
7 <translation>Pemutar Video Deepin</translation>
7 <translation>Pemutar FIlm Deepin</translation>
88 </message>
99 <message>
1010 <location filename="../main.cpp" line="89"/>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Buka Folder</translation>
2323 </message>
2424 <message>
3939 <message>
4040 <location filename="../common/settings_translation.cpp" line="7"/>
4141 <source>Show video preview on mouseover</source>
42 <translation type="unfinished"/>
42 <translation>Tampilkan pratinjau video di atas tetikus</translation>
4343 </message>
4444 <message>
4545 <location filename="../common/settings_translation.cpp" line="8"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>Turunkan volume</translation>
153 <source>Volume down</source>
154 <translation>Turunkan Volume</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
186186 <message>
187187 <location filename="../common/settings_translation.cpp" line="38"/>
188188 <source>Reset speed</source>
189 <translation type="unfinished"/>
189 <translation>Atur ulang kecepatan</translation>
190190 </message>
191191 <message>
192192 <location filename="../common/settings_translation.cpp" line="39"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Buka Berkas</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Pengaturan</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Tema Ringan</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Layar Penuh</translation>
282271 <translation>Info Film</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Buka berkas</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Buka Folder</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
330330 <message>
331331 <location filename="../common/actions.cpp" line="122"/>
332332 <source>List Loop</source>
333 <translation type="unfinished"/>
333 <translation>Daftar putar</translation>
334334 </message>
335335 <message>
336336 <location filename="../common/actions.cpp" line="129"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation>Simpan</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Pemutar Video Deepin</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation type="unfinished"/>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation type="unfinished"/>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Alat tidak di temukan</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation type="unfinished"/>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Buka Folder</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation>Buka Berkas</translation>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Buka berkas</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Semua video (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Senyapkan</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation type="unfinished"/>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>Penundaan</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>Terkini</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Cepat: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Lihat</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Cuplikan Layar Film</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Disimpan ke</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Tangkapan layar di simpan</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Tangkapan layar gagal di simpan</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Berkas tidak valid: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
44 <location filename="../main.cpp" line="88"/>
55 <location filename="../main.cpp" line="120"/>
66 <source>Deepin Movie</source>
7 <translation>Deepin Movie0,5</translation>
7 <translation>Deepin Movie</translation>
88 </message>
99 <message>
1010 <location filename="../main.cpp" line="89"/>
1919 </message>
2020 <message>
2121 <location filename="../common/mainwindow.cpp" line="130"/>
22 <source>Open Folder</source>
22 <source>Open folder</source>
2323 <translation>Apri cartella</translation>
2424 </message>
2525 <message>
151151 </message>
152152 <message>
153153 <location filename="../common/settings_translation.cpp" line="31"/>
154 <source>volume down</source>
155 <translation>volume giù</translation>
154 <source>Volume down</source>
155 <translation>Diminuisci Volume</translation>
156156 </message>
157157 <message>
158158 <location filename="../common/settings_translation.cpp" line="32"/>
159159 <source>Volume up</source>
160 <translation>Volume più</translation>
160 <translation>Aumenta Volume</translation>
161161 </message>
162162 <message>
163163 <location filename="../common/settings_translation.cpp" line="33"/>
250250 </context>
251251 <context>
252252 <name>dmr::ActionFactory</name>
253 <message>
254 <location filename="../common/actions.cpp" line="82"/>
255 <location filename="../common/actions.cpp" line="102"/>
256 <source>Open File</source>
257 <translation>Apri File</translation>
258 </message>
259253 <message>
260254 <location filename="../common/actions.cpp" line="84"/>
261255 <location filename="../common/actions.cpp" line="269"/>
263257 <translation>Impostazioni</translation>
264258 </message>
265259 <message>
266 <location filename="../common/actions.cpp" line="85"/>
267 <source>Light Theme</source>
268 <translation>Tema chiaro</translation>
269 </message>
270 <message>
271260 <location filename="../common/actions.cpp" line="108"/>
272261 <source>Fullscreen</source>
273262 <translation>Schermo intero</translation>
283272 <translation>Info video</translation>
284273 </message>
285274 <message>
275 <location filename="../common/actions.cpp" line="82"/>
276 <location filename="../common/actions.cpp" line="102"/>
277 <source>Open file</source>
278 <translation>Apri file</translation>
279 </message>
280 <message>
286281 <location filename="../common/actions.cpp" line="83"/>
287282 <location filename="../common/actions.cpp" line="103"/>
288 <source>Open Folder</source>
283 <source>Open folder</source>
289284 <translation>Apri cartella</translation>
285 </message>
286 <message>
287 <location filename="../common/actions.cpp" line="85"/>
288 <source>Light theme</source>
289 <translation>Tema chiaro</translation>
290290 </message>
291291 <message>
292292 <location filename="../common/actions.cpp" line="104"/>
463463 <name>dmr::BurstScreenshotsDialog</name>
464464 <message>
465465 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
466 <source>duration: %1</source>
467 <translation>durata: %1</translation>
466 <source>Duration: %1</source>
467 <translation>Durata: %1</translation>
468468 </message>
469469 <message>
470470 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
471 <source>resolution: %1</source>
472 <translation>risoluzione: %1</translation>
471 <source>Resolution: %1</source>
472 <translation>Risoluzione %1</translation>
473473 </message>
474474 <message>
475475 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
476 <source>size: %1</source>
477 <translation>dimensione: %1</translation>
476 <source>Size: %1</source>
477 <translation>Dimensione: %1</translation>
478478 </message>
479479 <message>
480480 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
481 <source>save</source>
482 <translation>salva</translation>
481 <source>Save</source>
482 <translation>Salva</translation>
483483 </message>
484484 </context>
485485 <context>
486486 <name>dmr::MainWindow</name>
487487 <message>
488 <location filename="../common/mainwindow.cpp" line="785"/>
489 <location filename="../common/mainwindow.cpp" line="2284"/>
490 <location filename="../common/mainwindow.cpp" line="2381"/>
491 <source>Deepin Movie</source>
492 <translation>Deepin Movie</translation>
493 </message>
494 <message>
495 <location filename="../common/mainwindow.cpp" line="698"/>
496 <location filename="../common/mainwindow.cpp" line="1789"/>
488 <location filename="../common/mainwindow.cpp" line="720"/>
489 <location filename="../common/mainwindow.cpp" line="1821"/>
497490 <source>Load successfully</source>
498491 <translation>Caricamento riuscito</translation>
499492 </message>
500493 <message>
501 <location filename="../common/mainwindow.cpp" line="698"/>
502 <location filename="../common/mainwindow.cpp" line="1789"/>
494 <location filename="../common/mainwindow.cpp" line="720"/>
495 <location filename="../common/mainwindow.cpp" line="1821"/>
503496 <source>Load failed</source>
504497 <translation>Caricamento fallito</translation>
505498 </message>
506499 <message>
507 <location filename="../common/mainwindow.cpp" line="1392"/>
500 <location filename="../common/mainwindow.cpp" line="1424"/>
508501 <source>No device found</source>
509502 <translation>Nessun dispositivo trovato</translation>
510503 </message>
511504 <message>
512 <location filename="../common/mainwindow.cpp" line="1410"/>
505 <location filename="../common/mainwindow.cpp" line="1442"/>
513506 <source>Parse Failed</source>
514507 <translation>Analisi fallita</translation>
515508 </message>
516509 <message>
517 <location filename="../common/mainwindow.cpp" line="1417"/>
518 <source>Open Folder</source>
510 <location filename="../common/mainwindow.cpp" line="1449"/>
511 <source>Open folder</source>
519512 <translation>Apri cartella</translation>
520513 </message>
521514 <message>
522 <location filename="../common/mainwindow.cpp" line="1432"/>
523 <location filename="../common/mainwindow.cpp" line="1449"/>
524 <location filename="../common/mainwindow.cpp" line="1784"/>
525 <source>Open File</source>
515 <location filename="../common/mainwindow.cpp" line="1464"/>
516 <location filename="../common/mainwindow.cpp" line="1481"/>
517 <location filename="../common/mainwindow.cpp" line="1816"/>
518 <source>Open file</source>
526519 <translation>Apri file</translation>
527520 </message>
528521 <message>
529 <location filename="../common/mainwindow.cpp" line="1434"/>
530 <location filename="../common/mainwindow.cpp" line="1451"/>
522 <location filename="../common/mainwindow.cpp" line="1466"/>
523 <location filename="../common/mainwindow.cpp" line="1483"/>
531524 <source>All videos (%1)</source>
532525 <translation>Tutti i video (%1)</translation>
533526 </message>
534527 <message>
535 <location filename="../common/mainwindow.cpp" line="1652"/>
528 <location filename="../common/mainwindow.cpp" line="1684"/>
536529 <source>Muted</source>
537530 <translation>Muto</translation>
538531 </message>
539532 <message>
540 <location filename="../common/mainwindow.cpp" line="1655"/>
541 <location filename="../common/mainwindow.cpp" line="1667"/>
542 <location filename="../common/mainwindow.cpp" line="1677"/>
543 <location filename="../common/mainwindow.cpp" line="1684"/>
533 <location filename="../common/mainwindow.cpp" line="1687"/>
534 <location filename="../common/mainwindow.cpp" line="1699"/>
535 <location filename="../common/mainwindow.cpp" line="1709"/>
536 <location filename="../common/mainwindow.cpp" line="1716"/>
544537 <source>Volume: %1%</source>
545538 <translation>Volume: %1%</translation>
546539 </message>
547540 <message>
548 <location filename="../common/mainwindow.cpp" line="1749"/>
549 <location filename="../common/mainwindow.cpp" line="1757"/>
541 <location filename="../common/mainwindow.cpp" line="1781"/>
542 <location filename="../common/mainwindow.cpp" line="1789"/>
550543 <source>Subtitle %1: %2s</source>
551544 <translation>Sottotitoli: %1: %2s</translation>
552545 </message>
553546 <message>
554 <location filename="../common/mainwindow.cpp" line="1750"/>
555 <location filename="../common/mainwindow.cpp" line="1758"/>
547 <location filename="../common/mainwindow.cpp" line="1782"/>
548 <location filename="../common/mainwindow.cpp" line="1790"/>
556549 <source>delayed</source>
557550 <translation>ritardato</translation>
558551 </message>
559552 <message>
560 <location filename="../common/mainwindow.cpp" line="1750"/>
561 <location filename="../common/mainwindow.cpp" line="1758"/>
553 <location filename="../common/mainwindow.cpp" line="1782"/>
554 <location filename="../common/mainwindow.cpp" line="1790"/>
562555 <source>advanced</source>
563556 <translation>posticipare</translation>
564557 </message>
565558 <message>
566 <location filename="../common/mainwindow.cpp" line="1765"/>
567 <location filename="../common/mainwindow.cpp" line="1772"/>
568 <location filename="../common/mainwindow.cpp" line="1779"/>
559 <location filename="../common/mainwindow.cpp" line="1797"/>
560 <location filename="../common/mainwindow.cpp" line="1804"/>
561 <location filename="../common/mainwindow.cpp" line="1811"/>
569562 <source>Speed: %1x</source>
570563 <translation>Velocità: %1x</translation>
571564 </message>
572565 <message>
573 <location filename="../common/mainwindow.cpp" line="1786"/>
574 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
575 <translation>Sottotitoli (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
576 </message>
577 <message>
578 <location filename="../common/mainwindow.cpp" line="1848"/>
566 <location filename="../common/mainwindow.cpp" line="1818"/>
567 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
568 <translation>Sottotitoli (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
569 </message>
570 <message>
571 <location filename="../common/mainwindow.cpp" line="1880"/>
579572 <source>View</source>
580573 <translation>Visualizza</translation>
581574 </message>
582575 <message>
583 <location filename="../common/mainwindow.cpp" line="1859"/>
576 <location filename="../common/mainwindow.cpp" line="1891"/>
584577 <source>Movie Screenshot</source>
585578 <translation>Screenshot film</translation>
586579 </message>
587580 <message>
588 <location filename="../common/mainwindow.cpp" line="1860"/>
581 <location filename="../common/mainwindow.cpp" line="1892"/>
589582 <source>Saved to</source>
590583 <translation>Salva in</translation>
591584 </message>
592585 <message>
593 <location filename="../common/mainwindow.cpp" line="1874"/>
594 <location filename="../common/mainwindow.cpp" line="1957"/>
586 <location filename="../common/mainwindow.cpp" line="1906"/>
587 <location filename="../common/mainwindow.cpp" line="1989"/>
595588 <source>The screenshot is saved</source>
596589 <translation>Lo screenshot è stato salvato</translation>
597590 </message>
598591 <message>
599 <location filename="../common/mainwindow.cpp" line="1874"/>
600 <source>The screenshot is failed to save</source>
601 <translation>Salvataggio dello screenshot fallito</translation>
602 </message>
603 <message>
604 <location filename="../common/mainwindow.cpp" line="2044"/>
605 <location filename="../common/mainwindow.cpp" line="2741"/>
592 <location filename="../common/mainwindow.cpp" line="1906"/>
593 <source>Failed to save the screenshot</source>
594 <translation>Salvataggio screenshot fallito</translation>
595 </message>
596 <message>
597 <location filename="../common/mainwindow.cpp" line="2076"/>
598 <location filename="../common/mainwindow.cpp" line="2782"/>
606599 <source>Invalid file: %1</source>
607600 <translation>File non valido: %1</translation>
601 </message>
602 </context>
603 <context>
604 <name>dmr::MovieInfo</name>
605 <message>
606 <location filename="../libdmr/playlist_model.h" line="67"/>
607 <source>%1G</source>
608 <translation>%1G</translation>
609 </message>
610 <message>
611 <location filename="../libdmr/playlist_model.h" line="69"/>
612 <source>%1M</source>
613 <translation>%1M</translation>
614 </message>
615 <message>
616 <location filename="../libdmr/playlist_model.h" line="71"/>
617 <source>%1K</source>
618 <translation>%1K</translation>
619 </message>
620 <message>
621 <location filename="../libdmr/playlist_model.h" line="73"/>
622 <source>%1</source>
623 <translation>%1</translation>
608624 </message>
609625 </context>
610626 <context>
638654 <context>
639655 <name>dmr::MpvProxy</name>
640656 <message>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
642 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
658 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
643659 <source>[internal]</source>
644660 <translation>[interno]</translation>
645661 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>フォルダを開く</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
5959 <message>
6060 <location filename="../common/settings_translation.cpp" line="11"/>
6161 <source>Path</source>
62 <translation type="unfinished"/>
62 <translation>パス</translation>
6363 </message>
6464 <message>
6565 <location filename="../common/settings_translation.cpp" line="12"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>音量を下げる</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>設定</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>フルスクリーンにする</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>ファイルを開く</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>フォルダを開く</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>保存</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepinビデオプレイヤー</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation type="unfinished"/>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation type="unfinished"/>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation type="unfinished"/>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation type="unfinished"/>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>フォルダを開く</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>ファイルを開く</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation type="unfinished"/>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>消音</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation type="unfinished"/>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>表示</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>映画のスクリーンショット</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
44 <location filename="../main.cpp" line="88"/>
55 <location filename="../main.cpp" line="120"/>
66 <source>Deepin Movie</source>
7 <translation>Deepin Movie </translation>
7 <translation>Deepin 동영상 </translation>
88 </message>
99 <message>
1010 <location filename="../main.cpp" line="89"/>
1111 <source>Deepin Movie is a well-designed and full-featured video player with simple borderless design. It supports local and streaming media play with multiple video formats.</source>
12 <translation>Deepin Movie는 경계 없는 간단한 디자인을 자랑하는 최고의 비디오 플레이어입니다. 본 플레이어는 다양한 비디오 포맷의 로컬 및 스트리밍 미디어 플레이를 지원합니다.</translation>
12 <translation>Deepin 동영상은 단순한 테두리 없는 디자인으로 디자인도 잘 되어 있고, 모든 기능을 갖춘 비디오 플레이어입니다. 여러 비디오 형식으로 로컬 및 스트리밍 미디어 재생을 지원합니다.</translation>
1313 </message>
1414 <message>
1515 <location filename="../common/mainwindow.cpp" line="116"/>
1616 <source>Invalid folder</source>
17 <translation type="unfinished"/>
17 <translation>잘못된 폴더</translation>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>폴더 열기</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
2626 <source>You don&apos;t have permission to operate this folder</source>
27 <translation type="unfinished"/>
27 <translation>이 폴더를 조작할 수 있는 권한이 없습니다</translation>
2828 </message>
2929 <message>
3030 <location filename="../common/settings_translation.cpp" line="5"/>
3131 <source>Auto add similar files to play</source>
32 <translation type="unfinished"/>
32 <translation>재생할 유사한 파일 자동 추가</translation>
3333 </message>
3434 <message>
3535 <location filename="../common/settings_translation.cpp" line="6"/>
3636 <source>Clear playlist when exit</source>
37 <translation type="unfinished"/>
37 <translation>종료시 재생 목록 지우기</translation>
3838 </message>
3939 <message>
4040 <location filename="../common/settings_translation.cpp" line="7"/>
4141 <source>Show video preview on mouseover</source>
42 <translation type="unfinished"/>
42 <translation>마우스 오버시 비디오 미리보기 표시</translation>
4343 </message>
4444 <message>
4545 <location filename="../common/settings_translation.cpp" line="8"/>
4646 <source>Open a new player for each file played</source>
47 <translation type="unfinished"/>
47 <translation>재생되는 각 파일에 대해 새 플레이어 열기</translation>
4848 </message>
4949 <message>
5050 <location filename="../common/settings_translation.cpp" line="9"/>
5151 <source>Pause when minimized</source>
52 <translation>최소화됐을 때 일시정지</translation>
52 <translation>최소화된 경우 일시 중지</translation>
5353 </message>
5454 <message>
5555 <location filename="../common/settings_translation.cpp" line="10"/>
5656 <source>Remember playback position</source>
57 <translation type="unfinished"/>
57 <translation>재생 위치 기억</translation>
5858 </message>
5959 <message>
6060 <location filename="../common/settings_translation.cpp" line="11"/>
6161 <source>Path</source>
62 <translation type="unfinished"/>
62 <translation>경로</translation>
6363 </message>
6464 <message>
6565 <location filename="../common/settings_translation.cpp" line="12"/>
6666 <source>Basic</source>
67 <translation type="unfinished"/>
67 <translation>기본</translation>
6868 </message>
6969 <message>
7070 <location filename="../common/settings_translation.cpp" line="13"/>
101101 <location filename="../common/settings_translation.cpp" line="20"/>
102102 <location filename="../common/settings_translation.cpp" line="21"/>
103103 <source>Subtitle</source>
104 <translation type="unfinished"/>
104 <translation>자막</translation>
105105 </message>
106106 <message>
107107 <location filename="../common/settings_translation.cpp" line="22"/>
108108 <source>Font Style</source>
109 <translation type="unfinished"/>
109 <translation>글꼴 스타일</translation>
110110 </message>
111111 <message>
112112 <location filename="../common/settings_translation.cpp" line="23"/>
113113 <source>Restore Defaults</source>
114 <translation type="unfinished"/>
114 <translation>기본값 복원</translation>
115115 </message>
116116 <message>
117117 <location filename="../common/settings_translation.cpp" line="24"/>
141141 <message>
142142 <location filename="../common/settings_translation.cpp" line="29"/>
143143 <source>Next frame</source>
144 <translation type="unfinished"/>
144 <translation>다음 프레임</translation>
145145 </message>
146146 <message>
147147 <location filename="../common/settings_translation.cpp" line="30"/>
148148 <source>Previous frame</source>
149 <translation type="unfinished"/>
149 <translation>이전 프레임</translation>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>볼륨 낮추기</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
161161 <message>
162162 <location filename="../common/settings_translation.cpp" line="33"/>
163163 <source>Speed up</source>
164 <translation type="unfinished"/>
164 <translation>속도 올리기</translation>
165165 </message>
166166 <message>
167167 <location filename="../common/settings_translation.cpp" line="34"/>
168168 <source>Speed down</source>
169 <translation type="unfinished"/>
169 <translation>속도 낮추기</translation>
170170 </message>
171171 <message>
172172 <location filename="../common/settings_translation.cpp" line="35"/>
186186 <message>
187187 <location filename="../common/settings_translation.cpp" line="38"/>
188188 <source>Reset speed</source>
189 <translation type="unfinished"/>
189 <translation>속도 재설정</translation>
190190 </message>
191191 <message>
192192 <location filename="../common/settings_translation.cpp" line="39"/>
201201 <message>
202202 <location filename="../common/settings_translation.cpp" line="41"/>
203203 <source>Burst screenshot</source>
204 <translation>스크린 숏 나타내기 </translation>
204 <translation>버스트 스크린샷</translation>
205205 </message>
206206 <message>
207207 <location filename="../common/settings_translation.cpp" line="42"/>
208208 <source>Film screenshot</source>
209 <translation type="unfinished"/>
209 <translation>필름 스크린샷</translation>
210210 </message>
211211 <message>
212212 <location filename="../common/settings_translation.cpp" line="43"/>
213213 <source>0.5s backward</source>
214 <translation type="unfinished"/>
214 <translation>0.5초 뒤로</translation>
215215 </message>
216216 <message>
217217 <location filename="../common/settings_translation.cpp" line="44"/>
218218 <source>0.5s forward</source>
219 <translation type="unfinished"/>
219 <translation>0.5초 앞으로</translation>
220220 </message>
221221 <message>
222222 <location filename="../common/settings_translation.cpp" line="45"/>
223223 <source>Font</source>
224 <translation>폰트</translation>
224 <translation>글꼴</translation>
225225 </message>
226226 <message>
227227 <location filename="../common/settings_translation.cpp" line="46"/>
228228 <source>Font Size</source>
229 <translation type="unfinished"/>
229 <translation>글꼴 크기:</translation>
230230 </message>
231231 </context>
232232 <context>
244244 <message>
245245 <location filename="../widgets/url_dialog.cpp" line="46"/>
246246 <source>Please enter the URL:</source>
247 <translation type="unfinished"/>
247 <translation>URL을 입력해 주세요.</translation>
248248 </message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>설정 </translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272 <translation>전체 화면</translation>
261 <translation>전체화면</translation>
273262 </message>
274263 <message>
275264 <location filename="../common/actions.cpp" line="110"/>
276265 <source>Always on Top</source>
277 <translation type="unfinished"/>
266 <translation>항상 위에</translation>
278267 </message>
279268 <message>
280269 <location filename="../common/actions.cpp" line="284"/>
281270 <source>Film info</source>
282 <translation type="unfinished"/>
271 <translation>필름 정보</translation>
272 </message>
273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>파일 열기</translation>
283278 </message>
284279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>폴더 열기</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>밝은 테마</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
295295 <message>
296296 <location filename="../common/actions.cpp" line="105"/>
297297 <source>Open CD/DVD</source>
298 <translation type="unfinished"/>
298 <translation>CD/DVD 열기</translation>
299299 </message>
300300 <message>
301301 <location filename="../common/actions.cpp" line="109"/>
305305 <message>
306306 <location filename="../common/actions.cpp" line="115"/>
307307 <source>Play Mode</source>
308 <translation type="unfinished"/>
308 <translation>재생 모드</translation>
309309 </message>
310310 <message>
311311 <location filename="../common/actions.cpp" line="118"/>
312312 <source>Order Play</source>
313 <translation type="unfinished"/>
313 <translation>재생 명령</translation>
314314 </message>
315315 <message>
316316 <location filename="../common/actions.cpp" line="119"/>
317317 <source>Shuffle Play</source>
318 <translation type="unfinished"/>
318 <translation>셔플 재생</translation>
319319 </message>
320320 <message>
321321 <location filename="../common/actions.cpp" line="120"/>
322322 <source>Single Play</source>
323 <translation type="unfinished"/>
323 <translation>한곡 재생</translation>
324324 </message>
325325 <message>
326326 <location filename="../common/actions.cpp" line="121"/>
327327 <source>Single Loop</source>
328 <translation type="unfinished"/>
328 <translation>한곡 반복</translation>
329329 </message>
330330 <message>
331331 <location filename="../common/actions.cpp" line="122"/>
332332 <source>List Loop</source>
333 <translation type="unfinished"/>
333 <translation>목록 반복</translation>
334334 </message>
335335 <message>
336336 <location filename="../common/actions.cpp" line="129"/>
340340 <message>
341341 <location filename="../common/actions.cpp" line="132"/>
342342 <source>Default</source>
343 <translation>ㄷㅣ폴트.</translation>
343 <translation>기본값</translation>
344344 </message>
345345 <message>
346346 <location filename="../common/actions.cpp" line="140"/>
347347 <source>Clockwise</source>
348 <translation type="unfinished"/>
348 <translation>시계 방향으로</translation>
349349 </message>
350350 <message>
351351 <location filename="../common/actions.cpp" line="141"/>
352352 <source>Counterclockwise</source>
353 <translation type="unfinished"/>
353 <translation>반시계 방향으로</translation>
354354 </message>
355355 <message>
356356 <location filename="../common/actions.cpp" line="144"/>
357357 <source>Next frame</source>
358 <translation type="unfinished"/>
358 <translation>다음 프레임</translation>
359359 </message>
360360 <message>
361361 <location filename="../common/actions.cpp" line="145"/>
362362 <source>Previous frame</source>
363 <translation type="unfinished"/>
363 <translation>이전 프레임</translation>
364364 </message>
365365 <message>
366366 <location filename="../common/actions.cpp" line="152"/>
367367 <source>Sound</source>
368 <translation>소리</translation>
368 <translation>사운드</translation>
369369 </message>
370370 <message>
371371 <location filename="../common/actions.cpp" line="155"/>
380380 <message>
381381 <location filename="../common/actions.cpp" line="159"/>
382382 <source>Left channel</source>
383 <translation type="unfinished"/>
383 <translation>왼쪽 채널</translation>
384384 </message>
385385 <message>
386386 <location filename="../common/actions.cpp" line="160"/>
387387 <source>Right channel</source>
388 <translation type="unfinished"/>
388 <translation>오른쪽 채널</translation>
389389 </message>
390390 <message>
391391 <location filename="../common/actions.cpp" line="166"/>
395395 <message>
396396 <location filename="../common/actions.cpp" line="176"/>
397397 <source>Subtitle</source>
398 <translation type="unfinished"/>
398 <translation>자막</translation>
399399 </message>
400400 <message>
401401 <location filename="../common/actions.cpp" line="177"/>
402402 <source>Load</source>
403 <translation type="unfinished"/>
403 <translation>불러오기</translation>
404404 </message>
405405 <message>
406406 <location filename="../common/actions.cpp" line="178"/>
407407 <source>Online Search</source>
408 <translation type="unfinished"/>
408 <translation>온라인 검색</translation>
409409 </message>
410410 <message>
411411 <location filename="../common/actions.cpp" line="182"/>
415415 <message>
416416 <location filename="../common/actions.cpp" line="186"/>
417417 <source>Hide</source>
418 <translation type="unfinished"/>
418 <translation>숨기기</translation>
419419 </message>
420420 <message>
421421 <location filename="../common/actions.cpp" line="190"/>
422422 <source>Encodings</source>
423 <translation type="unfinished"/>
423 <translation>인코딩</translation>
424424 </message>
425425 <message>
426426 <location filename="../common/actions.cpp" line="258"/>
430430 <message>
431431 <location filename="../common/actions.cpp" line="259"/>
432432 <source>Film Screenshot</source>
433 <translation type="unfinished"/>
433 <translation>필름 스크린샷</translation>
434434 </message>
435435 <message>
436436 <location filename="../common/actions.cpp" line="260"/>
437437 <source>Burst Shooting</source>
438 <translation type="unfinished"/>
438 <translation>버스트 슈팅</translation>
439439 </message>
440440 <message>
441441 <location filename="../common/actions.cpp" line="267"/>
445445 <message>
446446 <location filename="../common/actions.cpp" line="268"/>
447447 <source>Film Info</source>
448 <translation type="unfinished"/>
448 <translation>필름 정보</translation>
449449 </message>
450450 <message>
451451 <location filename="../common/actions.cpp" line="282"/>
455455 <message>
456456 <location filename="../common/actions.cpp" line="283"/>
457457 <source>Display in file manager</source>
458 <translation type="unfinished"/>
458 <translation>파일 관리자에 표시</translation>
459459 </message>
460460 </context>
461461 <context>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation type="unfinished"/>
465 <source>Duration: %1</source>
466 <translation>재생 시간: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation type="unfinished"/>
470 <source>Resolution: %1</source>
471 <translation>해상도: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation type="unfinished"/>
475 <source>Size: %1</source>
476 <translation>크기: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>저장</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Movie </translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation>불러오기 성공</translation>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation>불러오기 실패</translation>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation>장치를 찾을 수 없음</translation>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation>구문분석 실패</translation>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation>폴더 열기</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>파일 열기</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation>모든 동영상 (%1)</translation>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation>음소거됨</translation>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation>볼륨: %1%</translation>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>폴더 열기</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation>조용히 상태</translation>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550 <translation type="unfinished"/>
551 </message>
552 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
543 <translation>자막 %1: %2초</translation>
544 </message>
545 <message>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556 <translation type="unfinished"/>
557 </message>
558 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
549 <translation>지연됨</translation>
550 </message>
551 <message>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562 <translation type="unfinished"/>
563 </message>
564 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
555 <translation>고급</translation>
556 </message>
557 <message>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569 <translation type="unfinished"/>
570 </message>
571 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
562 <translation>속도: %1x</translation>
563 </message>
564 <message>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>자막 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>ㅂㅗ기</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584 <translation>영화 스크린 숏 </translation>
585 </message>
586 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
577 <translation>동영상 스크린샷</translation>
578 </message>
579 <message>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589 <translation type="unfinished"/>
590 </message>
591 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
582 <translation>저장됨:</translation>
583 </message>
584 <message>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595 <translation type="unfinished"/>
596 </message>
597 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
588 <translation>스크린샷이 저장 되었습니다</translation>
589 </message>
590 <message>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>스크린샷을 저장하지 못했습니다</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606 <translation type="unfinished"/>
599 <translation>잘못된 파일: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
611627 <message>
612628 <location filename="../widgets/movieinfo_dialog.cpp" line="118"/>
613629 <source>File Type:</source>
614 <translation type="unfinished"/>
630 <translation>파일 유형:</translation>
615631 </message>
616632 <message>
617633 <location filename="../widgets/movieinfo_dialog.cpp" line="119"/>
618634 <source>Resolution:</source>
619 <translation type="unfinished"/>
635 <translation>해상도:</translation>
620636 </message>
621637 <message>
622638 <location filename="../widgets/movieinfo_dialog.cpp" line="120"/>
623639 <source>File Size:</source>
624 <translation type="unfinished"/>
640 <translation>파일 크기:</translation>
625641 </message>
626642 <message>
627643 <location filename="../widgets/movieinfo_dialog.cpp" line="121"/>
628644 <source>Duration:</source>
629 <translation type="unfinished"/>
645 <translation>재생 시간:</translation>
630646 </message>
631647 <message>
632648 <location filename="../widgets/movieinfo_dialog.cpp" line="126"/>
633649 <source>File Path:</source>
634 <translation type="unfinished"/>
650 <translation>파일 경로:</translation>
635651 </message>
636652 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643 <translation type="unfinished"/>
659 <translation>[내부]</translation>
644660 </message>
645661 </context>
646662 <context>
650666 <location filename="../widgets/playlist_widget.cpp" line="227"/>
651667 <location filename="../widgets/playlist_widget.cpp" line="402"/>
652668 <source>File does not exist</source>
653 <translation type="unfinished"/>
669 <translation>파일이 없습니다</translation>
654670 </message>
655671 </context>
656672 <context>
658674 <message>
659675 <location filename="../common/dmr_settings.cpp" line="155"/>
660676 <source>%1/DMovie%2.jpg</source>
661 <translation type="unfinished"/>
677 <translation>%1/DMovie%2.jpg</translation>
662678 </message>
663679 <message>
664680 <location filename="../common/dmr_settings.cpp" line="161"/>
665681 <source>%1/DMovie%2(%3).jpg</source>
666 <translation type="unfinished"/>
682 <translation>%1/DMovie%2(%3).jpg</translation>
667683 </message>
668684 </context>
669685 <context>
677693 <location filename="../widgets/toolbox_proxy.cpp" line="685"/>
678694 <location filename="../widgets/toolbox_proxy.cpp" line="696"/>
679695 <source>Previous</source>
680 <translation>ㅇㅣㅈㅓㄴ</translation>
696 <translation>이전</translation>
681697 </message>
682698 <message>
683699 <location filename="../widgets/toolbox_proxy.cpp" line="686"/>
695711 <location filename="../widgets/toolbox_proxy.cpp" line="688"/>
696712 <location filename="../widgets/toolbox_proxy.cpp" line="697"/>
697713 <source>Playlist</source>
698 <translation>재생목록</translation>
714 <translation>재생 목록</translation>
699715 </message>
700716 <message>
701717 <location filename="../widgets/toolbox_proxy.cpp" line="689"/>
702718 <location filename="../widgets/toolbox_proxy.cpp" line="697"/>
703719 <location filename="../widgets/toolbox_proxy.cpp" line="876"/>
704720 <source>Fullscreen</source>
705 <translation>전체 화면</translation>
721 <translation>전체화면</translation>
706722 </message>
707723 <message>
708724 <location filename="../widgets/toolbox_proxy.cpp" line="683"/>
709725 <location filename="../widgets/toolbox_proxy.cpp" line="696"/>
710726 <source>Play/Pause</source>
711 <translation>재생/일시정지</translation>
727 <translation>재생 / 일시정지</translation>
712728 </message>
713729 <message>
714730 <location filename="../widgets/toolbox_proxy.cpp" line="873"/>
715731 <source>Exit fullscreen</source>
716 <translation>전체화면에서 나가기 </translation>
732 <translation>전체화면 종료</translation>
717733 </message>
718734 <message>
719735 <location filename="../widgets/toolbox_proxy.cpp" line="886"/>
720736 <source>Pause</source>
721 <translation>일시 정지</translation>
737 <translation>일시정지</translation>
722738 </message>
723739 </context>
724740 </TS>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Peldankê Veke</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Deng dîne</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Pelê Veke</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Mîheng</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Temaya Ronî</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Dîmentêr</translation>
282271 <translation>Agahiya Fîlmê</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Pelê veke</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Peldankê Veke</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>mawe: %1</translation>
465 <source>Duration: %1</source>
466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>hûrbînî: %1</translation>
470 <source>Resolution: %1</source>
471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>mezinahî: %1</translation>
475 <source>Size: %1</source>
476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>Qeyd bike</translation>
480 <source>Save</source>
481 <translation type="unfinished"/>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Movie</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Barkirin bi ser ket</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Barkirin bi ser neket</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Amûr nehat dîtin</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Guherîn bi ser neket</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Peldankê Veke</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation>Pelê Veke</translation>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Pelê veke</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Hemû vîdyo (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Hat bêdengkirin</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Deng: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Binnivîs %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>derengman</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>pêşketî</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Lez: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Binnivîs (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Dîtin</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Dîmena Dîmenderê ya Sînemayê</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Hat qeydkirin li</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Dîmena dîmenderê hat qeydkirin</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Qeydkirina dîmena dîmenderê bi serneket.</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Pelê nederbasdar: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[nav]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Atverti aplanką</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Tildyti</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Atverti failą</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Nustatymai</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Šviesi tema</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Visas ekranas</translation>
282271 <translation>Filmo informacija</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Atverti failą</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Atverti aplanką</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Šviesi tema</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>trukmė: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Trukmė: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>raiška: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Raiška: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>dydis: %1</translation>
475 <source>Size: %1</source>
476 <translation>Dydis: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>įrašyti</translation>
480 <source>Save</source>
481 <translation>Įrašyti</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin filmas</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Įkėlimas sėkmingas</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Įkėlimas nepavyko</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Nerasta jokio įrenginio</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Nagrinėjimas nepavyko</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Atverti aplanką</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Atverti failą</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Visi vaizdo įrašai (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Nutildyta</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Garsis: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Subtitrai %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>vėluoja</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>skuba</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Greitis: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Subtitrai (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Subtitrai (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Žiūrėti</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Filmo ekrano kopija</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Įrašyta į</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Ekrano kopija įrašyta</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Ekrano kopijos įrašyti nepavyko</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Nepavyko įrašyti ekrano kopijos</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Neteisingas failas: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[vidinis]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation type="unfinished"/>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation type="unfinished"/>
155155 </message>
156156 <message>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
261255 <source>Settings</source>
262256 <translation type="unfinished"/>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation type="unfinished"/>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation type="unfinished"/>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288288 <translation type="unfinished"/>
289289 </message>
290290 <message>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>സൂക്ഷിക്കുക</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation type="unfinished"/>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
44 <location filename="../main.cpp" line="88"/>
55 <location filename="../main.cpp" line="120"/>
66 <source>Deepin Movie</source>
7 <translation type="unfinished"/>
7 <translation>Дээпин Кино</translation>
88 </message>
99 <message>
1010 <location filename="../main.cpp" line="89"/>
1111 <source>Deepin Movie is a well-designed and full-featured video player with simple borderless design. It supports local and streaming media play with multiple video formats.</source>
12 <translation type="unfinished"/>
12 <translation>Дээпин кино нь маш сайн дизайн болон онцог чанаруудыг шингээсэн видео тоглуулагч бөгөөд хүрээгүй дизайн дотоод болон шууд уурсгалын медиа файлуудыг тоглуулахаас гадна олон төрөлийн видео форматыг дэмждэг.</translation>
1313 </message>
1414 <message>
1515 <location filename="../common/mainwindow.cpp" line="116"/>
1616 <source>Invalid folder</source>
17 <translation type="unfinished"/>
17 <translation>Буруу хавтас</translation>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
2626 <source>You don&apos;t have permission to operate this folder</source>
27 <translation type="unfinished"/>
27 <translation>Танд энэ хавтастай ажиллахад зөвшөөрөл байхгүй байна</translation>
2828 </message>
2929 <message>
3030 <location filename="../common/settings_translation.cpp" line="5"/>
3131 <source>Auto add similar files to play</source>
32 <translation type="unfinished"/>
32 <translation>Ижил төрөлийн файлуудыг автоматаар нэмж тоглуулах</translation>
3333 </message>
3434 <message>
3535 <location filename="../common/settings_translation.cpp" line="6"/>
3636 <source>Clear playlist when exit</source>
37 <translation type="unfinished"/>
37 <translation>Гарах үед тоглуулах жагсаалтыг цэвэрлэх</translation>
3838 </message>
3939 <message>
4040 <location filename="../common/settings_translation.cpp" line="7"/>
4141 <source>Show video preview on mouseover</source>
42 <translation type="unfinished"/>
42 <translation>Хулганы заагчаар дээгүүр гүйлгэхэд видеог урьдчилан харах</translation>
4343 </message>
4444 <message>
4545 <location filename="../common/settings_translation.cpp" line="8"/>
5454 <message>
5555 <location filename="../common/settings_translation.cpp" line="10"/>
5656 <source>Remember playback position</source>
57 <translation type="unfinished"/>
57 <translation>Тоглуулах байрлалыг санах</translation>
5858 </message>
5959 <message>
6060 <location filename="../common/settings_translation.cpp" line="11"/>
6161 <source>Path</source>
62 <translation type="unfinished"/>
62 <translation>Зам</translation>
6363 </message>
6464 <message>
6565 <location filename="../common/settings_translation.cpp" line="12"/>
6666 <source>Basic</source>
67 <translation type="unfinished"/>
67 <translation>Энгийн</translation>
6868 </message>
6969 <message>
7070 <location filename="../common/settings_translation.cpp" line="13"/>
7171 <source>Play</source>
72 <translation type="unfinished"/>
72 <translation>Тоглуулах</translation>
7373 </message>
7474 <message>
7575 <location filename="../common/settings_translation.cpp" line="14"/>
7676 <location filename="../common/settings_translation.cpp" line="19"/>
7777 <source>Screenshot</source>
78 <translation type="unfinished"/>
78 <translation>Дэлгэцийн зураг</translation>
7979 </message>
8080 <message>
8181 <location filename="../common/settings_translation.cpp" line="15"/>
8282 <source>Shortcuts</source>
83 <translation type="unfinished"/>
83 <translation>Товчнууд</translation>
8484 </message>
8585 <message>
8686 <location filename="../common/settings_translation.cpp" line="16"/>
111111 <message>
112112 <location filename="../common/settings_translation.cpp" line="23"/>
113113 <source>Restore Defaults</source>
114 <translation type="unfinished"/>
114 <translation>Анхдагч утга сэргээх</translation>
115115 </message>
116116 <message>
117117 <location filename="../common/settings_translation.cpp" line="24"/>
136136 <message>
137137 <location filename="../common/settings_translation.cpp" line="28"/>
138138 <source>Mute</source>
139 <translation type="unfinished"/>
139 <translation>Дуу хаах</translation>
140140 </message>
141141 <message>
142142 <location filename="../common/settings_translation.cpp" line="29"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>Дуу намсгах</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
158158 <source>Volume up</source>
159 <translation type="unfinished"/>
159 <translation>Дуу чангалах</translation>
160160 </message>
161161 <message>
162162 <location filename="../common/settings_translation.cpp" line="33"/>
171171 <message>
172172 <location filename="../common/settings_translation.cpp" line="35"/>
173173 <source>Fullscreen</source>
174 <translation type="unfinished"/>
174 <translation>Дэлгэц дүүрэн</translation>
175175 </message>
176176 <message>
177177 <location filename="../common/settings_translation.cpp" line="36"/>
181181 <message>
182182 <location filename="../common/settings_translation.cpp" line="37"/>
183183 <source>Playlist</source>
184 <translation type="unfinished"/>
184 <translation>Жагсаалт</translation>
185185 </message>
186186 <message>
187187 <location filename="../common/settings_translation.cpp" line="38"/>
221221 <message>
222222 <location filename="../common/settings_translation.cpp" line="45"/>
223223 <source>Font</source>
224 <translation type="unfinished"/>
224 <translation>Фонт</translation>
225225 </message>
226226 <message>
227227 <location filename="../common/settings_translation.cpp" line="46"/>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
261255 <source>Settings</source>
262 <translation type="unfinished"/>
263 </message>
264 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
256 <translation>Тохиргоо</translation>
268257 </message>
269258 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272 <translation type="unfinished"/>
261 <translation>Дэлгэц дүүрэн</translation>
273262 </message>
274263 <message>
275264 <location filename="../common/actions.cpp" line="110"/>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation type="unfinished"/>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288288 <translation type="unfinished"/>
289289 </message>
290290 <message>
305305 <message>
306306 <location filename="../common/actions.cpp" line="115"/>
307307 <source>Play Mode</source>
308 <translation type="unfinished"/>
308 <translation>Тоглох горим</translation>
309309 </message>
310310 <message>
311311 <location filename="../common/actions.cpp" line="118"/>
325325 <message>
326326 <location filename="../common/actions.cpp" line="121"/>
327327 <source>Single Loop</source>
328 <translation type="unfinished"/>
328 <translation>Нэгийг давт</translation>
329329 </message>
330330 <message>
331331 <location filename="../common/actions.cpp" line="122"/>
332332 <source>List Loop</source>
333 <translation type="unfinished"/>
333 <translation>Жагсаалтыг давт</translation>
334334 </message>
335335 <message>
336336 <location filename="../common/actions.cpp" line="129"/>
340340 <message>
341341 <location filename="../common/actions.cpp" line="132"/>
342342 <source>Default</source>
343 <translation type="unfinished"/>
343 <translation>Үндсэн</translation>
344344 </message>
345345 <message>
346346 <location filename="../common/actions.cpp" line="140"/>
365365 <message>
366366 <location filename="../common/actions.cpp" line="152"/>
367367 <source>Sound</source>
368 <translation type="unfinished"/>
368 <translation>Дуу</translation>
369369 </message>
370370 <message>
371371 <location filename="../common/actions.cpp" line="155"/>
372372 <source>Channel</source>
373 <translation type="unfinished"/>
373 <translation>Суваг</translation>
374374 </message>
375375 <message>
376376 <location filename="../common/actions.cpp" line="158"/>
410410 <message>
411411 <location filename="../common/actions.cpp" line="182"/>
412412 <source>Select</source>
413 <translation type="unfinished"/>
413 <translation>Сонгох</translation>
414414 </message>
415415 <message>
416416 <location filename="../common/actions.cpp" line="186"/>
425425 <message>
426426 <location filename="../common/actions.cpp" line="258"/>
427427 <source>Screenshot</source>
428 <translation type="unfinished"/>
428 <translation>Дэлгэцийн зураг</translation>
429429 </message>
430430 <message>
431431 <location filename="../common/actions.cpp" line="259"/>
440440 <message>
441441 <location filename="../common/actions.cpp" line="267"/>
442442 <source>Playlist</source>
443 <translation type="unfinished"/>
443 <translation>Жагсаалт</translation>
444444 </message>
445445 <message>
446446 <location filename="../common/actions.cpp" line="268"/>
455455 <message>
456456 <location filename="../common/actions.cpp" line="283"/>
457457 <source>Display in file manager</source>
458 <translation type="unfinished"/>
458 <translation>Файл менежерт харах</translation>
459459 </message>
460460 </context>
461461 <context>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Хадгалах</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation type="unfinished"/>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
626642 <message>
627643 <location filename="../widgets/movieinfo_dialog.cpp" line="121"/>
628644 <source>Duration:</source>
629 <translation type="unfinished"/>
645 <translation>Урт:</translation>
630646 </message>
631647 <message>
632648 <location filename="../widgets/movieinfo_dialog.cpp" line="126"/>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
671687 <message>
672688 <location filename="../widgets/toolbox_proxy.cpp" line="889"/>
673689 <source>Play</source>
674 <translation type="unfinished"/>
690 <translation>Тоглуулах</translation>
675691 </message>
676692 <message>
677693 <location filename="../widgets/toolbox_proxy.cpp" line="685"/>
678694 <location filename="../widgets/toolbox_proxy.cpp" line="696"/>
679695 <source>Previous</source>
680 <translation type="unfinished"/>
696 <translation>Ѳмнѳх</translation>
681697 </message>
682698 <message>
683699 <location filename="../widgets/toolbox_proxy.cpp" line="686"/>
695711 <location filename="../widgets/toolbox_proxy.cpp" line="688"/>
696712 <location filename="../widgets/toolbox_proxy.cpp" line="697"/>
697713 <source>Playlist</source>
698 <translation type="unfinished"/>
714 <translation>Жагсаалт</translation>
699715 </message>
700716 <message>
701717 <location filename="../widgets/toolbox_proxy.cpp" line="689"/>
702718 <location filename="../widgets/toolbox_proxy.cpp" line="697"/>
703719 <location filename="../widgets/toolbox_proxy.cpp" line="876"/>
704720 <source>Fullscreen</source>
705 <translation type="unfinished"/>
721 <translation>Дэлгэц дүүрэн</translation>
706722 </message>
707723 <message>
708724 <location filename="../widgets/toolbox_proxy.cpp" line="683"/>
709725 <location filename="../widgets/toolbox_proxy.cpp" line="696"/>
710726 <source>Play/Pause</source>
711 <translation type="unfinished"/>
727 <translation>Тоглуулах/Зогсоох</translation>
712728 </message>
713729 <message>
714730 <location filename="../widgets/toolbox_proxy.cpp" line="873"/>
715731 <source>Exit fullscreen</source>
716 <translation type="unfinished"/>
732 <translation>Дүүрэн дэлгэцээс гарах</translation>
717733 </message>
718734 <message>
719735 <location filename="../widgets/toolbox_proxy.cpp" line="886"/>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Buka Folder</translation>
21 <source>Open folder</source>
22 <translation>Buka folder</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Volum turun</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Buka Fail</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Tetapan</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Tema Cerah</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Skrin Penuh</translation>
282271 <translation>Maklumat filem</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Buka fail</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Buka Folder</translation>
282 <source>Open folder</source>
283 <translation>Buka folder</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Tema cerah</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>tempoh: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Tempoh: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>resolusi: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Resolusi: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>saiz: %1</translation>
475 <source>Size: %1</source>
476 <translation>Saiz: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>simpan</translation>
480 <source>Save</source>
481 <translation>Simpan</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Wayang Deepin</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Berjaya dimuatkan</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Gagal dimuatkan</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Tiada peranti ditemui</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Gagal Dihuraikan</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Buka Folder</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation>Buka Fail</translation>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation>Buka folder</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Buka fail</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Semua video (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Disenyapkan</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volum: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Sarikata %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>lengah</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>lanjutan</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Kelajuan: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Sarikata (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Sarikata (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Lihat</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Cekupan Skrin Cereka</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Disimpan ke</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Cekupan skrin telah disimpan</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Cekupan skrin gagal disimpan</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Gagal menyimpan cekupan skrin</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Fail tidak sah: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[dalaman]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Åpne mappe</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>Senk volum</translation>
153 <source>Volume down</source>
154 <translation>Lyd ned</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Åpne fil</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Instillinger</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Lyst tema</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Fullskjerm</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Åpne fil</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Åpne mappe</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Lagre</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin film</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation type="unfinished"/>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation type="unfinished"/>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation type="unfinished"/>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation type="unfinished"/>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Åpne mappe</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Åpne fil</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation type="unfinished"/>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Stille</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation type="unfinished"/>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Vis</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Skjermskudd</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation type="unfinished"/>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation type="unfinished"/>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>सेटिंग्स</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation type="unfinished"/>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation type="unfinished"/>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288288 <translation type="unfinished"/>
289289 </message>
290290 <message>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>सुरक्षित गर्नुहोस्</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>डिपिन चलचित्र</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Map openen</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Volume omlaag</translation>
155155 </message>
156156 <message>
186186 <message>
187187 <location filename="../common/settings_translation.cpp" line="38"/>
188188 <source>Reset speed</source>
189 <translation>Snelheid herstellen</translation>
189 <translation>Standaardsnelheid</translation>
190190 </message>
191191 <message>
192192 <location filename="../common/settings_translation.cpp" line="39"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Bestand openen</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Instellingen</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Licht thema</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Volledig scherm</translation>
282271 <translation>Filminformatie</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Bestand openen</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Map openen</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Licht thema</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
405405 <message>
406406 <location filename="../common/actions.cpp" line="178"/>
407407 <source>Online Search</source>
408 <translation>Online zoeken</translation>
408 <translation>Zoeken op internet</translation>
409409 </message>
410410 <message>
411411 <location filename="../common/actions.cpp" line="182"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>duur: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Duur: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>resolutie: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Resolutie: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>grootte: %1</translation>
475 <source>Size: %1</source>
476 <translation>Grootte: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>opslaan</translation>
480 <source>Save</source>
481 <translation>Bewaren</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Video&apos;s</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Laden voltooid</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Laden mislukt</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Geen apparaat gevonden</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Verwerken mislukt</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Map openen</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Bestand openen</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Alle video&apos;s (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Gedempt</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volume: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Ondertitel %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>vertraagd</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>geavanceerd</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Snelheid: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Ondertitel (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Ondertitel (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Bekijken</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Schermafdruk van film</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Opgeslagen naar</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>De schermafdruk is opgelagen</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>De schermafdruk kan niet worden opgeslagen</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Kan schermafdruk niet opslaan</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Ongeldig bestand: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[intern]</translation>
644660 </message>
702718 <location filename="../widgets/toolbox_proxy.cpp" line="697"/>
703719 <location filename="../widgets/toolbox_proxy.cpp" line="876"/>
704720 <source>Fullscreen</source>
705 <translation>Volledig scherm</translation>
721 <translation>Beeldvullend</translation>
706722 </message>
707723 <message>
708724 <location filename="../widgets/toolbox_proxy.cpp" line="683"/>
713729 <message>
714730 <location filename="../widgets/toolbox_proxy.cpp" line="873"/>
715731 <source>Exit fullscreen</source>
716 <translation>Volledig scherm afsluiten</translation>
732 <translation>Beeldvullende modus verlaten</translation>
717733 </message>
718734 <message>
719735 <location filename="../widgets/toolbox_proxy.cpp" line="886"/>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation type="unfinished"/>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation type="unfinished"/>
155155 </message>
156156 <message>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
261255 <source>Settings</source>
262256 <translation type="unfinished"/>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>I-fullscreen</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Ibuklat file</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288288 <translation type="unfinished"/>
289289 </message>
290290 <message>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Isinup</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation type="unfinished"/>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Ibuklat file</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Otwórz katalog</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Przycisz</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Otwórz plik</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Ustawienia</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Motyw jasny</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Pełny ekran</translation>
282271 <translation>Informacje o filmie</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Otwórz plik</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Otwórz katalog</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Jasny motyw</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>czas trwania: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Czas trwania: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>rozdzielczość: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Rozdzielczość: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>rozmiar: %1</translation>
475 <source>Size: %1</source>
476 <translation>Rozmiar: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>zapisz</translation>
480 <source>Save</source>
481 <translation>Zapisz</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Filmy Deepin</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Pomyślnie wczytano</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Błąd wczytywania</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Nie odnaleziono urządzenia</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Błąd przetwarzania</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Otwórz katalog</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Otwórz plik</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Wszystkie filmy (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Wyciszony</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Głośność: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Napisy %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>opóźnione</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>zaawansowane</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Prędkość: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Pliki napisów (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Napisy (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Podgląd</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Zrzut ekranu z filmu</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Zapisano do</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Zrzut ekranu został zapisany</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Błąd zapisu zrzutu ekranu</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Nie udało się zapisać zrzutu ekranu</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Nieprawidłowy plik: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[wewnętrzny]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Abrir Pasta</translation>
21 <source>Open folder</source>
22 <translation>Abrir pasta</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Diminuir volume</translation>
155155 </message>
156156 <message>
206206 <message>
207207 <location filename="../common/settings_translation.cpp" line="42"/>
208208 <source>Film screenshot</source>
209 <translation>Captura de ecrã</translation>
209 <translation>Captura de ecrã do filme</translation>
210210 </message>
211211 <message>
212212 <location filename="../common/settings_translation.cpp" line="43"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Abrir Ficheiro</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Definições</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Tema Claro</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Ecrã completo</translation>
282271 <translation>Informação do Filme</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Abrir ficheiro</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Abrir Pasta</translation>
282 <source>Open folder</source>
283 <translation>Abrir pasta</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Tema claro</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
325325 <message>
326326 <location filename="../common/actions.cpp" line="121"/>
327327 <source>Single Loop</source>
328 <translation>Loop Único </translation>
328 <translation>Ciclo Único </translation>
329329 </message>
330330 <message>
331331 <location filename="../common/actions.cpp" line="122"/>
332332 <source>List Loop</source>
333 <translation>Listagem</translation>
333 <translation>Ciclo de lista</translation>
334334 </message>
335335 <message>
336336 <location filename="../common/actions.cpp" line="129"/>
430430 <message>
431431 <location filename="../common/actions.cpp" line="259"/>
432432 <source>Film Screenshot</source>
433 <translation>Captura de ecrã</translation>
433 <translation>Captura de ecrã do filme</translation>
434434 </message>
435435 <message>
436436 <location filename="../common/actions.cpp" line="260"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>duração: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Duração: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>resolução: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Resolução: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>tamanho: %1</translation>
475 <source>Size: %1</source>
476 <translation>Tamanho: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>guardar</translation>
480 <source>Save</source>
481 <translation>Guardar</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Movie</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Carregado com sucesso</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Carregamento falhou</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Nenhum dispositivo encontrado</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Análise falhou</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Abrir Pasta</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation>Abrir Ficheiro</translation>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation>Abrir pasta</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Abrir ficheiro</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Todos os vídeos (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Silenciada</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volume: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Legendas %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>Atrasado</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>Avançado</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Velocidade: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Legendas (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Legenda (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Ver</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584 <translation>Captura de Ecrã de Filme</translation>
585 </message>
586 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
577 <translation>Captura de ecrã do filme</translation>
578 </message>
579 <message>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Guardado em</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>A captura de ecrã foi guardada.</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Falha a gravar captura de ecrã</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Falha ao guardar a imagem</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Ficheiro inválido: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[interno]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Abrir pasta </translation>
21 <source>Open folder</source>
22 <translation>Abrir pasta</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Diminuir volume</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Abrir arquivo</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Configurações</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Tema Claro</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Tela cheia </translation>
282271 <translation>Informações do filme</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Abrir arquivo</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Abrir pasta </translation>
282 <source>Open folder</source>
283 <translation>Abrir pasta</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Tema claro</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>duração: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Duração: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>resolução: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Resolução: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>tamanho: %1</translation>
475 <source>Size: %1</source>
476 <translation>Tamanho: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>salvar</translation>
480 <source>Save</source>
481 <translation>Salvar</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Movie</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Carregado com sucesso</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Falha no carregamento</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Nenhum dispositivo encontrado</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>A análise falhou</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Abrir pasta </translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
510 <source>Open folder</source>
511 <translation>Abrir pasta</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Abrir arquivo</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Todos os vídeos (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Mudo</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volume: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Legenda %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>atrasado</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>avançado</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Velocidade: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Legendas (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Legenda (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Visualizar</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Imagem do filme</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Salvo para</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>A captura de tela foi salva </translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Não foi possível salvar a captura de tela </translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Falha ao salvar a cópia da tela</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Arquivo inválido: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[interno]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Deschidere Dosar</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Scade volumul</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Deschide fișier</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Setări</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Fundal alb</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Redare ecran complet</translation>
282271 <translation>Informație video</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Deschide fișierul</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Deschidere dosar</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>durată: %1</translation>
465 <source>Duration: %1</source>
466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>rezoluție: %1</translation>
470 <source>Resolution: %1</source>
471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>mărime: %1</translation>
475 <source>Size: %1</source>
476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>salvare</translation>
480 <source>Save</source>
481 <translation>Salvare</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Player-ul video Deepin</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Încărcare efectuată cu succes</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Încărcare eșuată</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Nu s-a găsit un dispozitiv</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Analizarea a eșuat</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Deschidere dosar</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation>Deschide fișier</translation>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Deschide fișierul</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation type="unfinished"/>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Mute</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Volum: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Subtitrare %1 %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>întârziere</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>avansare</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Viteză: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Subtitrare (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Aspect</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Captură de ecran film</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Salvare la</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Salvare captura de ecran efectuată</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Salvare captura de ecran eșuată</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Fișier invalid: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[intern]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Открыть Папку</translation>
21 <source>Open folder</source>
22 <translation>Открыть папку</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>тише</translation>
153 <source>Volume down</source>
154 <translation>Тише</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Открыть Файл</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Настройки</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Светлая Тема</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Полноэкранный режим</translation>
282271 <translation>Информация о фильме</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Открыть файл</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Открыть Папку</translation>
282 <source>Open folder</source>
283 <translation>Открыть папку</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Светлая тема</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>продолжительность: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Продолжительность: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>разрешение: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Разрешение: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>размер: %1</translation>
475 <source>Size: %1</source>
476 <translation>Размер: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>сохранить</translation>
480 <source>Save</source>
481 <translation>Сохранить</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Видеопроигрыватель Deepin </translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Загрузка успешно завершена</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Ошибка загрузки</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Устройство не найдено</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Ошибка Анализа</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Открыть Папку</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation>Открыть Файл</translation>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation>Открыть папку</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Открыть файл</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Все видео (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Заглушенный</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Громкость: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Субтитры: %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>задержка</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>расширенный</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Скорость: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Субтитры (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Расширение (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Просмотр</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Скриншот Фильма</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Сохранить в</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Снимок экрана сохранен</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Снимок экрана сохранить не удалось</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Не удалось сохранить снимок экрана</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Неверный файл: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[внутренний]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Otvoriť priečinok</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>znížiť hlasitosť</translation>
153 <source>Volume down</source>
154 <translation>Tichšie</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Otvoriť súbor</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Nastavenia</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Svetlá téma</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Celá obrazovka</translation>
282271 <translation>Informácie o filme</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Otvoriť súbor</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Otvoriť adresár</translation>
282 <source>Open folder</source>
283 <translation>Otvoriť priečinok</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Svetlá téma</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>doba trvania: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Doba trvania: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>rozlíšenie: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Rozlíšenie: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>veľkosť: %1</translation>
475 <source>Size: %1</source>
476 <translation>Veľkosť: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>uložiť</translation>
480 <source>Save</source>
481 <translation>Uložiť</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Filmy</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Nahrávanie úspešné</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Nahrávanie zlyhalo</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Nebolo nájdené žiadne zariadenie</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Spracovanie zlyhalo</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Otvoriť adresár</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
510 <source>Open folder</source>
511 <translation>Otvoriť priečinok</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Otvoriť súbor</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Všetky videá (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Stlmené</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Hlasitosť: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Titulky %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>oneskorené</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>pokročilé</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Rýchlosť: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Titulky (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Titulky (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Náhľad</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Snímka obrazovky filmu</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Uložené na</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Snímok obrazovky sa uložil</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Snímok obrazovky sa nepodarilo uložiť</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Nepodarilo sa uložiť snímku obrazovky</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Neplatný súbor: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[vnútorné]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Odpri mapo</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>tišje</translation>
153 <source>Volume down</source>
154 <translation>Tišje</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Odpri datoteko</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Nastavitve</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Svetla tema</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Celozaslonski način</translation>
282271 <translation>Podatki o filmu</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Odpri datoteko</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Odpri mapo</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>čas trajanja: %1</translation>
465 <source>Duration: %1</source>
466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>ločljivost: %1</translation>
470 <source>Resolution: %1</source>
471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>velikost: %1</translation>
475 <source>Size: %1</source>
476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>shrani</translation>
480 <source>Save</source>
481 <translation>Shrani</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Filmi</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Uspešno naloženo</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Nalaganje neuspešno</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Ne najdem naprave</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Razčlenjevanje ni uspelo</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Odpri mapo</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Odpri datoteko</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Vsi posnetki (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Utišano</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Glasnost: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Podnapisi %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>zamaknjeno</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>napredno</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Hitrost: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Podnapisi (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Prikaži</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Zaslonski posnetek filma</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Shranjeno v</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Slika je shranjena</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Slike ni bilo mogoče shraniti</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Neveljavna datoteka: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation type="unfinished"/>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[internal]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation type="unfinished"/>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation type="unfinished"/>
155155 </message>
156156 <message>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
261255 <source>Settings</source>
262256 <translation type="unfinished"/>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation type="unfinished"/>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation type="unfinished"/>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288288 <translation type="unfinished"/>
289289 </message>
290290 <message>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation type="unfinished"/>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation type="unfinished"/>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Отвори фасциклу</translation>
2323 </message>
2424 <message>
111111 <message>
112112 <location filename="../common/settings_translation.cpp" line="23"/>
113113 <source>Restore Defaults</source>
114 <translation>Врати подразумевано</translation>
114 <translation>Врати Подразумевано</translation>
115115 </message>
116116 <message>
117117 <location filename="../common/settings_translation.cpp" line="24"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Утишај</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Отвори датотеку</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Подешавања</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Светла тема</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Цео екран</translation>
282271 <translation>Својства видеа</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Отвори датотеку</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Отвори фасциклу</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Светла тема</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
390390 <message>
391391 <location filename="../common/actions.cpp" line="166"/>
392392 <source>Track</source>
393 <translation> Снимак</translation>
393 <translation>Снимак</translation>
394394 </message>
395395 <message>
396396 <location filename="../common/actions.cpp" line="176"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>трајање: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Трајање: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>резолуција: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Резолуција: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>величина: %1</translation>
475 <source>Size: %1</source>
476 <translation>Величина: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>сачувај</translation>
480 <source>Save</source>
481 <translation>Сачувај</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Дипин Филм</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Успешно учитавање</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Неуспешно учитавање</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Није пронађен ниједан уређај</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Неуспешно анализирање</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Отвори фасциклу</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Отвори датотеку</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Сви видео снимци (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Ућуткано</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Јачина: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Титл %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>одложено</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>напредно</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Брзина: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Титл (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Титл (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Прегледај</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Усликај видео</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Сачувано у</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Слика екрана је сачувана</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Слика екрана није сачувана</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Неуспело чување слике екрана</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Неисправна датотека: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[унутрашњи]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Öppen Mapp</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>Volym ner</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Inställningar</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Fullskärm</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Öppna fil</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Öppen Mapp</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Spara</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin-film</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation type="unfinished"/>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation type="unfinished"/>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation type="unfinished"/>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation type="unfinished"/>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Öppen Mapp</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Öppna fil</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation type="unfinished"/>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Tystad</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation type="unfinished"/>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Visa</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Filmskärmdump</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>கோப்புறையைத் திற</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>ஒலி குறைக்க</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>அமைவுகள்</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation type="unfinished"/>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation type="unfinished"/>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>கோப்புறையைத் திற</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>சேமி</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation type="unfinished"/>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>கோப்புறையைத் திற</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1414 <message>
1515 <location filename="../common/mainwindow.cpp" line="116"/>
1616 <source>Invalid folder</source>
17 <translation>Klasör geçersiz</translation>
17 <translation>Geçersiz klasör</translation>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Klasör Aç</translation>
21 <source>Open folder</source>
22 <translation>Klasörü aç</translation>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>Sesi azalt</translation>
155155 </message>
156156 <message>
244244 <message>
245245 <location filename="../widgets/url_dialog.cpp" line="46"/>
246246 <source>Please enter the URL:</source>
247 <translation>Lütfen adresi yazın:</translation>
247 <translation>Lütfen adresi yazınız:</translation>
248248 </message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Dosya Aç</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Ayarlar</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Açık Tema</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Tam ekran</translation>
282271 <translation>Film bilgileri</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Dosya aç</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Klasör Aç</translation>
282 <source>Open folder</source>
283 <translation>Klasörü aç</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Açık tema</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
405405 <message>
406406 <location filename="../common/actions.cpp" line="178"/>
407407 <source>Online Search</source>
408 <translation>Çevrimiçi Arama</translation>
408 <translation>Çevrimiçi Ara</translation>
409409 </message>
410410 <message>
411411 <location filename="../common/actions.cpp" line="182"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>süre: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Süre: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>çözünürlük: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Çözünürlük: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>boyut: %1</translation>
475 <source>Size: %1</source>
476 <translation>Boyut: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>kaydet</translation>
480 <source>Save</source>
481 <translation>Kaydet</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin Sinema</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Yüklendi</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Yüklenemedi</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508 <translation>Herhangi bir aygıt bulunamadı</translation>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
501 <translation>Aygıt bulunamadı</translation>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>İşlenemedi</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Klasör Aç</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522509 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation>Dosya Aç</translation>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
510 <source>Open folder</source>
511 <translation>Klasörü aç</translation>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Dosya aç</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Tüm görüntüler (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Sessiz</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Ses: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Alt yazı %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>gecikme</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>gelişmiş</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Hız: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Alt yazı (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Alt yazı (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Görünüm</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Sinema Ekran Görüntüsü</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Şuraya kaydedildi</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Ekran görüntüsü kaydedildi</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
600593 <translation>Ekran görüntüsü kaydedilemedi</translation>
601594 </message>
602595 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Dosya geçersiz: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643 <translation>[iç]</translation>
659 <translation>[dahili]</translation>
644660 </message>
645661 </context>
646662 <context>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>مۇندەرىجە ئىچىش</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation type="unfinished"/>
155155 </message>
156156 <message>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
261255 <source>Settings</source>
262256 <translation type="unfinished"/>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>تولۇق ئېكران</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation type="unfinished"/>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>مۇندەرىجە ئىچىش</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>ساقلاش</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation type="unfinished"/>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation type="unfinished"/>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>مۇندەرىجە ئىچىش</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>Відкрити теку</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>Зменшити гучність</translation>
153 <source>Volume down</source>
154 <translation>Тихіше</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>Відкрити файл</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Налаштування</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>Світла тема</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>На весь екран</translation>
282271 <translation>Інформація про фільм</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Відкрити файл</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>Відкрити теку</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>Світла тема</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>тривалість: %1</translation>
465 <source>Duration: %1</source>
466 <translation>Тривалість: %1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
471 <translation>роздільна здатність: %1</translation>
470 <source>Resolution: %1</source>
471 <translation>Роздільна здатність: %1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>розмір: %1</translation>
475 <source>Size: %1</source>
476 <translation>Розмір: %1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation>зберегти</translation>
480 <source>Save</source>
481 <translation>Зберегти</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Відео Deepin</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>Успішно завантажено</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>Не вдалося завантажити.</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>Не знайдено жодного пристрою</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>Не вдалося проаналізувати</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>Відкрити теку</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>Відкрити файл</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>Усі відео (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>Приглушено</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>Гучність: %1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>Субтитри %1: %2s</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>затримка</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>додатково</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>Швидкість: %1x</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>Субтитри (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>Субтитри (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>Переглянути</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>Скріншот фільму</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>Зберегти до</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>Знімок вікна збережено</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>Не вдалося зберегти знімок вікна</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>Не вдалося зберегти знімок екрана</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>Неприпустимий файл: %1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[внутрішній]</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
22 <translation>Mở Thư mục</translation>
21 <source>Open folder</source>
22 <translation type="unfinished"/>
2323 </message>
2424 <message>
2525 <location filename="../common/mainwindow.cpp" line="121"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>Giảm âm thanh</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>Cài đặt</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>Đầy màn hình</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>Mở tệp tin</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
288 <translation>Mở Thư mục</translation>
282 <source>Open folder</source>
283 <translation type="unfinished"/>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>Lưu</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Trình xem phim Deepin</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
489 <source>Load successfully</source>
490 <translation type="unfinished"/>
491 </message>
492 <message>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
495 <source>Load failed</source>
496 <translation type="unfinished"/>
497 </message>
498 <message>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
500 <source>No device found</source>
501 <translation type="unfinished"/>
502 </message>
503 <message>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
505 <source>Parse Failed</source>
506 <translation type="unfinished"/>
507 </message>
508 <message>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
511 <translation type="unfinished"/>
512 </message>
513 <message>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>Mở tệp tin</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
523 <source>All videos (%1)</source>
524 <translation type="unfinished"/>
525 </message>
526 <message>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
528 <source>Muted</source>
529 <translation type="unfinished"/>
530 </message>
531 <message>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
536 <source>Volume: %1%</source>
537 <translation type="unfinished"/>
538 </message>
539 <message>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
495541 <location filename="../common/mainwindow.cpp" line="1789"/>
496 <source>Load successfully</source>
497 <translation type="unfinished"/>
498 </message>
499 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
502 <source>Load failed</source>
503 <translation type="unfinished"/>
504 </message>
505 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
507 <source>No device found</source>
508 <translation type="unfinished"/>
509 </message>
510 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
512 <source>Parse Failed</source>
513 <translation type="unfinished"/>
514 </message>
515 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
518 <translation>Mở Thư mục</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
530 <source>All videos (%1)</source>
531 <translation type="unfinished"/>
532 </message>
533 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
535 <source>Muted</source>
536 <translation type="unfinished"/>
537 </message>
538 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
543 <source>Volume: %1%</source>
544 <translation type="unfinished"/>
545 </message>
546 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation type="unfinished"/>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation type="unfinished"/>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>打开文件夹</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
153 <source>Volume down</source>
154154 <translation>减小音量</translation>
155155 </message>
156156 <message>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>打开文件</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>设置</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>浅色主题</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>全屏</translation>
282271 <translation>电影信息</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>打开文件</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>打开文件夹</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>浅色主题</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation>时长:%1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation>分辨率:%1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation>影片大小:%1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation>保存</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>深度影院</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>载入字幕成功</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>载入字幕失败</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>没有发现可播放设备</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>解析失败</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>打开文件夹</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>打开文件</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>所有视频(%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>静音</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>音量:%1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>字幕%1:%2秒</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>延迟</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>提前</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>播放速度:%1倍</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>字幕文件 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>字幕文件 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>查看</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>视频截图</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>保存到</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>截图已保存</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
600593 <translation>截图保存失败</translation>
601594 </message>
602595 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>无效文件:%1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>【内部】</translation>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>開啟資料夾</translation>
2323 </message>
2424 <message>
5454 <message>
5555 <location filename="../common/settings_translation.cpp" line="10"/>
5656 <source>Remember playback position</source>
57 <translation type="unfinished"/>
57 <translation>記錄播放時間</translation>
5858 </message>
5959 <message>
6060 <location filename="../common/settings_translation.cpp" line="11"/>
6464 <message>
6565 <location filename="../common/settings_translation.cpp" line="12"/>
6666 <source>Basic</source>
67 <translation type="unfinished"/>
67 <translation>基本</translation>
6868 </message>
6969 <message>
7070 <location filename="../common/settings_translation.cpp" line="13"/>
8080 <message>
8181 <location filename="../common/settings_translation.cpp" line="15"/>
8282 <source>Shortcuts</source>
83 <translation type="unfinished"/>
83 <translation>捷徑</translation>
8484 </message>
8585 <message>
8686 <location filename="../common/settings_translation.cpp" line="16"/>
111111 <message>
112112 <location filename="../common/settings_translation.cpp" line="23"/>
113113 <source>Restore Defaults</source>
114 <translation type="unfinished"/>
114 <translation>恢復預設值</translation>
115115 </message>
116116 <message>
117117 <location filename="../common/settings_translation.cpp" line="24"/>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation type="unfinished"/>
153 <source>Volume down</source>
154 <translation>調低音量</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation type="unfinished"/>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>設置</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation type="unfinished"/>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>全螢幕</translation>
282271 <translation type="unfinished"/>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>開啟檔案</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>開啟資料夾</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation type="unfinished"/>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
305305 <message>
306306 <location filename="../common/actions.cpp" line="115"/>
307307 <source>Play Mode</source>
308 <translation type="unfinished"/>
308 <translation>播放模式</translation>
309309 </message>
310310 <message>
311311 <location filename="../common/actions.cpp" line="118"/>
455455 <message>
456456 <location filename="../common/actions.cpp" line="283"/>
457457 <source>Display in file manager</source>
458 <translation type="unfinished"/>
458 <translation>於檔案管理員顯示</translation>
459459 </message>
460460 </context>
461461 <context>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
465 <source>Duration: %1</source>
466466 <translation type="unfinished"/>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation type="unfinished"/>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
475 <source>Size: %1</source>
476476 <translation type="unfinished"/>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
481 <translation type="unfinished"/>
480 <source>Save</source>
481 <translation>儲存</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Depein 電影</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation type="unfinished"/>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation type="unfinished"/>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation type="unfinished"/>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation type="unfinished"/>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>開啟資料夾</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
525 <translation type="unfinished"/>
526 </message>
527 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
518 <translation>開啟檔案</translation>
519 </message>
520 <message>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation type="unfinished"/>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>已靜音</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation type="unfinished"/>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation type="unfinished"/>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation type="unfinished"/>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation type="unfinished"/>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation type="unfinished"/>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation type="unfinished"/>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation type="unfinished"/>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>檢視</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>電影截圖</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation type="unfinished"/>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation type="unfinished"/>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation type="unfinished"/>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation type="unfinished"/>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
599 <translation type="unfinished"/>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation type="unfinished"/>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation type="unfinished"/>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation type="unfinished"/>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
606622 <translation type="unfinished"/>
607623 </message>
608624 </context>
626642 <message>
627643 <location filename="../widgets/movieinfo_dialog.cpp" line="121"/>
628644 <source>Duration:</source>
629 <translation type="unfinished"/>
645 <translation>長度:</translation>
630646 </message>
631647 <message>
632648 <location filename="../widgets/movieinfo_dialog.cpp" line="126"/>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation type="unfinished"/>
644660 </message>
1818 </message>
1919 <message>
2020 <location filename="../common/mainwindow.cpp" line="130"/>
21 <source>Open Folder</source>
21 <source>Open folder</source>
2222 <translation>開啟資料夾</translation>
2323 </message>
2424 <message>
150150 </message>
151151 <message>
152152 <location filename="../common/settings_translation.cpp" line="31"/>
153 <source>volume down</source>
154 <translation>音量減</translation>
153 <source>Volume down</source>
154 <translation>減小音量</translation>
155155 </message>
156156 <message>
157157 <location filename="../common/settings_translation.cpp" line="32"/>
249249 </context>
250250 <context>
251251 <name>dmr::ActionFactory</name>
252 <message>
253 <location filename="../common/actions.cpp" line="82"/>
254 <location filename="../common/actions.cpp" line="102"/>
255 <source>Open File</source>
256 <translation>開啟檔案</translation>
257 </message>
258252 <message>
259253 <location filename="../common/actions.cpp" line="84"/>
260254 <location filename="../common/actions.cpp" line="269"/>
262256 <translation>設定</translation>
263257 </message>
264258 <message>
265 <location filename="../common/actions.cpp" line="85"/>
266 <source>Light Theme</source>
267 <translation>淺色模式</translation>
268 </message>
269 <message>
270259 <location filename="../common/actions.cpp" line="108"/>
271260 <source>Fullscreen</source>
272261 <translation>全螢幕</translation>
282271 <translation>影片資訊</translation>
283272 </message>
284273 <message>
274 <location filename="../common/actions.cpp" line="82"/>
275 <location filename="../common/actions.cpp" line="102"/>
276 <source>Open file</source>
277 <translation>開啟檔案</translation>
278 </message>
279 <message>
285280 <location filename="../common/actions.cpp" line="83"/>
286281 <location filename="../common/actions.cpp" line="103"/>
287 <source>Open Folder</source>
282 <source>Open folder</source>
288283 <translation>開啟資料夾</translation>
284 </message>
285 <message>
286 <location filename="../common/actions.cpp" line="85"/>
287 <source>Light theme</source>
288 <translation>亮色主題</translation>
289289 </message>
290290 <message>
291291 <location filename="../common/actions.cpp" line="104"/>
462462 <name>dmr::BurstScreenshotsDialog</name>
463463 <message>
464464 <location filename="../widgets/burst_screenshots_dialog.cpp" line="88"/>
465 <source>duration: %1</source>
466 <translation>影片長度:%1</translation>
465 <source>Duration: %1</source>
466 <translation>長度:%1</translation>
467467 </message>
468468 <message>
469469 <location filename="../widgets/burst_screenshots_dialog.cpp" line="94"/>
470 <source>resolution: %1</source>
470 <source>Resolution: %1</source>
471471 <translation>解析度:%1</translation>
472472 </message>
473473 <message>
474474 <location filename="../widgets/burst_screenshots_dialog.cpp" line="100"/>
475 <source>size: %1</source>
476 <translation>檔案大小:%1</translation>
475 <source>Size: %1</source>
476 <translation>大小:%1</translation>
477477 </message>
478478 <message>
479479 <location filename="../widgets/burst_screenshots_dialog.cpp" line="123"/>
480 <source>save</source>
480 <source>Save</source>
481481 <translation>儲存</translation>
482482 </message>
483483 </context>
484484 <context>
485485 <name>dmr::MainWindow</name>
486486 <message>
487 <location filename="../common/mainwindow.cpp" line="785"/>
488 <location filename="../common/mainwindow.cpp" line="2284"/>
489 <location filename="../common/mainwindow.cpp" line="2381"/>
490 <source>Deepin Movie</source>
491 <translation>Deepin 電影</translation>
492 </message>
493 <message>
494 <location filename="../common/mainwindow.cpp" line="698"/>
495 <location filename="../common/mainwindow.cpp" line="1789"/>
487 <location filename="../common/mainwindow.cpp" line="720"/>
488 <location filename="../common/mainwindow.cpp" line="1821"/>
496489 <source>Load successfully</source>
497490 <translation>載入成功</translation>
498491 </message>
499492 <message>
500 <location filename="../common/mainwindow.cpp" line="698"/>
501 <location filename="../common/mainwindow.cpp" line="1789"/>
493 <location filename="../common/mainwindow.cpp" line="720"/>
494 <location filename="../common/mainwindow.cpp" line="1821"/>
502495 <source>Load failed</source>
503496 <translation>載入失敗</translation>
504497 </message>
505498 <message>
506 <location filename="../common/mainwindow.cpp" line="1392"/>
499 <location filename="../common/mainwindow.cpp" line="1424"/>
507500 <source>No device found</source>
508501 <translation>找不到裝置</translation>
509502 </message>
510503 <message>
511 <location filename="../common/mainwindow.cpp" line="1410"/>
504 <location filename="../common/mainwindow.cpp" line="1442"/>
512505 <source>Parse Failed</source>
513506 <translation>解析失敗</translation>
514507 </message>
515508 <message>
516 <location filename="../common/mainwindow.cpp" line="1417"/>
517 <source>Open Folder</source>
509 <location filename="../common/mainwindow.cpp" line="1449"/>
510 <source>Open folder</source>
518511 <translation>開啟資料夾</translation>
519512 </message>
520513 <message>
521 <location filename="../common/mainwindow.cpp" line="1432"/>
522 <location filename="../common/mainwindow.cpp" line="1449"/>
523 <location filename="../common/mainwindow.cpp" line="1784"/>
524 <source>Open File</source>
514 <location filename="../common/mainwindow.cpp" line="1464"/>
515 <location filename="../common/mainwindow.cpp" line="1481"/>
516 <location filename="../common/mainwindow.cpp" line="1816"/>
517 <source>Open file</source>
525518 <translation>開啟檔案</translation>
526519 </message>
527520 <message>
528 <location filename="../common/mainwindow.cpp" line="1434"/>
529 <location filename="../common/mainwindow.cpp" line="1451"/>
521 <location filename="../common/mainwindow.cpp" line="1466"/>
522 <location filename="../common/mainwindow.cpp" line="1483"/>
530523 <source>All videos (%1)</source>
531524 <translation>所有影片 (%1)</translation>
532525 </message>
533526 <message>
534 <location filename="../common/mainwindow.cpp" line="1652"/>
527 <location filename="../common/mainwindow.cpp" line="1684"/>
535528 <source>Muted</source>
536529 <translation>靜音</translation>
537530 </message>
538531 <message>
539 <location filename="../common/mainwindow.cpp" line="1655"/>
540 <location filename="../common/mainwindow.cpp" line="1667"/>
541 <location filename="../common/mainwindow.cpp" line="1677"/>
542 <location filename="../common/mainwindow.cpp" line="1684"/>
532 <location filename="../common/mainwindow.cpp" line="1687"/>
533 <location filename="../common/mainwindow.cpp" line="1699"/>
534 <location filename="../common/mainwindow.cpp" line="1709"/>
535 <location filename="../common/mainwindow.cpp" line="1716"/>
543536 <source>Volume: %1%</source>
544537 <translation>音量:%1%</translation>
545538 </message>
546539 <message>
547 <location filename="../common/mainwindow.cpp" line="1749"/>
548 <location filename="../common/mainwindow.cpp" line="1757"/>
540 <location filename="../common/mainwindow.cpp" line="1781"/>
541 <location filename="../common/mainwindow.cpp" line="1789"/>
549542 <source>Subtitle %1: %2s</source>
550543 <translation>字幕 %1:%2 秒</translation>
551544 </message>
552545 <message>
553 <location filename="../common/mainwindow.cpp" line="1750"/>
554 <location filename="../common/mainwindow.cpp" line="1758"/>
546 <location filename="../common/mainwindow.cpp" line="1782"/>
547 <location filename="../common/mainwindow.cpp" line="1790"/>
555548 <source>delayed</source>
556549 <translation>後退</translation>
557550 </message>
558551 <message>
559 <location filename="../common/mainwindow.cpp" line="1750"/>
560 <location filename="../common/mainwindow.cpp" line="1758"/>
552 <location filename="../common/mainwindow.cpp" line="1782"/>
553 <location filename="../common/mainwindow.cpp" line="1790"/>
561554 <source>advanced</source>
562555 <translation>前進</translation>
563556 </message>
564557 <message>
565 <location filename="../common/mainwindow.cpp" line="1765"/>
566 <location filename="../common/mainwindow.cpp" line="1772"/>
567 <location filename="../common/mainwindow.cpp" line="1779"/>
558 <location filename="../common/mainwindow.cpp" line="1797"/>
559 <location filename="../common/mainwindow.cpp" line="1804"/>
560 <location filename="../common/mainwindow.cpp" line="1811"/>
568561 <source>Speed: %1x</source>
569562 <translation>速度:%1 倍</translation>
570563 </message>
571564 <message>
572 <location filename="../common/mainwindow.cpp" line="1786"/>
573 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</source>
574 <translation>字幕檔案 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.usf *.idx)</translation>
575 </message>
576 <message>
577 <location filename="../common/mainwindow.cpp" line="1848"/>
565 <location filename="../common/mainwindow.cpp" line="1818"/>
566 <source>Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</source>
567 <translation>字幕 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx)</translation>
568 </message>
569 <message>
570 <location filename="../common/mainwindow.cpp" line="1880"/>
578571 <source>View</source>
579572 <translation>瀏覽</translation>
580573 </message>
581574 <message>
582 <location filename="../common/mainwindow.cpp" line="1859"/>
575 <location filename="../common/mainwindow.cpp" line="1891"/>
583576 <source>Movie Screenshot</source>
584577 <translation>影片截圖</translation>
585578 </message>
586579 <message>
587 <location filename="../common/mainwindow.cpp" line="1860"/>
580 <location filename="../common/mainwindow.cpp" line="1892"/>
588581 <source>Saved to</source>
589582 <translation>儲存到</translation>
590583 </message>
591584 <message>
592 <location filename="../common/mainwindow.cpp" line="1874"/>
593 <location filename="../common/mainwindow.cpp" line="1957"/>
585 <location filename="../common/mainwindow.cpp" line="1906"/>
586 <location filename="../common/mainwindow.cpp" line="1989"/>
594587 <source>The screenshot is saved</source>
595588 <translation>截圖已儲存</translation>
596589 </message>
597590 <message>
598 <location filename="../common/mainwindow.cpp" line="1874"/>
599 <source>The screenshot is failed to save</source>
600 <translation>截圖儲存失敗</translation>
601 </message>
602 <message>
603 <location filename="../common/mainwindow.cpp" line="2044"/>
604 <location filename="../common/mainwindow.cpp" line="2741"/>
591 <location filename="../common/mainwindow.cpp" line="1906"/>
592 <source>Failed to save the screenshot</source>
593 <translation>無法儲存螢幕截圖</translation>
594 </message>
595 <message>
596 <location filename="../common/mainwindow.cpp" line="2076"/>
597 <location filename="../common/mainwindow.cpp" line="2782"/>
605598 <source>Invalid file: %1</source>
606599 <translation>檔案無效:%1</translation>
600 </message>
601 </context>
602 <context>
603 <name>dmr::MovieInfo</name>
604 <message>
605 <location filename="../libdmr/playlist_model.h" line="67"/>
606 <source>%1G</source>
607 <translation>%1 G</translation>
608 </message>
609 <message>
610 <location filename="../libdmr/playlist_model.h" line="69"/>
611 <source>%1M</source>
612 <translation>%1 M</translation>
613 </message>
614 <message>
615 <location filename="../libdmr/playlist_model.h" line="71"/>
616 <source>%1K</source>
617 <translation>%1 K</translation>
618 </message>
619 <message>
620 <location filename="../libdmr/playlist_model.h" line="73"/>
621 <source>%1</source>
622 <translation>%1</translation>
607623 </message>
608624 </context>
609625 <context>
637653 <context>
638654 <name>dmr::MpvProxy</name>
639655 <message>
640 <location filename="../backends/mpv/mpv_proxy.cpp" line="1029"/>
641 <location filename="../backends/mpv/mpv_proxy.cpp" line="1047"/>
656 <location filename="../backends/mpv/mpv_proxy.cpp" line="1034"/>
657 <location filename="../backends/mpv/mpv_proxy.cpp" line="1052"/>
642658 <source>[internal]</source>
643659 <translation>[內嵌]</translation>
644660 </message>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="ar" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>أفلام دييبن</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>شغل مجموعة الفيديو الخاصة بك</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="ar" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>أفلام دييبن</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>الأفلام</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>شغل مجموعة الفيديو الخاصة بك</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Player;Movie;Theater;Theatre;Video;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="bn" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>ডিপিন মুভি</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>আপনার ভিডিও কালেকশন চালু করুন</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="bn" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>ডিপিন মুভি</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>মুভি</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>আপনার ভিডিও কালেকশন চালু করুন</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>প্লেয়ার;মুভি;থিয়েটার;থিয়েটার;ভিডিও;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="cs" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Filmy</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Přehrávejte svoji sbírku obrazových záznamů</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="cs" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Filmy</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Film</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Přehrávejte svoji sbírku obrazových záznamů</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Přehrávač;Film;Divadlo;Video;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="de" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Film</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Der elegante Video-Player!</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="de" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Film</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Film</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Der elegante Video-Player!</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Player;Filme; Theater;Theatre;Movie;Video;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="es_419" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Películas Deepin</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Reproduce tu colección de videos</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="es_419" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Películas Deepin</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Películas</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Reproduce tu colección de videos</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Reproductor; Películas; Teatro;Videos;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="fa" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Movie (نرم افزار تماشای فیلم دیپین)</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="fa" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Movie (نرم افزار تماشای فیلم دیپین)</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>فیلم</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>مجموعه ویدیویی خود را اجرا کنید</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>پخش کننده؛ فیلم؛ تئاتر؛ تئاتر؛ ویدئو؛</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="fi" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Elokuva</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Toista videokokoelma</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="fi" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Elokuvat</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Elokuvat</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Toistaa videokokoelmasi</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Soitin;Elokuva;Teatteri;Video;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="fr" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Film</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Vidéo</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Lisez votre collection de videos</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Lecteur;Film;Theatre;Video;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="fr" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Movie</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Vidéo</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Lire votre collection de vidéos</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Lecteur;Film;Theatre;Video;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="hu" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Film</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Videógyűjtemény lejátszása</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="hu" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Film</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Film</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Videógyűjtemény lejátszása</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Lejátszó;Film;Mozi;Mozi;Videó</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="ko" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Movie </translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>동영상 컬렉션을 재생하세요</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="ko" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin 동영상 </translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>동영상</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>동영상 컬렉션 재생</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Player;Movie;Theater;Theatre;Video;플레이어;동영상;영화;극장;영화관;비디오;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="mn" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Дээпин Кино</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="pt" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Movie</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Filme</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Reproduzir a sua coleção de videos</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Player;Movie;Theater;Theatre;Video;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="pt" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Movie</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Filme</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Reproduzir a sua coleção de vídeos</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Reprodutor;Filme;Teatro;Anfiteatro;Vídeo;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="sk" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Filmy</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Prehrávajte svoju zbierku video záznamov</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="sk" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Filmy</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Film</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Prehrávajte svoju zbierku video záznamov</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Player;Movie;Theater;Theatre;Video;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="tr" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Sinema</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Sinema</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Görüntü koleksiyonunuzu seyredin</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Player;Movie;Theater;Theatre;Video;Sinema;Görüntü;Tiyatro;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="tr" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Deepin Sinema</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Sinema</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Video koleksiyonunuzu oynatın</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Player;Movie;Theater;Theatre;Video;Sinema;Görüntü;Tiyatro;</translation></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="uk" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Відео Deepin</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation type="unfinished"/></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Відтворити колекцію відео</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation type="unfinished"/></message></context></TS>
0 <?xml version="1.0" ?><!DOCTYPE TS><TS language="uk" version="2.1"><context><name>desktop</name><message><location filename="Desktop Entry]Name" line="0"/><source>Deepin Movie</source><translation>Відео Deepin</translation></message><message><location filename="Desktop Entry]GenericName" line="0"/><source>Movie</source><translation>Відео</translation></message><message><location filename="Desktop Entry]Comment" line="0"/><source>Play your video collection</source><translation>Відтворити колекцію відео</translation></message><message><location filename="Desktop Entry]Keywords" line="0"/><source>Player;Movie;Theater;Theatre;Video;</source><translation>Player;Movie;Theater;Theatre;Video;програвач;відео;фільм;кінотеатр;кіно;</translation></message></context></TS>
8484 trb->setContentsMargins(0, 0, 0, 0);
8585 trb->setSpacing(0);
8686 {
87 auto lb = new QLabel(tr("duration: %1").arg(mi.durationStr()), this);
87 auto lb = new QLabel(tr("Duration: %1").arg(mi.durationStr()), this);
8888 lb->setStyleSheet("color: rgba(48, 48, 48, 60%); font-size: 12px;");
8989 trb->addWidget(lb);
9090 trb->addSpacing(36);
9191 }
9292 {
93 auto lb = new QLabel(tr("resolution: %1").arg(mi.resolution), this);
93 auto lb = new QLabel(tr("Resolution: %1").arg(mi.resolution), this);
9494 lb->setStyleSheet("color: rgba(48, 48, 48, 60%); font-size: 12px;");
9595 trb->addWidget(lb);
9696 trb->addSpacing(36);
9797 }
9898 {
99 auto lb = new QLabel(tr("size: %1").arg(mi.sizeStr()), this);
99 auto lb = new QLabel(tr("Size: %1").arg(mi.sizeStr()), this);
100100 lb->setStyleSheet("color: rgba(48, 48, 48, 60%); font-size: 12px;");
101101 trb->addWidget(lb);
102102 trb->addSpacing(36);
119119 bl->setContentsMargins(0, 13, 0, 0);
120120 bl->addStretch(1);
121121
122 _saveBtn = new QPushButton(tr("save"));
122 _saveBtn = new QPushButton(tr("Save"));
123123 _saveBtn->setObjectName("SaveBtn");
124124 connect(_saveBtn, &QPushButton::clicked, this, &BurstScreenshotsDialog::savePoster);
125125 _saveBtn->setFixedSize(61, 24);
798798 PLAYLIST_FIXED_WIDTH,
799799 _mw->toolbox()->geometry().top() + TOOLBOX_TOP_EXTENT - off);
800800 fixed.moveRight(view_rect.right());
801 QRect shrinked = fixed;
802 shrinked.setWidth(0);
803 shrinked.moveRight(fixed.right());
801 QRect shrunk = fixed;
802 shrunk.setWidth(0);
803 shrunk.moveRight(fixed.right());
804804
805805 if (_toggling) return;
806806
812812 pa->setEasingCurve(QEasingCurve::InOutCubic);
813813 pa->setDuration(POPUP_DURATION);
814814 pa->setStartValue(fixed);
815 pa->setEndValue(shrinked);;
815 pa->setEndValue(shrunk);;
816816
817817 pa->start();
818818 connect(pa, &QPropertyAnimation::finished, [=]() {
827827 QPropertyAnimation *pa = new QPropertyAnimation(this, "geometry");
828828 pa->setEasingCurve(QEasingCurve::InOutCubic);
829829 pa->setDuration(POPUP_DURATION);
830 pa->setStartValue(shrinked);
830 pa->setStartValue(shrunk);
831831 pa->setEndValue(fixed);
832832
833833 pa->start();
316316 public:
317317 ThumbnailPreview(): DArrowRectangle(DArrowRectangle::ArrowBottom) {
318318 setAttribute(Qt::WA_DeleteOnClose);
319 setWindowFlags(Qt::ToolTip);
319 // FIXME(hualet): Qt::Tooltip will cause Dock to show up even
320 // the player is in fullscreen mode.
321 setWindowFlags(Qt::Tool);
320322
321323 setObjectName("ThumbnailPreview");
322324
417419 VolumeSlider(PlayerEngine* eng, MainWindow* mw)
418420 :DArrowRectangle(DArrowRectangle::ArrowBottom), _engine(eng), _mw(mw) {
419421 setFixedSize(QSize(24, 105));
420 setWindowFlags(Qt::ToolTip);
422 setWindowFlags(Qt::Tool);
421423
422424 setShadowBlurRadius(4);
423425 setRadius(4);