diff --git a/assets/resources/data/lowEffectSettings.json b/assets/resources/data/lowEffectSettings.json index 1a8eb1440..cff3a2555 100644 --- a/assets/resources/data/lowEffectSettings.json +++ b/assets/resources/data/lowEffectSettings.json @@ -12,9 +12,9 @@ "options": [ { "key": "crash", - "type": "combobox", + "type": "checkbox", "hide": true, - "default": 0 + "default": false } ] } @@ -149,35 +149,9 @@ "items": [ "Auto select (Recommended)", "Hardware decoding", - "Software decoding", - "Customize" + "Software decoding" ], "default": 0 - }, - { - "key": "Effect", - "name": "Rendering engine", - "type": "effectCombobox", - "items": [ - "", - "OpenGL", - "MPV" - ], - "default": 0 - }, - { - "key": "Videoout", - "name": "Video out", - "hide": false, - "type": "videoOutCombobox", - "default": 0 - }, - { - "key": "Decodemode", - "name": "Decode mode", - "hide": false, - "type": "decoderCombobox", - "default": 0 } ] }, diff --git a/assets/resources/data/settings.json b/assets/resources/data/settings.json index 9acf07ed3..a5352d394 100644 --- a/assets/resources/data/settings.json +++ b/assets/resources/data/settings.json @@ -12,9 +12,9 @@ "options": [ { "key": "crash", - "type": "combobox", + "type": "checkbox", "hide": true, - "default": 0 + "default": false } ] } @@ -156,35 +156,9 @@ "items": [ "Auto select (Recommended)", "Hardware decoding", - "Software decoding", - "Customize" + "Software decoding" ], "default": 0 - }, - { - "key": "Effect", - "name": "Rendering engine", - "type": "effectCombobox", - "items": [ - " ", - "OpenGL", - "MPV" - ], - "default": 0 - }, - { - "key": "Videoout", - "name": "Video out", - "hide": false, - "type": "videoOutCombobox", - "default": 0 - }, - { - "key": "Decodemode", - "name": "Decode mode", - "hide": false, - "type": "decoderCombobox", - "default": 0 } ] }, diff --git a/debian/changelog b/debian/changelog index 8aaa1f2df..ab8cd1014 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,8 @@ deepin-movie-reborn (5.10.51) unstable; urgency=medium - * feat: Added new settings for movie + * merge release 1070. - -- xiepengfei Wed, 02 Jul 2024 15:48:47 +0800 + -- muyuanakai Thu, 22 Aug 2024 16:22:22 +0800 deepin-movie-reborn (5.10.50) unstable; urgency=medium diff --git a/debian/control b/debian/control index 31d3824de..66a9798af 100644 --- a/debian/control +++ b/debian/control @@ -19,14 +19,14 @@ Homepage: https://www.deepin.org/ Package: deepin-movie Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, va-driver-all, libavcodec58(>= 7:4.0) | libavcodec60(>= 7:6.0), libavformat58(>= 7:4.1) | libavformat60(>= 7:6.0), libavutil56(>= 7:4.0) | libavutil58(>= 7:6.0), libffmpegthumbnailer4v5, libmpv1(>= 0.29) | libmpv2(>= 0.36), libpulse0(>= 0.99.1), libqt5concurrent5, libmpris-qt5-1, libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.4.0) -Recommends: libgpuinfo, uos-reporter, deepin-event-log +Depends: ${shlibs:Depends}, ${misc:Depends}, libavcodec58(>= 7:4.0), libavformat58(>= 7:4.1), libavutil56(>= 7:4.0), libffmpegthumbnailer4v5, libmpv1(>= 0.29), libpulse0(>= 0.99.1), libqt5concurrent5, libmpris-qt5-1, libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.4.0) +Recommends: libgpuinfo, uos-reporter, deepin-event-log, va-driver-all Description: movie player Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Package: libdmr Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, libavcodec58(>= 7:4.0) | libavcodec60(>= 7:6.0), libavformat58(>= 7:4.1) | libavformat60(>= 7:6.0), libavutil56(>= 7:4.0) | libavutil58(>= 7:6.0), libffmpegthumbnailer4v5, libmpv1(>= 0.29) | libmpv2(>= 0.36), libpulse0(>= 0.99.1), libqt5concurrent5, libmpris-qt5-1, libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.4.0) +Depends: ${shlibs:Depends}, ${misc:Depends}, libavcodec58(>= 7:4.0), libavformat58(>= 7:4.1), libavutil56(>= 7:4.0), libffmpegthumbnailer4v5, libmpv1(>= 0.29), libpulse0(>= 0.99.1), libqt5concurrent5, libmpris-qt5-1, libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.4.0) Multi-Arch: same Description: movie player widget library deepin movie player widget library diff --git a/src/backends/mpv/mpv_glwidget.cpp b/src/backends/mpv/mpv_glwidget.cpp index b12ad4ab2..dc17eb13d 100644 --- a/src/backends/mpv/mpv_glwidget.cpp +++ b/src/backends/mpv/mpv_glwidget.cpp @@ -34,11 +34,6 @@ DWIDGET_USE_NAMESPACE #endif static const char *vs_blend = R"( -#ifdef GL_ES -// Set default precision to medium -precision mediump int; -precision mediump float; -#endif attribute vec2 position; attribute vec2 vTexCoord; @@ -51,11 +46,6 @@ void main() { )"; static const char* fs_blend = R"( -#ifdef GL_ES -// Set default precision to medium -precision mediump int; -precision mediump float; -#endif varying vec2 texCoord; uniform sampler2D movie; @@ -67,8 +57,6 @@ void main() { static const char* fs_blend_wayland = R"( #ifdef GL_ES -// Set default precision to medium -precision mediump int; precision mediump float; #endif varying vec2 texCoord; @@ -81,11 +69,6 @@ void main() { )"; static const char* vs_blend_corner = R"( -#ifdef GL_ES -// Set default precision to medium -precision mediump int; -precision mediump float; -#endif attribute vec2 position; attribute vec2 maskTexCoord; attribute vec2 vTexCoord; @@ -101,11 +84,6 @@ void main() { )"; static const char* fs_blend_corner = R"( -#ifdef GL_ES -// Set default precision to medium -precision mediump int; -precision mediump float; -#endif varying vec2 maskCoord; varying vec2 texCoord; @@ -119,8 +97,6 @@ void main() { static const char* fs_blend_corner_wayland = R"( #ifdef GL_ES -// Set default precision to medium -precision mediump int; precision mediump float; #endif varying vec2 maskCoord; @@ -135,12 +111,6 @@ void main() { )"; static const char* vs_code = R"( -#ifdef GL_ES -// Set default precision to medium -precision mediump int; -precision mediump float; -#endif - attribute vec2 position; attribute vec2 vTexCoord; @@ -153,11 +123,6 @@ void main() { )"; static const char* fs_code = R"( -#ifdef GL_ES -// Set default precision to medium -precision mediump int; -precision mediump float; -#endif varying vec2 texCoord; uniform sampler2D sampler; @@ -171,8 +136,6 @@ void main() { static const char* fs_code_wayland = R"( #ifdef GL_ES -// Set default precision to medium -precision mediump int; precision mediump float; #endif varying vec2 texCoord; @@ -187,11 +150,6 @@ void main() { )"; static const char* fs_corner_code = R"( -#ifdef GL_ES -// Set default precision to medium -precision mediump int; -precision mediump float; -#endif varying vec2 texCoord; uniform sampler2D corner; @@ -205,8 +163,6 @@ void main() { static const char* fs_corner_code_wayland = R"( #ifdef GL_ES -// Set default precision to medium -precision mediump int; precision mediump float; #endif varying vec2 texCoord; @@ -1072,7 +1028,7 @@ namespace dmr { void MpvGLWidget::initMpvFuns() { qInfo() << "MpvGLWidget开始initMpvFuns"; - QLibrary mpvLibrary(libPath("libmpv.so")); + QLibrary mpvLibrary(libPath("libmpv.so.1")); m_callback = reinterpret_cast(mpvLibrary.resolve("mpv_render_context_set_update_callback")); m_context_report = reinterpret_cast(mpvLibrary.resolve("mpv_render_context_report_swap")); m_renderContex = reinterpret_cast(mpvLibrary.resolve("mpv_render_context_free")); diff --git a/src/backends/mpv/mpv_proxy.cpp b/src/backends/mpv/mpv_proxy.cpp index 8c5d6ae50..546b3d6ed 100644 --- a/src/backends/mpv/mpv_proxy.cpp +++ b/src/backends/mpv/mpv_proxy.cpp @@ -139,7 +139,7 @@ void MpvProxy::setDecodeModel(const QVariant &value) void MpvProxy::initMpvFuns() { - QLibrary mpvLibrary(libPath("libmpv.so")); + QLibrary mpvLibrary(libPath("libmpv.so.1")); m_waitEvent = reinterpret_cast(mpvLibrary.resolve("mpv_wait_event")); m_setOptionString = reinterpret_cast(mpvLibrary.resolve("mpv_set_option_string")); @@ -422,11 +422,6 @@ mpv_handle *MpvProxy::mpv_init() my_set_property(pHandle, "vo", "gpu,xv,x11"); m_sInitVo = "gpu,xv,x11"; } - if (CompositingManager::get().isSpecialControls()) { - my_set_property(pHandle, "hwdec", "vaapi"); - my_set_property(pHandle, "vo", "vaapi"); - m_sInitVo = "vaapi"; - } #else //去除9200显卡适配 QFileInfo sjmfi("/dev/jmgpu"); @@ -480,6 +475,12 @@ mpv_handle *MpvProxy::mpv_init() my_set_property(pHandle, "vo", "gpu,x11"); m_sInitVo = "gpu,x11"; } + + if (CompositingManager::get().isSpecialControls()) { + my_set_property(pHandle, "hwdec", "vaapi"); + my_set_property(pHandle, "vo", "vaapi"); + m_sInitVo = "vaapi"; + } } else { //3.设置硬解 QFileInfo fi("/dev/mwv206_0"); QFileInfo jmfi("/dev/jmgpu"); @@ -653,23 +654,6 @@ mpv_handle *MpvProxy::mpv_init() //设置hwdec和vo配置 CompositingManager::get().getMpvConfig(m_pConfig); -#ifndef _LIBDMR_ - if (Settings::get().settings()->getOption(QString("base.decode.select")).toInt() == 3) { - int decodeIndex = Settings::get().settings()->getOption(QString("base.decode.Decodemode")).toInt(); - auto decodeModeOpt = Settings::get().settings()->option("base.decode.Decodemode"); - QString decodeMode = decodeModeOpt.data()->data("items").toStringList()[decodeIndex]; - decodeMode = decodeMode.isEmpty() ? "auto" : decodeMode; - m_pConfig->insert("hwdec", decodeMode); - - if (!CompositingManager::get().composited()) { - int voIndex = Settings::get().settings()->getOption(QString("base.decode.Videoout")).toInt(); - auto voOpt = Settings::get().settings()->option("base.decode.Videoout"); - QString voMode = voOpt.data()->data("items").toStringList()[voIndex]; - voMode = voMode.isEmpty() ? "auto" : voMode; - m_pConfig->insert("vo", voMode); - } - } -#endif QMap::iterator iter = m_pConfig->begin(); qInfo() << __func__ << "First set mpv propertys!!"; while (iter != m_pConfig->end()) { @@ -1291,6 +1275,9 @@ void MpvProxy::refreshDecode() if(!isSoftCodec && !CompositingManager::get().isZXIntgraphics() && !jmflag && !x100flag) { isSoftCodec = !isSurportHardWareDecode(codec, currentInfo.mi.width, currentInfo.mi.height); } + if (CompositingManager::get().isZXIntgraphics() && !jmflag) { + isSoftCodec = codec.contains("vp8") && (currentInfo.mi.width > 1920 || currentInfo.mi.height > 1080); + } #endif if(utils::check_wayland_env()){ PlaylistModel *playMode = dynamic_cast(m_pParentWidget)->getplaylist(); @@ -1327,6 +1314,9 @@ void MpvProxy::refreshDecode() my_set_property(m_handle, "hwdec", "auto"); } } +#ifdef _LIBDMR_ + my_set_property(m_handle, "vo", "libmpv,opengl-cb"); +#endif } else if (X100GPU.exists() && X100VPU.exists()) { my_set_property(m_handle, "hwdec", "ftomx-copy"); my_set_property(m_handle, "vo", "gpu"); @@ -1395,6 +1385,9 @@ void MpvProxy::refreshDecode() }else { my_set_property(m_handle, "hwdec", "auto"); } +#ifdef _LIBDMR_ + my_set_property(m_handle, "vo", "libmpv,opengl-cb"); +#endif } else if (X100GPU.exists() && X100VPU.exists()) { my_set_property(m_handle, "hwdec", "ftomx-copy"); my_set_property(m_handle, "vo", "gpu"); @@ -1423,23 +1416,6 @@ void MpvProxy::refreshDecode() //play.conf CompositingManager::get().getMpvConfig(m_pConfig); -#ifndef _LIBDMR_ - if (Settings::get().settings()->getOption(QString("base.decode.select")).toInt() == 3) { - int decodeIndex = Settings::get().settings()->getOption(QString("base.decode.Decodemode")).toInt(); - auto decodeModeOpt = Settings::get().settings()->option("base.decode.Decodemode"); - QString decodeMode = decodeModeOpt.data()->data("items").toStringList()[decodeIndex]; - decodeMode = decodeMode.isEmpty() ? "auto" : decodeMode; - m_pConfig->insert("hwdec", decodeMode); - - if (!CompositingManager::get().composited()) { - int voIndex = Settings::get().settings()->getOption(QString("base.decode.Videoout")).toInt(); - auto voOpt = Settings::get().settings()->option("base.Customize.Videoout"); - QString voMode = voOpt.data()->data("items").toStringList()[voIndex]; - voMode = voMode.isEmpty() ? "auto" : voMode; - m_pConfig->insert("vo", voMode); - } - } -#endif QMap::iterator iter = m_pConfig->begin(); while (iter != m_pConfig->end()) { if (iter.key().contains(QString("hwdec"))) { @@ -1565,11 +1541,7 @@ void MpvProxy::play() } if (listOpts.size()) { - listArgs << "replace"; - if (MPV_CLIENT_API_VERSION >= MPV_MAKE_VERSION(2,3)) { - listArgs << "-1"; - } - listArgs << listOpts.join(','); + listArgs << "replace" << listOpts.join(','); } qInfo() << listArgs; diff --git a/src/backends/mpv/mpv_proxy.h b/src/backends/mpv/mpv_proxy.h index 36ee74ad6..00d935f51 100644 --- a/src/backends/mpv/mpv_proxy.h +++ b/src/backends/mpv/mpv_proxy.h @@ -61,7 +61,7 @@ class MpvHandle explicit container(mpv_handle *pHandle) : m_pHandle(pHandle) {} ~container() { - mpv_terminateDestroy func = (mpv_terminateDestroy)QLibrary::resolve(libPath("libmpv.so"), "mpv_terminate_destroy"); + mpv_terminateDestroy func = (mpv_terminateDestroy)QLibrary::resolve(libPath("libmpv.so.1"), "mpv_terminate_destroy"); func(m_pHandle); } mpv_handle *m_pHandle; diff --git a/src/common/dmr_settings.cpp b/src/common/dmr_settings.cpp index 850e817b6..8af526d27 100644 --- a/src/common/dmr_settings.cpp +++ b/src/common/dmr_settings.cpp @@ -55,53 +55,10 @@ Settings::Settings() else if (key.startsWith("base.decode.select")) { //设置解码模式 emit setDecodeModel(key, value); - if (value.toInt() == 3) { - auto list = m_pSettings->groups(); - auto hwdecFamily = m_pSettings->option("base.decode.Decodemode"); - } else { - //刷新解码模式 - emit refreshDecode(); - //崩溃检测 - crashCheck(); - } - } - else if (key.startsWith("base.decode.Effect")) { - auto effectFamily = m_pSettings->option("base.decode.Effect"); - int index = value.toInt(); - auto voFamily = m_pSettings->option("base.decode.Videoout"); - if (index == 1) { - if (voFamily) { - voFamily->setData("items", QStringList() << "OpenGL"); - } - } else if (index == 2) { - if (voFamily) - voFamily->setData("items", QStringList() << "" << "gpu" << "vaapi" << "vdpau" << "xv" << "x11"); - } - emit baseChanged(key, value); - } - else if (key.startsWith("base.decode.Videoout")) { - if (value.toInt() < 0) - return; - auto videoFamily = m_pSettings->option("base.decode.Videoout"); - QString vo = videoFamily.data()->data("items").toStringList().at(value.toInt()); - if (vo.contains("vaapi")) { - auto decodeFamily = m_pSettings->option("base.decode.Decodemode"); - if (decodeFamily) - decodeFamily->setData("items", QStringList() << "vaapi" << "vaapi-copy"); - } else if (vo.contains("vdpau")) { - auto decodeFamily = m_pSettings->option("base.decode.Decodemode"); - if (decodeFamily) - decodeFamily->setData("items", QStringList() << "vdpau" << "vdpau-copy"); - } else if (vo.contains("xv") || vo.contains("x11")) { - auto decodeFamily = m_pSettings->option("base.decode.Decodemode"); - if (decodeFamily) - decodeFamily->setData("items", QStringList() << "vdpau" << "vdpau-copy"); - } else { - auto decodeFamily = m_pSettings->option("base.decode.Decodemode"); - if (decodeFamily) - decodeFamily->setData("items", QStringList() << "vaapi" << "vaapi-copy" << "vdpau" << "vdpau-copy" << "nvdec" << "nvdec-copy" << "rkmpp"); - } - emit baseChanged(key, value); + //刷新解码模式 + emit refreshDecode(); + //崩溃检测 + crashCheck(); } else if (key.startsWith("base.play.hwaccel")) emit hwaccelModeChanged(key, value); @@ -144,54 +101,6 @@ Settings::Settings() if ((fi.exists() || jmfi.exists()) && utils::check_wayland_env()) { setInternalOption("mousepreview", false); } - - if (utils::check_wayland_env()) { - auto voFamily = m_pSettings->option("base.decode.Videoout"); - if (voFamily) - voFamily->setData("items", QStringList() << "OpenGL"); - auto decodeFamily = m_pSettings->option("base.decode.Decodemode"); - if (decodeFamily) - decodeFamily->setData("items", QStringList() << "vaapi" << "vaapi-copy" << "vdpau" << "vdpau-copy" << "nvdec" << "nvdec-copy" << "rkmpp"); - } else { - QStringList hwdecList, voList; - hwdecList << "vaapi" << "vaapi-copy" << "vdpau" << "vdpau-copy" << "nvdec" << "nvdec-copy" << "rkmpp"; - voList << "gpu" << "vaapi" << "vdpau" << "xv" << "x11"; - int effectIndex = m_pSettings->getOption("base.decode.Effect").toInt(); - auto hwdecFamily = m_pSettings->option("base.decode.Decodemode"); - if (effectIndex == 1) { - auto voFamily = m_pSettings->option("base.decode.Videoout"); - if (voFamily) - voFamily->setData("items", QStringList() << "OpenGL"); - if (hwdecFamily) - hwdecFamily->setData("items", hwdecList); - } else { - auto voFamily = m_pSettings->option("base.decode.Videoout"); - if (voFamily) - voFamily->setData("items", QStringList() << "" << "gpu" << "vaapi" << "vdpau" << "xv" << "x11"); - int voValue = m_pSettings->getOption("base.decode.Videoout").toInt(); - if (voValue != 0) { - auto videoFamily = m_pSettings->option("base.decode.Videoout"); - QString vo = videoFamily.data()->data("items").toStringList().at(voValue); - if (vo.contains("vaapi")) { - auto decodeFamily = m_pSettings->option("base.decode.Decodemode"); - if (decodeFamily) - decodeFamily->setData("items", QStringList() << "vaapi" << "vaapi-copy"); - } else if (vo.contains("vdpau")) { - auto decodeFamily = m_pSettings->option("base.decode.Decodemode"); - if (decodeFamily) - decodeFamily->setData("items", QStringList() << "vdpau" << "vdpau-copy"); - } else if (vo.contains("xv") || vo.contains("x11")) { - auto decodeFamily = m_pSettings->option("base.decode.Decodemode"); - if (decodeFamily) - decodeFamily->setData("items", QStringList() << "vdpau" << "vdpau-copy"); - } else { - auto decodeFamily = m_pSettings->option("base.decode.Decodemode"); - if (decodeFamily) - decodeFamily->setData("items", QStringList() << "vaapi" << "vaapi-copy" << "vdpau" << "vdpau-copy" << "nvdec" << "nvdec-copy" << "rkmpp"); - } - } - } - } } QString Settings::flag2key(Settings::Flag f) @@ -300,7 +209,7 @@ QString Settings::screenshotNameSeqTemplate() void Settings::onSetCrash() { - settings()->setOption(QString("set.start.crash"), 0); + settings()->setOption(QString("set.start.crash"),false); settings()->sync(); } @@ -313,8 +222,10 @@ void Settings::setGeneralOption(const QString &sOpt, const QVariant &var) void Settings::crashCheck() { //重置崩溃检测状态位 - settings()->setOption(QString("set.start.crash"), 1); + settings()->setOption(QString("set.start.crash"),true); settings()->sync(); + //崩溃检测 + QTimer::singleShot(1000, this, &Settings::onSetCrash); } QVariant Settings::generalOption(const QString &sOpt) diff --git a/src/common/mainwindow.cpp b/src/common/mainwindow.cpp index 8f5d4379b..c5b853250 100644 --- a/src/common/mainwindow.cpp +++ b/src/common/mainwindow.cpp @@ -154,129 +154,6 @@ static QString ElideText(const QString &sText, const QSize &size, return sElideText; } -static QWidget *createDecodeOptionHandle(QObject *pObj) -{ - DSettingsOption *pSettingOption = qobject_cast(pObj); - QWidget *mianWidget = new QWidget; - QComboBox *combobox = new QComboBox; - QHBoxLayout *pLayout = new QHBoxLayout; - - combobox->addItems(pSettingOption->data("items").toStringList()); - mianWidget->setLayout(pLayout); - pLayout->addStretch(); - pLayout->addWidget(combobox); - combobox->setFixedWidth(245); - combobox->setCurrentIndex(pSettingOption->value().toInt()); - - QWidget *pOptionWidget = new QWidget; - pOptionWidget->setObjectName("decodeOptionFrame"); - - QFormLayout *pOptionLayout = new QFormLayout(pOptionWidget); - pOptionLayout->setContentsMargins(0, 0, 0, 0); - pOptionLayout->setSpacing(0); - - mianWidget->setMinimumWidth(240); - pOptionLayout->addRow(new DLabel(QObject::tr(pSettingOption->name().toStdString().c_str())), mianWidget); - - pSettingOption->connect(pSettingOption, &DSettingsOption::dataChanged, [=](const QString &dataType, QVariant value){ - if (dataType == "items") { - combobox->clear(); - combobox->addItems(value.toStringList()); - } - }); - - pSettingOption->connect(combobox, &QComboBox::currentTextChanged, [=](const QString &){ - pSettingOption->setValue(combobox->currentIndex()); - }); - - - return pOptionWidget; -} - -static QWidget *createVoOptionHandle(QObject *pObj) -{ - DSettingsOption *pSettingOption = qobject_cast(pObj); - QWidget *mianWidget = new QWidget; - QComboBox *combobox = new QComboBox; - QHBoxLayout *pLayout = new QHBoxLayout; - - combobox->addItems(pSettingOption->data("items").toStringList()); - mianWidget->setLayout(pLayout); - pLayout->addStretch(); - pLayout->addWidget(combobox); - combobox->setFixedWidth(245); - combobox->setCurrentIndex(pSettingOption->value().toInt()); - - QWidget *pOptionWidget = new QWidget; - pOptionWidget->setObjectName("videoOutOptionFrame"); - - QFormLayout *pOptionLayout = new QFormLayout(pOptionWidget); - pOptionLayout->setContentsMargins(0, 0, 0, 0); - pOptionLayout->setSpacing(0); - - mianWidget->setMinimumWidth(240); - pOptionLayout->addRow(new DLabel(QObject::tr(pSettingOption->name().toStdString().c_str())), mianWidget); - - pSettingOption->connect(pSettingOption, &DSettingsOption::dataChanged, [=](const QString &dataType, QVariant value){ - if (dataType == "items") { - combobox->clear(); - combobox->addItems(value.toStringList()); - } - }); - - pSettingOption->connect(combobox, &QComboBox::currentTextChanged, [=](const QString &){ - pSettingOption->setValue(combobox->currentIndex()); - }); - - pSettingOption->connect(pSettingOption, &DSettingsOption::valueChanged, [=](QVariant value){ - combobox->setCurrentIndex(value.toInt()); - }); - - return pOptionWidget; -} - -static QWidget *createEffectOptionHandle(QObject *pObj) -{ - DSettingsOption *pSettingOption = qobject_cast(pObj); - QWidget *mianWidget = new QWidget; - QComboBox *combobox = new QComboBox; - QHBoxLayout *pLayout = new QHBoxLayout; - - combobox->addItems(pSettingOption->data("items").toStringList()); - mianWidget->setLayout(pLayout); - pLayout->addStretch(); - pLayout->addWidget(combobox); - combobox->setFixedWidth(245); - combobox->setCurrentIndex(pSettingOption->value().toInt()); - - QWidget *pOptionWidget = new QWidget; - pOptionWidget->setObjectName("effectOptionFrame"); - - QFormLayout *pOptionLayout = new QFormLayout(pOptionWidget); - pOptionLayout->setContentsMargins(0, 0, 0, 0); - pOptionLayout->setSpacing(0); - - mianWidget->setMinimumWidth(240); - pOptionLayout->addRow(new DLabel(QObject::tr(pSettingOption->name().toStdString().c_str())), mianWidget); - - pSettingOption->connect(pSettingOption, &DSettingsOption::dataChanged, [=](const QString &dataType, QVariant value){ - if (dataType == "items") { - combobox->clear(); - combobox->addItems(value.toStringList()); - } - }); - - pSettingOption->connect(combobox, &QComboBox::currentTextChanged, [=](const QString &){ - pSettingOption->setValue(combobox->currentIndex()); - }); - - pSettingOption->connect(pSettingOption, &DSettingsOption::valueChanged, [=](QVariant value){ - combobox->setCurrentIndex(value.toInt()); - }); - - return pOptionWidget; -} - static QWidget *createSelectableLineEditOptionHandle(QObject *pObj) { DSettingsOption *pSettingOption = qobject_cast(pObj); @@ -1111,8 +988,18 @@ MainWindow::MainWindow(QWidget *parent) SLOT(slotProperChanged(QString, QVariantMap, QStringList))); qInfo() << "session Path is :" << path; connect(dynamic_cast(m_pEngine->getMpvProxy()),&MpvProxy::crashCheck,&Settings::get(),&Settings::crashCheck); + if(utils::check_wayland_env()) { + connect(qApp, &QGuiApplication::screenRemoved, this, [=](){ + QRect geoRect = geometry(); + QRect deskRect = QApplication::desktop()->availableGeometry(geoRect.topLeft()); + + if(!deskRect.intersects(geoRect)) { + move(deskRect.x(), deskRect.y()); + } + }); + } //解码初始化 -// decodeInit(); + decodeInit(); } void MainWindow::setupTitlebar() @@ -1759,6 +1646,8 @@ void MainWindow::menuItemInvoked(QAction *pAction) bool MainWindow::isActionAllowed(ActionFactory::ActionKind actionKind, bool fromUI, bool isShortcut) { + Q_ASSERT(m_pEngine); + if (m_bInBurstShootMode) { return false; } @@ -1829,6 +1718,9 @@ void MainWindow::requestAction(ActionFactory::ActionKind actionKind, bool bFromU { qInfo() << "actionKind = " << actionKind << "fromUI " << bFromUI << (bIsShortcut ? "shortcut" : ""); + Q_ASSERT(m_pToolbox); + Q_ASSERT(m_pCommHintWid); + if (!m_pToolbox->getbAnimationFinash() || m_bStartAnimation) { return; } @@ -2828,220 +2720,44 @@ void MainWindow::startBurstShooting() void MainWindow::handleSettings(DSettingsDialog *dsd) { - int decodeType = Settings::get().settings()->getOption(QString("base.decode.select")).toInt(); - int decodeMode = Settings::get().settings()->getOption(QString("base.decode.Decodemode")).toInt(); - int voMode = Settings::get().settings()->getOption(QString("base.decode.Videoout")).toInt(); - int effectMode = Settings::get().settings()->getOption("base.decode.Effect").toInt(); - #ifndef USE_TEST dsd->exec(); + delete dsd; #else dsd->setObjectName("DSettingsDialog"); dsd ->show(); #endif - if (Settings::get().settings()->getOption("base.decode.select").toInt() != decodeType && - (Settings::get().settings()->getOption("base.decode.select").toInt() == 3 || decodeType == 3)) { - DDialog msgBox; - msgBox.setIcon(QIcon(":/resources/icons/warning.svg")); - msgBox.setMessage(QObject::tr("The custom decoding method needs to be restarted before it can take effect,\nand whether to restart it?")); - msgBox.addButton(tr("Cancel"), DDialog::ButtonType::ButtonNormal); - msgBox.addButton(tr("Restart"), true, DDialog::ButtonType::ButtonWarning); - msgBox.setOnButtonClickedClose(true); - if (msgBox.exec() == 1) { - Settings::get().settings()->setOption("set.start.crash", "2"); - qApp->exit(); - QProcess::startDetached(qApp->applicationFilePath(), QStringList() << "--restart"); - } else { - if (decodeType != 3) { - Settings::get().settings()->setOption("base.decode.select", decodeMode); - } - Settings::get().settings()->setOption("base.decode.Decodemode", decodeMode); - Settings::get().settings()->setOption("base.decode.Videoout", voMode); - } - } else { - if (decodeType == 3) { - int newDecodeMode = Settings::get().settings()->getOption(QString("base.decode.Decodemode")).toInt(); - int newVoMode = Settings::get().settings()->getOption(QString("base.decode.Videoout")).toInt(); - int newEffectMode = Settings::get().settings()->getOption("base.decode.Effect").toInt(); - if (newEffectMode != effectMode || newVoMode != voMode || newDecodeMode != decodeMode) { - Settings::get().crashCheck(); - DDialog msgBox; - msgBox.setIcon(QIcon(":/resources/icons/warning.svg")); - msgBox.setMessage(QObject::tr("The custom decoding method needs to be restarted before it can take effect,\nand whether to restart it?")); - msgBox.addButton(tr("Cancel"), DDialog::ButtonType::ButtonNormal); - msgBox.addButton(tr("Restart"), true, DDialog::ButtonType::ButtonWarning); - msgBox.setOnButtonClickedClose(true); - if (msgBox.exec() == 1) { - Settings::get().settings()->setOption("set.start.crash", "2"); - qApp->exit(); - QProcess::startDetached(qApp->applicationFilePath(), QStringList() << "--restart"); - } else { - if (decodeType != 3) { - Settings::get().settings()->setOption("base.decode.select", decodeType); - } - Settings::get().settings()->setOption("base.decode.Decodemode", decodeMode); - Settings::get().settings()->setOption("base.decode.Videoout", voMode); - } - } - } - } - Settings::get().settings()->sync(); } DSettingsDialog *MainWindow::initSettings() { - if (m_pDSettingDilog) - return m_pDSettingDilog; - m_pDSettingDilog = new DSettingsDialog(this); - m_pDSettingDilog->widgetFactory()->registerWidget("selectableEdit", createSelectableLineEditOptionHandle); - m_pDSettingDilog->widgetFactory()->registerWidget("effectCombobox", createEffectOptionHandle); - m_pDSettingDilog->widgetFactory()->registerWidget("videoOutCombobox", createVoOptionHandle); - m_pDSettingDilog->widgetFactory()->registerWidget("decoderCombobox", createDecodeOptionHandle); - - m_pDSettingDilog->setProperty("_d_QSSThemename", "dark"); - m_pDSettingDilog->setProperty("_d_QSSFilename", "DSettingsDialog"); - m_pDSettingDilog->updateSettings(Settings::get().settings()); + DSettingsDialog *pDSettingDilog = new DSettingsDialog(this); + pDSettingDilog->widgetFactory()->registerWidget("selectableEdit", createSelectableLineEditOptionHandle); + + pDSettingDilog->setProperty("_d_QSSThemename", "dark"); + pDSettingDilog->setProperty("_d_QSSFilename", "DSettingsDialog"); + pDSettingDilog->updateSettings(Settings::get().settings()); //hack: - QSpinBox *pSpinBox = m_pDSettingDilog->findChild("OptionDSpinBox"); + QSpinBox *pSpinBox = pDSettingDilog->findChild("OptionDSpinBox"); if (pSpinBox) { pSpinBox->setMinimum(8); } // hack: reset is set to default by QDialog, which makes lineedit's enter // press is responded by reset button - QPushButton *pPushButton = m_pDSettingDilog->findChild("SettingsContentReset"); + QPushButton *pPushButton = pDSettingDilog->findChild("SettingsContentReset"); pPushButton->setDefault(false); pPushButton->setAutoDefault(false); - - int decodeType = Settings::get().settings()->getOption(QString("base.decode.select")).toInt(); - if (decodeType != 3) { - QWidget *effectFrame = m_pDSettingDilog->findChild("effectOptionFrame"); - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(effectFrame->parent())->hide(); - dynamic_cast(videoFrame->parent())->hide(); - dynamic_cast(decodeFrame->parent())->hide(); - } else { - if (utils::check_wayland_env()) { - QWidget *effectFrame = m_pDSettingDilog->findChild("effectOptionFrame"); - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(effectFrame->parent())->hide(); - dynamic_cast(videoFrame->parent())->hide(); - dynamic_cast(decodeFrame->parent())->show(); - } else { - int effectIndex = Settings::get().settings()->getOption(QString("base.decode.Effect")).toInt(); - if (effectIndex == 0) { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->hide(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->hide(); - } else if (effectIndex == 1) { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->show(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->show(); - } else { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->show(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - if (Settings::get().settings()->getOption("base.decode.Videoout").toInt() == 0 && - Settings::get().settings()->getOption("base.decode.Effect").toInt() == 2) { - dynamic_cast(decodeFrame->parent())->hide(); - } else - dynamic_cast(decodeFrame->parent())->show(); - } - } - } - - connect(&Settings::get(), &Settings::setDecodeModel, this, [=](QString key, QVariant value){ - if (key == "base.decode.select" && value.toInt() == 3){ - DDialog msgBox; - msgBox.setIcon(QIcon(":/resources/icons/warning.svg")); - msgBox.setTitle(tr("Professional mode is only for professionals to use")); - msgBox.setMessage(tr("During the adaptation process, there may be issues such as screen distortion, freezing, stuttering, torn images, \n" - "unsynchronized audio and video, and player crashes. Please use with caution.")); - msgBox.addButton(tr("OK"), true, DDialog::ButtonType::ButtonRecommend); - msgBox.setOnButtonClickedClose(true); - msgBox.exec(); - } - if (key == "base.decode.select") { - int decodeType = Settings::get().settings()->getOption(QString("base.decode.select")).toInt(); - if (decodeType != 3) { - QWidget *effectFrame = m_pDSettingDilog->findChild("effectOptionFrame"); - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(effectFrame->parent())->hide(); - dynamic_cast(videoFrame->parent())->hide(); - dynamic_cast(decodeFrame->parent())->hide(); - } else { - if (utils::check_wayland_env()) { - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->show(); - } else { - QWidget *effectFrame = m_pDSettingDilog->findChild("effectOptionFrame"); - dynamic_cast(effectFrame->parent())->show(); - int effectIndex = Settings::get().settings()->getOption(QString("base.decode.Effect")).toInt(); - if (effectIndex == 0) { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->hide(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->hide(); - } else { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->show(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - if (Settings::get().settings()->getOption("base.decode.Videoout").toInt() == 0 && - Settings::get().settings()->getOption("base.decode.Effect").toInt() == 2) - dynamic_cast(decodeFrame->parent())->hide(); - else - dynamic_cast(decodeFrame->parent())->show(); - } - } - } - } - }, Qt::DirectConnection); - - connect(&Settings::get(), &Settings::baseChanged, this, [=](QString key, QVariant value) { - if (!utils::check_wayland_env()) { - int visable = value.toInt(); - if (key == "base.decode.Effect") { - if (visable == 0) { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->hide(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->hide(); - } else { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->show(); - if (Settings::get().settings()->getOption(QString("base.decode.Videoout")).toInt() != 0 || visable == 1) { - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->show(); - } else { - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->hide(); - } - } - } else if (key == "base.decode.Videoout") { - int eff = Settings::get().settings()->getOption("base.decode.Effect").toInt(); - if (visable || eff == 1) { - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->show(); - } else { - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->hide(); - } - } - } - }, Qt::DirectConnection); - return m_pDSettingDilog; + return pDSettingDilog; } void MainWindow::play(const QList &listFiles) { + Q_ASSERT(m_pEngine); + QList lstValid; QList lstDir; QList lstFile; @@ -3114,6 +2830,7 @@ void MainWindow::updateProxyGeometry() if (m_pToolbox) { QRect rfs; + QPoint mircastPoint; if (m_pPlaylist && m_pPlaylist->state() == PlaylistWidget::State::Opened && !utils::check_wayland_env()) { rfs = QRect(5, height() - (TOOLBOX_SPACE_HEIGHT + TOOLBOX_HEIGHT) - rect().top() - 5, rect().width() - 10, (TOOLBOX_SPACE_HEIGHT + TOOLBOX_HEIGHT + 7)); @@ -3121,7 +2838,8 @@ void MainWindow::updateProxyGeometry() rfs = QRect(5, height() - TOOLBOX_HEIGHT - rect().top() - 5, rect().width() - 10, TOOLBOX_HEIGHT); } - + mircastPoint.setX(5 + rect().width() - 10); + mircastPoint.setY(height() - TOOLBOX_HEIGHT - rect().top() - 5); #ifdef DTKWIDGET_CLASS_DSizeMode if (DGuiApplicationHelper::instance()->sizeMode() == DGuiApplicationHelper::CompactMode) { if (m_pPlaylist && m_pPlaylist->state() == PlaylistWidget::State::Opened && !utils::check_wayland_env()) { @@ -3131,10 +2849,12 @@ void MainWindow::updateProxyGeometry() rfs = QRect(5, height() - TOOLBOX_DSIZEMODE_HEIGHT - rect().top() - 5, rect().width() - 10, TOOLBOX_DSIZEMODE_HEIGHT); } + mircastPoint.setX(5 + rect().width() - 10); + mircastPoint.setY(height() - TOOLBOX_DSIZEMODE_HEIGHT - rect().top() - 5); } #endif m_pToolbox->setGeometry(rfs); - m_pToolbox->updateMircastWidget(rfs.topRight()); + m_pToolbox->updateMircastWidget(mircastPoint); } if (m_pPlaylist && !m_pPlaylist->toggling()) { @@ -3350,7 +3070,7 @@ void MainWindow::onSetDecodeModel(const QString &key, const QVariant &value) Q_UNUSED(key); MpvProxy* pMpvProxy = nullptr; pMpvProxy = dynamic_cast(m_pEngine->getMpvProxy()); - if(pMpvProxy && value.toInt() != 3) + if(pMpvProxy) pMpvProxy->setDecodeModel(value); } @@ -3652,7 +3372,6 @@ void MainWindow::closeEvent(QCloseEvent *pEvent) m_nLastCookie = 0; } - Settings::get().onSetCrash(); if (Settings::get().isSet(Settings::ResumeFromLast)) { int nCur = 0; nCur = m_pEngine->playlist().current(); @@ -3662,15 +3381,19 @@ void MainWindow::closeEvent(QCloseEvent *pEvent) } int volume = Settings::get().internalOption("global_volume").toInt(); - if (m_nDisplayVolume != volume) { + int displayVolume = m_nDisplayVolume > 100 ? 100 : m_nDisplayVolume; + if (displayVolume != volume) { static QEventLoop loop; QFileSystemWatcher fileWatcher; fileWatcher.addPath(Settings::get().configPath()); connect(&fileWatcher, &QFileSystemWatcher::fileChanged, this, [=](){ loop.quit(); }); + QTimer::singleShot(2000, this, [=](){ + loop.quit(); + }); //关闭窗口时保存音量值 - Settings::get().setInternalOption("global_volume", m_nDisplayVolume > 100 ? 100 : m_nDisplayVolume); + Settings::get().setInternalOption("global_volume", displayVolume); loop.exec(); } m_pEngine->savePlaybackPosition(); @@ -3908,6 +3631,13 @@ void MainWindow::resizeEvent(QResizeEvent *pEvent) m_pMiniQuitMiniBtn->setVisible(m_bMiniMode); } } + //判断屏幕可用坐标与应用的geometry是否有交集,没有就移动到屏幕可见位置 + QRect geoRect = geometry(); + QRect deskRect = QApplication::desktop()->availableGeometry(geoRect.topLeft()); + + if(!deskRect.intersects(geoRect)) { + move(deskRect.x(), deskRect.y()); + } } void MainWindow::updateWindowTitle() @@ -4064,7 +3794,7 @@ void MainWindow::mouseReleaseEvent(QMouseEvent *ev) qInfo() << __func__ << "进入mouseReleaseEvent"; - if (!insideResizeArea(ev->globalPos()) && !m_bMouseMoved && (m_pPlaylist->state() != PlaylistWidget::Opened)) { + if (!insideResizeArea(ev->globalPos()) && !m_bMouseMoved && m_pPlaylist && (m_pPlaylist->state() != PlaylistWidget::Opened)) { if (!insideToolsArea(ev->pos())) { m_delayedMouseReleaseTimer.start(120); } else { diff --git a/src/common/mainwindow.h b/src/common/mainwindow.h index 93e0487cd..f0ad0278f 100644 --- a/src/common/mainwindow.h +++ b/src/common/mainwindow.h @@ -588,7 +588,6 @@ protected slots: Qt::WindowStates m_preMiniWindowState {Qt::WindowNoState}; ///window state before mini mode bool m_bMaximized; ///全屏前最大化窗口记录 bool m_bHaveFile; ///导入是否包含文件(用于导入文件或文件夹) - DSettingsDialog *m_pDSettingDilog{nullptr}; }; }; diff --git a/src/common/platform/platform_mainwindow.cpp b/src/common/platform/platform_mainwindow.cpp index 0a23705c2..db8681349 100644 --- a/src/common/platform/platform_mainwindow.cpp +++ b/src/common/platform/platform_mainwindow.cpp @@ -151,127 +151,6 @@ static QString ElideText(const QString &sText, const QSize &size, return sElideText; } -static QWidget *createDecodeOptionHandle(QObject *pObj) -{ - DSettingsOption *pSettingOption = qobject_cast(pObj); - QWidget *mianWidget = new QWidget; - QComboBox *combobox = new QComboBox; - QHBoxLayout *pLayout = new QHBoxLayout; - - combobox->addItems(pSettingOption->data("items").toStringList()); - mianWidget->setLayout(pLayout); - pLayout->addStretch(); - pLayout->addWidget(combobox); - combobox->setFixedWidth(245); - combobox->setCurrentIndex(pSettingOption->value().toInt()); - - QWidget *pOptionWidget = new QWidget; - pOptionWidget->setObjectName("decodeOptionFrame"); - - QFormLayout *pOptionLayout = new QFormLayout(pOptionWidget); - pOptionLayout->setContentsMargins(0, 0, 0, 0); - pOptionLayout->setSpacing(0); - - mianWidget->setMinimumWidth(240); - pOptionLayout->addRow(new DLabel(QObject::tr(pSettingOption->name().toStdString().c_str())), mianWidget); - - pSettingOption->connect(pSettingOption, &DSettingsOption::dataChanged, [=](const QString &dataType, QVariant value){ - if (dataType == "items") { - combobox->clear(); - combobox->addItems(value.toStringList()); - } - }); - - pSettingOption->connect(combobox, &QComboBox::currentTextChanged, [=](const QString &){ - pSettingOption->setValue(combobox->currentIndex()); - }); - - return pOptionWidget; -} - -static QWidget *createVoOptionHandle(QObject *pObj) -{ - DSettingsOption *pSettingOption = qobject_cast(pObj); - QWidget *mianWidget = new QWidget; - QComboBox *combobox = new QComboBox; - QHBoxLayout *pLayout = new QHBoxLayout; - - combobox->addItems(pSettingOption->data("items").toStringList()); - mianWidget->setLayout(pLayout); - pLayout->addStretch(); - pLayout->addWidget(combobox); - combobox->setFixedWidth(245); - combobox->setCurrentIndex(pSettingOption->value().toInt()); - - QWidget *pOptionWidget = new QWidget; - pOptionWidget->setObjectName("videoOutOptionFrame"); - - QFormLayout *pOptionLayout = new QFormLayout(pOptionWidget); - pOptionLayout->setContentsMargins(0, 0, 0, 0); - pOptionLayout->setSpacing(0); - - mianWidget->setMinimumWidth(240); - pOptionLayout->addRow(new DLabel(QObject::tr(pSettingOption->name().toStdString().c_str())), mianWidget); - - pSettingOption->connect(pSettingOption, &DSettingsOption::dataChanged, [=](const QString &dataType, QVariant value){ - if (dataType == "items") { - combobox->clear(); - combobox->addItems(value.toStringList()); - } - }); - - pSettingOption->connect(combobox, &QComboBox::currentTextChanged, [=](const QString &){ - pSettingOption->setValue(combobox->currentIndex()); - }); - - pSettingOption->connect(pSettingOption, &DSettingsOption::valueChanged, [=](QVariant value){ - combobox->setCurrentIndex(value.toInt()); - }); - - return pOptionWidget; -} - -static QWidget *createEffectOptionHandle(QObject *pObj) -{ - DSettingsOption *pSettingOption = qobject_cast(pObj); - QWidget *mianWidget = new QWidget; - QComboBox *combobox = new QComboBox; - QHBoxLayout *pLayout = new QHBoxLayout; - - combobox->addItems(pSettingOption->data("items").toStringList()); - mianWidget->setLayout(pLayout); - pLayout->addStretch(); - pLayout->addWidget(combobox); - combobox->setFixedWidth(245); - combobox->setCurrentIndex(pSettingOption->value().toInt()); - - QWidget *pOptionWidget = new QWidget; - pOptionWidget->setObjectName("effectOptionFrame"); - - QFormLayout *pOptionLayout = new QFormLayout(pOptionWidget); - pOptionLayout->setContentsMargins(0, 0, 0, 0); - pOptionLayout->setSpacing(0); - - mianWidget->setMinimumWidth(240); - pOptionLayout->addRow(new DLabel(QObject::tr(pSettingOption->name().toStdString().c_str())), mianWidget); - - pSettingOption->connect(pSettingOption, &DSettingsOption::dataChanged, [=](const QString &dataType, QVariant value){ - if (dataType == "items") { - combobox->addItems(value.toStringList()); - } - }); - - pSettingOption->connect(combobox, &QComboBox::currentTextChanged, [=](const QString &){ - pSettingOption->setValue(combobox->currentIndex()); - }); - - pSettingOption->connect(pSettingOption, &DSettingsOption::valueChanged, [=](QVariant value){ - combobox->setCurrentIndex(value.toInt()); - }); - - return pOptionWidget; -} - static QWidget *createSelectableLineEditOptionHandle(QObject *pObj) { DSettingsOption *pSettingOption = qobject_cast(pObj); @@ -1156,7 +1035,7 @@ Platform_MainWindow::Platform_MainWindow(QWidget *parent) qInfo() << "session Path is :" << path; connect(dynamic_cast(m_pEngine->getMpvProxy()),&MpvProxy::crashCheck,&Settings::get(),&Settings::crashCheck); //解码初始化 - //decodeInit(); + decodeInit(); } void Platform_MainWindow::setupTitlebar() @@ -2853,204 +2732,38 @@ void Platform_MainWindow::startBurstShooting() void Platform_MainWindow::handleSettings(DSettingsDialog *dsd) { - int decodeType = Settings::get().settings()->getOption(QString("base.decode.select")).toInt(); - int decodeMode = Settings::get().settings()->getOption(QString("base.decode.Decodemode")).toInt(); - int voMode = Settings::get().settings()->getOption(QString("base.decode.Videoout")).toInt(); - int effectMode = Settings::get().settings()->getOption("base.decode.Effect").toInt(); - #ifndef USE_TEST dsd->exec(); + delete dsd; #else dsd->setObjectName("DSettingsDialog"); dsd ->show(); #endif - if (Settings::get().settings()->getOption("base.decode.select").toInt() != decodeType && - (Settings::get().settings()->getOption("base.decode.select").toInt() == 3 || decodeType == 3)) { - DDialog msgBox; - msgBox.setIcon(QIcon(":/resources/icons/warning.svg")); - msgBox.setMessage(QObject::tr("The custom decoding method needs to be restarted before it can take effect,\nand whether to restart it?")); - msgBox.addButton(tr("Cancel"), DDialog::ButtonType::ButtonNormal); - msgBox.addButton(tr("Restart"), true, DDialog::ButtonType::ButtonWarning); - msgBox.setOnButtonClickedClose(true); - if (msgBox.exec() == 1) { - Settings::get().settings()->setOption("set.start.crash", "2"); - qApp->exit(); - QProcess::startDetached(qApp->applicationFilePath(), QStringList() << "--restart"); - } else { - if (decodeType != 3) { - Settings::get().settings()->setOption("base.decode.select", decodeType); - } - Settings::get().settings()->setOption("base.decode.Effect", effectMode); - Settings::get().settings()->setOption("base.decode.Decodemode", decodeMode); - Settings::get().settings()->setOption("base.decode.Videoout", voMode); - } - } else { - if (decodeType == 3) { - int newDecodeMode = Settings::get().settings()->getOption(QString("base.decode.Decodemode")).toInt(); - int newVoMode = Settings::get().settings()->getOption(QString("base.decode.Videoout")).toInt(); - int newEffectMode = Settings::get().settings()->getOption("base.decode.Effect").toInt(); - if (newEffectMode != effectMode || newVoMode != voMode || newDecodeMode != decodeMode) { - Settings::get().crashCheck(); - DDialog msgBox; - msgBox.setIcon(QIcon(":/resources/icons/warning.svg")); - msgBox.setMessage(QObject::tr("The custom decoding method needs to be restarted before it can take effect,\nand whether to restart it?")); - msgBox.addButton(tr("Cancel"), DDialog::ButtonType::ButtonNormal); - msgBox.addButton(tr("Restart"), true, DDialog::ButtonType::ButtonWarning); - msgBox.setOnButtonClickedClose(true); - if (msgBox.exec() == 1) { - Settings::get().settings()->setOption("set.start.crash", "2"); - qApp->exit(); - QProcess::startDetached(qApp->applicationFilePath(), QStringList() << "--restart"); - } else { - if (decodeType != 3) { - Settings::get().settings()->setOption("base.decode.select", decodeMode); - } - Settings::get().settings()->setOption("base.decode.Effect", effectMode); - Settings::get().settings()->setOption("base.decode.Decodemode", decodeMode); - Settings::get().settings()->setOption("base.decode.Videoout", voMode); - } - } - } - } Settings::get().settings()->sync(); } DSettingsDialog *Platform_MainWindow::initSettings() { - if (m_pDSettingDilog) - return m_pDSettingDilog; - m_pDSettingDilog = new DSettingsDialog(this); - m_pDSettingDilog->widgetFactory()->registerWidget("selectableEdit", createSelectableLineEditOptionHandle); - m_pDSettingDilog->widgetFactory()->registerWidget("effectCombobox", createEffectOptionHandle); - m_pDSettingDilog->widgetFactory()->registerWidget("videoOutCombobox", createVoOptionHandle); - m_pDSettingDilog->widgetFactory()->registerWidget("decoderCombobox", createDecodeOptionHandle); - - m_pDSettingDilog->setProperty("_d_QSSThemename", "dark"); - m_pDSettingDilog->setProperty("_d_QSSFilename", "DSettingsDialog"); - m_pDSettingDilog->updateSettings(Settings::get().settings()); + DSettingsDialog *pDSettingDilog = new DSettingsDialog(this); + pDSettingDilog->widgetFactory()->registerWidget("selectableEdit", createSelectableLineEditOptionHandle); + + pDSettingDilog->setProperty("_d_QSSThemename", "dark"); + pDSettingDilog->setProperty("_d_QSSFilename", "DSettingsDialog"); + pDSettingDilog->updateSettings(Settings::get().settings()); //hack: - QSpinBox *pSpinBox = m_pDSettingDilog->findChild("OptionDSpinBox"); + QSpinBox *pSpinBox = pDSettingDilog->findChild("OptionDSpinBox"); if (pSpinBox) { pSpinBox->setMinimum(8); } // hack: reset is set to default by QDialog, which makes lineedit's enter // press is responded by reset button - QPushButton *pPushButton = m_pDSettingDilog->findChild("SettingsContentReset"); + QPushButton *pPushButton = pDSettingDilog->findChild("SettingsContentReset"); pPushButton->setDefault(false); pPushButton->setAutoDefault(false); - - int decodeType = Settings::get().settings()->getOption(QString("base.decode.select")).toInt(); - if (decodeType != 3) { - QWidget *effectFrame = m_pDSettingDilog->findChild("effectOptionFrame"); - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(effectFrame->parent())->hide(); - dynamic_cast(videoFrame->parent())->hide(); - dynamic_cast(decodeFrame->parent())->hide(); - } else { - int effectIndex = Settings::get().settings()->getOption(QString("base.decode.Effect")).toInt(); - if (effectIndex == 0) { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->hide(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->hide(); - } else if (effectIndex == 1) { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->show(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->show(); - } else { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->show(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - if (Settings::get().settings()->getOption("base.decode.Videoout").toInt() == 0 && - Settings::get().settings()->getOption("base.decode.Effect").toInt() == 2) { - dynamic_cast(decodeFrame->parent())->hide(); - } else - dynamic_cast(decodeFrame->parent())->show(); - } - } - - connect(&Settings::get(), &Settings::setDecodeModel, this, [=](QString key, QVariant value){ - if (key == "base.decode.select" && value.toInt() == 3){ - DDialog msgBox; - msgBox.setIcon(QIcon(":/resources/icons/warning.svg")); - msgBox.setTitle(tr("Professional mode is only for professionals to use")); - msgBox.setMessage(tr("During the adaptation process, there may be issues such as screen distortion, freezing, stuttering, torn images, \n" - "unsynchronized audio and video, and player crashes. Please use with caution.")); - msgBox.addButton(tr("OK"), true, DDialog::ButtonType::ButtonRecommend); - msgBox.setOnButtonClickedClose(true); - msgBox.exec(); - } - if (key == "base.decode.select") { - int decodeType = Settings::get().settings()->getOption(QString("base.decode.select")).toInt(); - if (decodeType != 3) { - QWidget *effectFrame = m_pDSettingDilog->findChild("effectOptionFrame"); - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(effectFrame->parent())->hide(); - dynamic_cast(videoFrame->parent())->hide(); - dynamic_cast(decodeFrame->parent())->hide(); - } else { - QWidget *effectFrame = m_pDSettingDilog->findChild("effectOptionFrame"); - dynamic_cast(effectFrame->parent())->show(); - int effectIndex = Settings::get().settings()->getOption(QString("base.decode.Effect")).toInt(); - if (effectIndex == 0) { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->hide(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->hide(); - } else { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->show(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - if (Settings::get().settings()->getOption("base.decode.Videoout").toInt() == 0 && - Settings::get().settings()->getOption("base.decode.Effect").toInt() == 2) - dynamic_cast(decodeFrame->parent())->hide(); - else - dynamic_cast(decodeFrame->parent())->show(); - } - } - } - }, Qt::DirectConnection); - - connect(&Settings::get(), &Settings::baseChanged, this, [=](QString key, QVariant value) { - int visable = value.toInt(); - if (key == "base.decode.Effect") { - if (visable == 0) { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->hide(); - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->hide(); - } else { - if (Settings::get().settings()->getOption(QString("base.decode.select")).toInt() == 3) { - QWidget *videoFrame = m_pDSettingDilog->findChild("videoOutOptionFrame"); - dynamic_cast(videoFrame->parent())->show(); - if (Settings::get().settings()->getOption(QString("base.decode.Videoout")).toInt() != 0 || visable == 1) { - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->show(); - } else { - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->hide(); - } - } - } - } else if (key == "base.decode.Videoout") { - int eff = Settings::get().settings()->getOption("base.decode.Effect").toInt(); - if (visable || eff == 1) { - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->show(); - } else { - QWidget *decodeFrame = m_pDSettingDilog->findChild("decodeOptionFrame"); - dynamic_cast(decodeFrame->parent())->hide(); - } - } - }, Qt::DirectConnection); - - return m_pDSettingDilog; + return pDSettingDilog; } void Platform_MainWindow::play(const QList &listFiles) @@ -3113,6 +2826,7 @@ void Platform_MainWindow::updateProxyGeometry() if (m_pToolbox) { QRect rfs; + QPoint mircastPoint; if (m_pPlaylist && m_pPlaylist->state() == Platform_PlaylistWidget::State::Opened) { rfs = QRect(5, height() - (TOOLBOX_SPACE_HEIGHT + TOOLBOX_HEIGHT) - rect().top() - 5, rect().width() - 10, (TOOLBOX_SPACE_HEIGHT + TOOLBOX_HEIGHT + 7)); @@ -3120,7 +2834,8 @@ void Platform_MainWindow::updateProxyGeometry() rfs = QRect(5, height() - TOOLBOX_HEIGHT - rect().top() - 5, rect().width() - 10, TOOLBOX_HEIGHT); } - + mircastPoint.setX(5 + rect().width() - 10); + mircastPoint.setY(height() - TOOLBOX_HEIGHT - rect().top() - 5); #ifdef DTKWIDGET_CLASS_DSizeMode if (DGuiApplicationHelper::instance()->sizeMode() == DGuiApplicationHelper::CompactMode) { if (m_pPlaylist && m_pPlaylist->state() == Platform_PlaylistWidget::State::Opened) { @@ -3130,10 +2845,12 @@ void Platform_MainWindow::updateProxyGeometry() rfs = QRect(5, height() - TOOLBOX_DSIZEMODE_HEIGHT - rect().top() - 5, rect().width() - 10, TOOLBOX_DSIZEMODE_HEIGHT); } + mircastPoint.setX(5 + rect().width() - 10); + mircastPoint.setY(height() - TOOLBOX_DSIZEMODE_HEIGHT - rect().top() - 5); } #endif m_pToolbox->setGeometry(rfs); - m_pToolbox->updateMircastWidget(rfs.topRight()); + m_pToolbox->updateMircastWidget(mircastPoint); } if (m_pPlaylist && !m_pPlaylist->toggling()) { @@ -3355,7 +3072,7 @@ void Platform_MainWindow::onSetDecodeModel(const QString &key, const QVariant &v Q_UNUSED(key); MpvProxy* pMpvProxy = nullptr; pMpvProxy = dynamic_cast(m_pEngine->getMpvProxy()); - if(pMpvProxy && value.toInt() != 3) + if(pMpvProxy) pMpvProxy->setDecodeModel(value); } @@ -3622,8 +3339,6 @@ void Platform_MainWindow::closeEvent(QCloseEvent *pEvent) m_nLastCookie = 0; } - Settings::get().onSetCrash(); - if (Settings::get().isSet(Settings::ResumeFromLast)) { int nCur = 0; nCur = m_pEngine->playlist().current(); @@ -3632,15 +3347,19 @@ void Platform_MainWindow::closeEvent(QCloseEvent *pEvent) } } int volume = Settings::get().internalOption("global_volume").toInt(); - if (m_nDisplayVolume != volume) { + int displayVolume = m_nDisplayVolume > 100 ? 100 : m_nDisplayVolume; + if (displayVolume != volume) { static QEventLoop loop; QFileSystemWatcher fileWatcher; fileWatcher.addPath(Settings::get().configPath()); connect(&fileWatcher, &QFileSystemWatcher::fileChanged, this, [=](){ loop.quit(); }); + QTimer::singleShot(2000, this, [=](){ + loop.quit(); + }); //关闭窗口时保存音量值 - Settings::get().setInternalOption("global_volume", m_nDisplayVolume > 100 ? 100 : m_nDisplayVolume); + Settings::get().setInternalOption("global_volume", displayVolume); loop.exec(); } m_pEngine->savePlaybackPosition(); @@ -3865,6 +3584,13 @@ void Platform_MainWindow::resizeEvent(QResizeEvent *pEvent) m_pMiniQuitMiniBtn->setVisible(m_bMiniMode); } } + //判断屏幕可用坐标与应用的geometry是否有交集,没有就移动到屏幕可见位置 + QRect geoRect = geometry(); + QRect deskRect = QApplication::desktop()->availableGeometry(geoRect.topLeft()); + + if(!deskRect.intersects(geoRect)) { + move(deskRect.x(), deskRect.y()); + } } void Platform_MainWindow::updateWindowTitle() @@ -4190,6 +3916,11 @@ void Platform_MainWindow::contextMenuEvent(QContextMenuEvent *pEvent) resumeToolsWindow(); QTimer::singleShot(0, [ = ]() { qApp->restoreOverrideCursor(); + QList lstAct = ActionFactory::get().findActionsByKind(ActionFactory::ActionKind::ToggleFullscreen); + if(!lstAct.isEmpty()) { + QAction *pAct = lstAct.first(); + if(pAct) pAct->setChecked(isFullScreen()); + } ActionFactory::get().mainContextMenu()->popup(QCursor::pos()); }); pEvent->accept(); diff --git a/src/common/platform/platform_mainwindow.h b/src/common/platform/platform_mainwindow.h index 95b9c8b8f..d0bceb21f 100644 --- a/src/common/platform/platform_mainwindow.h +++ b/src/common/platform/platform_mainwindow.h @@ -586,7 +586,6 @@ protected slots: bool m_bIsWM {true}; ///是否开启窗口特效 bool m_bMaximized; ///全屏前最大化窗口记录 bool m_bLocked{true}; - DSettingsDialog *m_pDSettingDilog{nullptr}; }; }; diff --git a/src/common/settings_translation.cpp b/src/common/settings_translation.cpp index 32eaf6425..18e268acf 100644 --- a/src/common/settings_translation.cpp +++ b/src/common/settings_translation.cpp @@ -61,9 +61,5 @@ void GenerateSettingTranslate() auto group_decoding_auto = QObject::tr("Auto select (Recommended)"); auto group_decoding_hardware = QObject::tr("Hardware decoding"); auto group_decoding_software = QObject::tr("Software decoding"); - auto group_decoding_customize = QObject::tr("Customize"); - auto group_customize_Decodemode = QObject::tr("Decode mode"); - auto group_customize_Videoout = QObject::tr("Video out"); - auto group_effectmode_Effectmode = QObject::tr("Rendering engine"); } diff --git a/src/libdmr/compositing_manager.cpp b/src/libdmr/compositing_manager.cpp index 1daf29788..594acac7e 100644 --- a/src/libdmr/compositing_manager.cpp +++ b/src/libdmr/compositing_manager.cpp @@ -6,7 +6,6 @@ #include "config.h" #include "compositing_manager.h" #include "utils.h" -#include "dmr_settings.h" #ifndef _LIBDMR_ #include "options.h" #endif @@ -17,7 +16,6 @@ #include #include #include -#include #define GLX_GLXEXT_PROTOTYPES #include @@ -94,7 +92,7 @@ class PlatformChecker static bool detect550Series() { QProcess pcicheck; - pcicheck.start("bash -c \"lspci -nk | grep -i 'in use' -B 2 | grep -iE '1002:699f|1002:6987' \""); + pcicheck.start("bash -c \"lspci -nk | grep -i 'in use' -B 2 | grep -iE '1002:699f|1002:6987|6766:3d02' \""); //use vaapi. add adject Glenfly Tech Co., Ltd. Arise1020 [6766:3d02] if (pcicheck.waitForFinished(1000)) { QByteArray readData = pcicheck.readAllStandardOutput(); if (!readData.isEmpty()) { @@ -164,33 +162,6 @@ CompositingManager::CompositingManager() return; } - QString settingPath = DStandardPaths::writableLocation(QStandardPaths::AppConfigLocation); - settingPath += "/config.conf"; - QFile file(settingPath); - if (file.open(QIODevice::ReadOnly | QIODevice::Text)) { - QTextStream in(&file); - QString line; - while (!in.atEnd()) { - line = in.readLine(); - if (line.contains("[base.decode.Effect]")) { - line = in.readLine(); - int index = line.indexOf("value="); - if (index != -1) { - QString value = line.mid(index + 6); // 6 is the length of "value=" - value = value.trimmed(); // Remove leading and trailing whitespace - file.close(); - if (value.toInt() != 0) { - _composited = value.toInt() == 1 ? true : false; - m_pMpvConfig = new QMap; - utils::getPlayProperty("/etc/mpv/play.conf", m_pMpvConfig); - return; - } - } - } - } - } - file.close(); - _composited = true; #if defined (_MOVIE_USE_) QGSettings gsettings("com.deepin.deepin-movie", "/com/deepin/deepin-movie/"); @@ -350,8 +321,11 @@ bool CompositingManager::isMpvExists() QDir dir; QString path = QLibraryInfo::location(QLibraryInfo::LibrariesPath); dir.setPath(path); - static QStringList list = dir.entryList(QStringList() << (QString("libmpv.so") + "*"), QDir::NoDotAndDotDot | QDir::Files); - return !list.isEmpty(); + static QStringList list = dir.entryList(QStringList() << (QString("libmpv.so.1") + "*"), QDir::NoDotAndDotDot | QDir::Files); + if (list.contains("libmpv.so.1")) { + return true; + } + return false; } bool CompositingManager::isZXIntgraphics() const diff --git a/src/libdmr/gstutils.cpp b/src/libdmr/gstutils.cpp index cb0708b44..9d3d8fd74 100644 --- a/src/libdmr/gstutils.cpp +++ b/src/libdmr/gstutils.cpp @@ -205,9 +205,6 @@ GstUtils* GstUtils::get() MovieInfo GstUtils:: parseFileByGst(const QFileInfo &fi) { - char *uri = nullptr; - uri = new char[200]; - m_movieInfo = MovieInfo(); m_movieInfo.title = fi.fileName(); @@ -216,9 +213,8 @@ MovieInfo GstUtils:: parseFileByGst(const QFileInfo &fi) m_movieInfo.fileSize = fi.size(); m_movieInfo.fileType = fi.suffix(); - uri = strcpy(uri, QUrl::fromLocalFile(fi.filePath()).toString().toUtf8().constData()); - - if (!g_mvideo_gst_discoverer_discover_uri_async (m_gstData.discoverer, uri)) { + QByteArray uri = QUrl::fromLocalFile(fi.filePath()).toString().toLocal8Bit(); + if (!g_mvideo_gst_discoverer_discover_uri_async (m_gstData.discoverer, uri.constData())) { qInfo() << "Failed to start discovering URI " << uri; g_object_unref (m_gstData.discoverer); return m_movieInfo; @@ -226,8 +222,6 @@ MovieInfo GstUtils:: parseFileByGst(const QFileInfo &fi) g_main_loop_run (m_gstData.loop); - delete []uri; - return m_movieInfo; } diff --git a/src/libdmr/playlist_model.cpp b/src/libdmr/playlist_model.cpp index 8c6b02e95..22f5d3794 100644 --- a/src/libdmr/playlist_model.cpp +++ b/src/libdmr/playlist_model.cpp @@ -16,6 +16,7 @@ #include #include +#include extern "C" { #include #include @@ -33,8 +34,23 @@ typedef AVCodec *(*mvideo_avcodec_find_decoder)(enum AVCodecID id); typedef const char *(*mvideo_av_get_media_type_string)(enum AVMediaType media_type); typedef AVCodecContext *(*mvideo_avcodec_alloc_context3)(const AVCodec *codec); typedef int (*mvideo_avcodec_parameters_to_context)(AVCodecContext *codec, const AVCodecParameters *par); -typedef int (*mvideo_avcodec_open2)(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options); -typedef void (*mvideo_avcodec_free_context)(AVCodecContext **avctx); + +video_thumbnailer *m_video_thumbnailer = nullptr; +image_data *m_image_data = nullptr; + +typedef video_thumbnailer *(*mvideo_thumbnailer)(); +typedef void (*mvideo_thumbnailer_destroy)(video_thumbnailer *thumbnailer); +/* create image_data structure */ +typedef image_data *(*mvideo_thumbnailer_create_image_data)(void); +/* destroy image_data structure */ +typedef void (*mvideo_thumbnailer_destroy_image_data)(image_data *data); +typedef int (*mvideo_thumbnailer_generate_thumbnail_to_buffer)(video_thumbnailer *thumbnailer, const char *movie_filename, image_data *generated_image_data); + +mvideo_thumbnailer m_mvideo_thumbnailer = nullptr; +mvideo_thumbnailer_destroy m_mvideo_thumbnailer_destroy = nullptr; +mvideo_thumbnailer_create_image_data m_mvideo_thumbnailer_create_image_data = nullptr; +mvideo_thumbnailer_destroy_image_data m_mvideo_thumbnailer_destroy_image_data = nullptr; +mvideo_thumbnailer_generate_thumbnail_to_buffer m_mvideo_thumbnailer_generate_thumbnail_to_buffer = nullptr; mvideo_avformat_open_input g_mvideo_avformat_open_input = nullptr; @@ -47,8 +63,6 @@ mvideo_avcodec_find_decoder g_mvideo_avcodec_find_decoder = nullptr; mvideo_av_get_media_type_string g_mvideo_av_get_media_type_string = nullptr; mvideo_avcodec_alloc_context3 g_mvideo_avcodec_alloc_context3 = nullptr; mvideo_avcodec_parameters_to_context g_mvideo_avcodec_parameters_to_context = nullptr; -mvideo_avcodec_open2 g_mvideo_avcodec_open2 = nullptr; -mvideo_avcodec_free_context g_mvideo_avcodec_free_context = nullptr; namespace dmr { QDataStream &operator<< (QDataStream &st, const MovieInfo &mi) @@ -315,15 +329,8 @@ struct MovieInfo PlaylistModel::parseFromFile(const QFileInfo &fi, bool *ok) } else { mi.proportion = 0; } - - AVCodecContext *codec_context = g_mvideo_avcodec_alloc_context3(NULL); - g_mvideo_avcodec_parameters_to_context(codec_context, video_dec_ctx); - AVCodec *videoCodec = g_mvideo_avcodec_find_decoder(video_dec_ctx->codec_id); - if (g_mvideo_avcodec_open2(codec_context, videoCodec, 0) > 0) { - //用唯一的文件名绑定对应视频的对应pix_fmt值 - setProperty(fi.filePath().toUtf8(), codec_context->pix_fmt); - } - g_mvideo_avcodec_free_context(&codec_context); + //用唯一的文件名绑定对应视频的对应pix_fmt值 + setProperty(fi.filePath().toUtf8(), videoStream->codec->pix_fmt); } if (audioRet >= 0) { int audio_stream_index = -1; @@ -524,8 +531,6 @@ void PlaylistModel::initFFmpeg() g_mvideo_av_get_media_type_string = (mvideo_av_get_media_type_string) avutilLibrary.resolve("av_get_media_type_string"); g_mvideo_avcodec_alloc_context3 = (mvideo_avcodec_alloc_context3) avcodecLibrary.resolve("avcodec_alloc_context3"); g_mvideo_avcodec_parameters_to_context = (mvideo_avcodec_parameters_to_context) avcodecLibrary.resolve("avcodec_parameters_to_context"); - g_mvideo_avcodec_open2 = (mvideo_avcodec_open2)(avcodecLibrary.resolve("avcodec_open2")); - g_mvideo_avcodec_free_context = (mvideo_avcodec_free_context)(avcodecLibrary.resolve("avcodec_free_context")); m_initFFmpeg = true; } diff --git a/src/libdmr/playlist_model.h b/src/libdmr/playlist_model.h index f9d6cda12..e803707f1 100644 --- a/src/libdmr/playlist_model.h +++ b/src/libdmr/playlist_model.h @@ -8,28 +8,14 @@ #include //#include #include -#include -#include #include "utils.h" #include #include -#include - #define THUMBNAIL_SIZE 500 #define SEEK_TIME "00:00:01" -DGUI_USE_NAMESPACE - -typedef video_thumbnailer *(*mvideo_thumbnailer)(); -typedef void (*mvideo_thumbnailer_destroy)(video_thumbnailer *thumbnailer); -/* create image_data structure */ -typedef image_data *(*mvideo_thumbnailer_create_image_data)(void); -/* destroy image_data structure */ -typedef void (*mvideo_thumbnailer_destroy_image_data)(image_data *data); -typedef int (*mvideo_thumbnailer_generate_thumbnail_to_buffer)(video_thumbnailer *thumbnailer, const char *movie_filename, image_data *generated_image_data); - namespace dmr { class PlayerEngine; class LoadThread; @@ -287,15 +273,6 @@ private slots: bool _userRequestingItem {false}; - video_thumbnailer *m_video_thumbnailer = nullptr; - image_data *m_image_data = nullptr; - - mvideo_thumbnailer m_mvideo_thumbnailer = nullptr; - mvideo_thumbnailer_destroy m_mvideo_thumbnailer_destroy = nullptr; - mvideo_thumbnailer_create_image_data m_mvideo_thumbnailer_create_image_data = nullptr; - mvideo_thumbnailer_destroy_image_data m_mvideo_thumbnailer_destroy_image_data = nullptr; - mvideo_thumbnailer_generate_thumbnail_to_buffer m_mvideo_thumbnailer_generate_thumbnail_to_buffer = nullptr; - PlayerEngine *_engine {nullptr}; QString _playlistFile; diff --git a/src/main.cpp b/src/main.cpp index 22642bcff..7ef3bf1e8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -13,7 +13,6 @@ #include #include #include -#include #include "config.h" @@ -144,50 +143,6 @@ QString getFunctionMovieName() return movieName; } -void killOldMovie() -{ - QString processName = "deepin-movie"; - - QProcess psProcess; - psProcess.start("bash", QStringList() << "-c" << "ps -eo pid,lstart,cmd | grep deepin-movie"); - psProcess.waitForFinished(); - QString output = psProcess.readAllStandardOutput(); - - QStringList lines = output.split("\n"); - QStringList earlierProcessPids; - QDateTime earliestStartTime; - - for (const QString &line : lines) { - QStringList parts = line.split(QRegExp("\\s+"), QString::SkipEmptyParts); - if (parts.size() < 3) continue; - if (!parts[6].startsWith("deepin-movie")) continue; - - int pid = parts[0].toInt(); - if(QCoreApplication::applicationPid() == pid) continue; - QString time; -// for (int i = 1; i < 6; i++) { -// time += parts[i]; -// time += " "; -// } - time = parts[3] + " " + parts[4]; - QDateTime startTime = QDateTime::fromString(time, "dd HH:mm:ss"); - - if (earlierProcessPids.isEmpty() || startTime < earliestStartTime) { - earlierProcessPids.clear(); - earlierProcessPids << QString::number(pid); - earliestStartTime = startTime; - } - } - - // 杀死较早启动的进程 - for (const QString &pid : earlierProcessPids) { - QProcess killProcess; - killProcess.start("kill", QStringList() << pid); - killProcess.waitForFinished(); - qInfo() << "Killed process with PID:" << pid; - } -} - int main(int argc, char *argv[]) { // Task 326583 不参与合成器崩溃重连 @@ -274,9 +229,7 @@ int main(int argc, char *argv[]) qInfo() << "log path: " << Dtk::Core::DLogManager::getlogFilePath(); auto &clm = dmr::CommandLineManager::get(); QCommandLineOption functionCallOption("functioncall", "AI function call."); - QCommandLineOption restartCallOption("restart", "deepin movie restart"); clm.addOption(functionCallOption); - clm.addOption(restartCallOption); clm.process(*app); QStringList toOpenFiles; @@ -300,8 +253,6 @@ int main(int argc, char *argv[]) } Dtk::Core::DLogManager::registerFileAppender(); - dmr::Settings::get().crashCheck(); - bool singleton = !dmr::Settings::get().isSet(dmr::Settings::MultipleInstance); QString movieName = ""; if (clm.isSet("functioncall")) { @@ -309,36 +260,29 @@ int main(int argc, char *argv[]) } if (singleton && !runSingleInstance()) { - if (clm.isSet("restart")) { - sleep(2); - if (!runSingleInstance()) { - killOldMovie(); - } - } else { - QDBusInterface iface("com.deepin.movie", "/", "com.deepin.movie"); - if (clm.isSet("functioncall")) { - if(!movieName.isEmpty()) { - iface.asyncCall("openFile", movieName); - } - } - qInfo() << "another deepin movie instance has started"; - if (!toOpenFiles.isEmpty()) { - // QDBusInterface iface("com.deepin.movie", "/", "com.deepin.movie"); - if (toOpenFiles.size() == 1) { - if (!toOpenFiles[0].contains("QProcess")) - iface.asyncCall("openFile", toOpenFiles[0]); - } else { - iface.asyncCall("openFiles", toOpenFiles); - } + QDBusInterface iface("com.deepin.movie", "/", "com.deepin.movie"); + if (clm.isSet("functioncall")) { + if(!movieName.isEmpty()) { + iface.asyncCall("openFile", movieName); } - + } + qInfo() << "another deepin movie instance has started"; + if (!toOpenFiles.isEmpty()) { // QDBusInterface iface("com.deepin.movie", "/", "com.deepin.movie"); - if (iface.isValid()) { - qWarning() << "deepin-movie raise"; - iface.asyncCall("Raise"); + if (toOpenFiles.size() == 1) { + if (!toOpenFiles[0].contains("QProcess")) + iface.asyncCall("openFile", toOpenFiles[0]); + } else { + iface.asyncCall("openFiles", toOpenFiles); } - exit(0); } + + // QDBusInterface iface("com.deepin.movie", "/", "com.deepin.movie"); + if (iface.isValid()) { + qWarning() << "deepin-movie raise"; + iface.asyncCall("Raise"); + } + exit(0); } else { if (clm.isSet("functioncall")) { QTimer::singleShot(2000, [=]() { @@ -362,6 +306,7 @@ int main(int argc, char *argv[]) if (CompositingManager::get().composited()) { dmr::MainWindow mw; Presenter *presenter = new Presenter(&mw); + // mw.setMinimumSize(QSize(1070, 680)); mw.setPresenter(presenter); if (CompositingManager::isPadSystem()) { ///平板模式下全屏显示 @@ -386,6 +331,7 @@ int main(int argc, char *argv[]) } else { dmr::Platform_MainWindow platform_mw; Presenter *presenter = new Presenter(&platform_mw); + // mw.setMinimumSize(QSize(1070, 680)); platform_mw.setPresenter(presenter); if (CompositingManager::isPadSystem()) { ///平板模式下全屏显示 @@ -408,5 +354,13 @@ int main(int argc, char *argv[]) return app->exec(); } + +// if (!toOpenFiles.isEmpty()) { +// if (toOpenFiles.size() == 1) { +// mw.play(toOpenFiles[0]); +// } else { +// mw.playList(toOpenFiles); +// } +// } } diff --git a/src/widgets/platform/platform_animationlabel.cpp b/src/widgets/platform/platform_animationlabel.cpp index 7291fcb38..d0d8bf7d8 100644 --- a/src/widgets/platform/platform_animationlabel.cpp +++ b/src/widgets/platform/platform_animationlabel.cpp @@ -15,6 +15,8 @@ #include "platform_animationlabel.h" #include "mainwindow.h" +#include +#include #define ANIMATION_TIME 250 ///动画时长 #define DELAY_TIME 2000 ///显示动画与隐藏动画间隔 @@ -52,6 +54,7 @@ void Platform_AnimationLabel::pauseAnimation() setFixedSize(200, 200); else setFixedSize(100, 100); + if(!isShowPopup()) return; m_pPlayAnimationGroup->start(); if(!isVisible()) { show(); @@ -70,6 +73,7 @@ void Platform_AnimationLabel::playAnimation() setFixedSize(200, 200); else setFixedSize(100, 100); + if(!isShowPopup()) return; m_pPauseAnimationGroup->start(); if(!isVisible()) { show(); @@ -171,6 +175,52 @@ void Platform_AnimationLabel::setGeometryByMainWindow(QWidget *pMainWindow) } } +bool Platform_AnimationLabel::isShowPopup() +{ + QList currentApplicationWindowList; + const QWindowList &list = qApp->allWindows(); + + currentApplicationWindowList.reserve(list.size()); + + for (auto window : list) { + if (window->property("_q_foreignWinId").isValid()) { + continue; + } + if(window->isVisible()) { + currentApplicationWindowList.append(window->winId()); + } + } + + QVector wmClientList = DWindowManagerHelper::instance()->currentWorkspaceWindowIdList(); + + bool currentWindow = false; + for (WId wid : wmClientList) { + if (currentApplicationWindowList.contains(wid)){ + currentWindow = true; + continue; + } + if (false == currentWindow){ + continue; + } + if (DForeignWindow *w = DForeignWindow::fromWinId(wid)) { + if(m_pMainWindow) { + QRect rect = m_pMainWindow->rect(); + int nWidth = width(), nHeight = height(); + QPoint pt = m_pMainWindow->mapToGlobal(rect.center())- QPoint(nWidth/2, nHeight/2); + QRect msgRect(pt.x(), pt.y(), nWidth, nHeight); + QRect wRect = w->geometry(); + if (msgRect.x() < wRect.x() + wRect.width() && + msgRect.x() + msgRect.width() > wRect.x() && + msgRect.y() < wRect.y() + wRect.height() && + msgRect.y() + msgRect.height() > wRect.y()) { + return false; // 重叠 + } + } + } + } + return true; +} + /** * @brief 具体实现播放动画的每一帧图像显示 * @param 当前显示图像的序号 diff --git a/src/widgets/platform/platform_animationlabel.h b/src/widgets/platform/platform_animationlabel.h index e30053a0a..f77b5e282 100644 --- a/src/widgets/platform/platform_animationlabel.h +++ b/src/widgets/platform/platform_animationlabel.h @@ -62,6 +62,11 @@ class Platform_AnimationLabel : public QFrame * @param pMainWindow 主窗口 */ void setGeometryByMainWindow(QWidget *pMainWindow); + /** + * @brief 根据覆盖区域是否显示此窗口 + * @return true为显示 + */ + bool isShowPopup(); public slots: /** diff --git a/src/widgets/platform/platform_volumeslider.cpp b/src/widgets/platform/platform_volumeslider.cpp index 8a9fc8161..296178259 100644 --- a/src/widgets/platform/platform_volumeslider.cpp +++ b/src/widgets/platform/platform_volumeslider.cpp @@ -82,7 +82,7 @@ Platform_VolumeSlider::Platform_VolumeSlider(Platform_MainWindow *mw, QWidget *p void Platform_VolumeSlider::initVolume() { - QTimer::singleShot(500, this, [ = ] { //延迟加载等待信号槽连接 + QTimer::singleShot(50, this, [ = ] { //延迟加载等待信号槽连接 int nVolume = Settings::get().internalOption("global_volume").toInt(); bool bMute = Settings::get().internalOption("mute").toBool(); @@ -125,6 +125,10 @@ QString Platform_VolumeSlider::readSinkInputPath() void Platform_VolumeSlider::setMute(bool muted) { + if (m_bIsMute != muted || m_nVolume == 0) { + return; + } + QString sinkInputPath = readSinkInputPath(); if (!sinkInputPath.isEmpty()) { diff --git a/src/widgets/toolbutton.h b/src/widgets/toolbutton.h index 2a208af73..7369dbf3c 100644 --- a/src/widgets/toolbutton.h +++ b/src/widgets/toolbutton.h @@ -21,7 +21,6 @@ #include #include #include -#include DWIDGET_USE_NAMESPACE diff --git a/src/widgets/volumeslider.cpp b/src/widgets/volumeslider.cpp index df70e0b19..7a7dd12fd 100644 --- a/src/widgets/volumeslider.cpp +++ b/src/widgets/volumeslider.cpp @@ -79,7 +79,7 @@ VolumeSlider::VolumeSlider(MainWindow *mw, QWidget *parent) void VolumeSlider::initVolume() { - QTimer::singleShot(1500, this, [ = ] { //延迟加载等待信号槽连接 + QTimer::singleShot(50, this, [ = ] { //延迟加载等待信号槽连接 int nVolume = Settings::get().internalOption("global_volume").toInt(); bool bMute = Settings::get().internalOption("mute").toBool(); diff --git a/translations/deepin-movie.ts b/translations/deepin-movie.ts index ab914019c..2aa015198 100644 --- a/translations/deepin-movie.ts +++ b/translations/deepin-movie.ts @@ -43,17 +43,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -323,61 +323,32 @@ Please do not exit the Movie app during the process. Software decoding - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder You don't have permission to operate this folder - - + + OK OK - - + + Invalid folder Invalid folder - - + + Open folder Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Network disconnected @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Load successfully - - - - + + + + Load failed Load failed - - + + Cannot play the disc Cannot play the disc - - + + Parse failed Parse failed - + Open folder Open folder - - - - - - - + + + + + + + Speed: %1x Speed: %1x - + Stereo Stereo - + Left channel Left channel - + Right channel Right channel - + Track: %1 Track: %1 - - + + Unable to adjust the subtitle Unable to adjust the subtitle - - + + Subtitle %1: %2s Subtitle %1: %2s - - + + delayed delayed - - + + advanced advanced - + View View - + Film screenshot Film screenshot - + Saved to Saved to - - + + The screenshot is saved The screenshot is saved - - + + Failed to save the screenshot Failed to save the screenshot - + Taking the screenshots, please wait... Taking the screenshots, please wait... - - - Cancel - Cancel - - - - - Restart - - - - + Reading DVD files... Reading DVD files... - + Invalid file: %1 Invalid file: %1 - + Miracast disconnected Miracast disconnected - + No matching online subtitles No matching online subtitles - - + + All (*) All (*) - + 4K video may be stuck 4K video may be stuck - + OK OK - - + + Order play Order play - - + + Shuffle play Shuffle play - - + + Single play Single play - - + + Single loop Single loop - - + + List loop List loop - + Buffering... Buffering... - - + + Mute Mute - - + + Volume: %1% Volume: %1% - - + + Cannot open file or stream Cannot open file or stream - + The action is not supported in this video The action is not supported in this video - + Connection failed Connection failed - - + + Invalid file Invalid file - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Please insert a CD/DVD - + No video file found No video file found - + Please load the video first Please load the video first - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected The CD/DVD has been ejected @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Internal @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Load successfully - - - - + + + + Load failed Load failed - - + + Cannot play the disc Cannot play the disc - - + + Parse failed Parse failed - + Open folder Open folder - - + + All (*) All (*) - - - - - - - + + + + + + + Speed: %1x Speed: %1x - + Stereo Stereo - + Left channel Left channel - + Right channel Right channel - + Track: %1 Track: %1 - - + + Unable to adjust the subtitle Unable to adjust the subtitle - - + + Subtitle %1: %2s Subtitle %1: %2s - - + + delayed delayed - - + + advanced advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View View - + Film screenshot Film screenshot - + Saved to Saved to - - + + The screenshot is saved The screenshot is saved - - + + Failed to save the screenshot Failed to save the screenshot - + Taking the screenshots, please wait... Taking the screenshots, please wait... - - - Cancel - Cancel - - - - - Restart - - - - + Reading DVD files... Reading DVD files... - + No matching online subtitles No matching online subtitles - + 4K video may be stuck 4K video may be stuck - + OK OK - - + + Order play Order play - - + + Shuffle play Shuffle play - - + + Single play Single play - - + + Single loop Single loop - - + + List loop List loop - + Buffering... Buffering... - - + + Mute Mute - - + + Volume: %1% Volume: %1% - + Cannot open file or stream Cannot open file or stream - - + + Invalid file Invalid file - + Please insert a CD/DVD Please insert a CD/DVD - + No video file found No video file found - + Please load the video first Please load the video first - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected The CD/DVD has been ejected - + The action is not supported in this video The action is not supported in this video - + Invalid file: %1 Invalid file: %1 - + Connection failed Connection failed - + Miracast disconnected Miracast disconnected @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Order play - + Shuffle play Shuffle play - + Single play Single play - + Single loop Single loop - + List loop List loop - + Auto Auto - + Open Open - + Close Close - + %1/Movie%2(%3).jpg %1/Movie%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Play/Pause - - + + Previous Previous - - + + Next Next - - - - + + + + Fullscreen Fullscreen - - + + Playlist Playlist - - + + Miracast Miracast - - + + Exit fullscreen Exit fullscreen - - + + Pause Pause - - - + + + Play Play - + Volume diff --git a/translations/deepin-movie_af.ts b/translations/deepin-movie_af.ts index a4386ff96..c9f3c9c74 100644 --- a/translations/deepin-movie_af.ts +++ b/translations/deepin-movie_af.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute Demp - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - Kanselleer - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - Kanselleer - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute Demp - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play - - + + Previous Vorige - - + + Next Volgende - - + + Playlist - - - - + + + + Fullscreen Volskerm - + Volume - + Play/Pause Speel/Pouse - - + + Miracast - - + + Exit fullscreen - - + + Pause Pouse diff --git a/translations/deepin-movie_am_ET.ts b/translations/deepin-movie_am_ET.ts index 4a73f3432..eb01702e5 100644 --- a/translations/deepin-movie_am_ET.ts +++ b/translations/deepin-movie_am_ET.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder ዋጋ የሌለው ፎልደር - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder እርስዎ ይህን ፎልደር ለ መጠቀም በቂ ፍቃድ የለዎትም @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully ተሳክቶ ተጭኗል - - - - + + + + Load failed መጫን አልተቻለም - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Buffering... - + Open folder - + Stereo ስቴሪዮ - + Left channel የ ግራ ጣቢያ - + Right channel የ ቀኝ ጣቢያ - - + + Parse failed - - + + Mute መቀነሻ - - + + Volume: %1% መጠን: %1 - + Track: %1 - - + + Subtitle %1: %2s ንዑስ አርእስት %1: %2s - - + + delayed ዘግይቷል - - + + advanced የረቀቀ - - - - - - - + + + + + + + Speed: %1x ፍጥነት: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View መመልከቻ - + Film screenshot የ ፊልም መመልከቻ ፎቶ ማንሻ - + Taking the screenshots, please wait... - - - Cancel - መሰረዣ - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Saved to ተቀምጧል ወደ - - + + The screenshot is saved የ መመልከቻው ፎቶ ተቀምጧል - - + + Failed to save the screenshot - + Invalid file: %1 ዋጋ የሌለው ፋይል: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully ተሳክቶ ተጭኗል - - - - + + + + Load failed መጫን አልተቻለም - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x ፍጥነት: %1x - + Stereo ስቴሪዮ - + Left channel የ ግራ ጣቢያ - + Right channel የ ቀኝ ጣቢያ - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s ንዑስ አርእስት %1: %2s - - + + delayed ዘግይቷል - - + + advanced የረቀቀ - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View መመልከቻ - + Film screenshot የ ፊልም መመልከቻ ፎቶ ማንሻ - + Saved to ተቀምጧል ወደ - - + + The screenshot is saved የ መመልከቻው ፎቶ ተቀምጧል - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - መሰረዣ - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute መቀነሻ - - + + Volume: %1% መጠን: %1 - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 ዋጋ የሌለው ፋይል: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play ማጫወቻ - - + + Previous ቀደም ያለው - - + + Next ይቀጥሉ - - + + Playlist የማጫወቻ ዝርዝር - - - - + + + + Fullscreen በሙሉ መመልከቻ ዘዴ - + Volume - + Play/Pause ማጫወቻ/ማስቆሚያ - - + + Miracast - - + + Exit fullscreen ከ ሙሉ መመልከቻው ዘዴ መውጫ - - + + Pause ማስቆሚያ diff --git a/translations/deepin-movie_ar.ts b/translations/deepin-movie_ar.ts index a7291b431..713a32b47 100644 --- a/translations/deepin-movie_ar.ts +++ b/translations/deepin-movie_ar.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie الأفلام - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. فلم: مشغل فيديوهات مليء بالمزايا، ويدم تشغيل الوسائط المحلية ووسائط البث بالعديد مع صيغ الفيديو المتنوعة. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. فك ترميز السوفتوير - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder ليس لديك إذن لتنفيذ عملية في هذا المجلد - - + + OK موافق - - + + Invalid folder مجلد غير صالح - - + + Open folder فتح مجلد - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected الشبكة غير متصلة @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully تم التحميل بنجاح - - - - + + + + Load failed فشل التحميل - - + + Cannot play the disc لايمكن تشغيل هذا القرص - - + + Parse failed فشل التحليل - + Open folder فتح مجلد - - - - - - - + + + + + + + Speed: %1x السرعة: %1x - + Stereo استريو - + Left channel القناة اليسرى - + Right channel القناة اليمنى - + Track: %1 المسار %1 - - + + Unable to adjust the subtitle لايمكن علي تعديل الترجمة المنفصلة - - + + Subtitle %1: %2s ترجمة %1 : %2s - - + + delayed مؤخر - - + + advanced متقدم - + View عرض - + Film screenshot لقطة شاشة للفلم - + Saved to حفظ في - - + + The screenshot is saved تم حفظ لقطة الشاشة - - + + Failed to save the screenshot فشل في حفظ التقاط الشاشة - + Taking the screenshots, please wait... جارٍ التقاط لقطات الشاشة ، يرجى الانتظار ... - - - Cancel - إلغاء - - - - - Restart - - - - + Reading DVD files... جاري قراءة ملفات الـ DVD - + Invalid file: %1 ملف غير صالح : %1 - + Miracast disconnected - + No matching online subtitles لم يتم إيجاد ترجمات متطابقة على الإنترنت - - + + All (*) الكل(*) - + 4K video may be stuck فيديو الـ 4K قد يكون معلّق - + OK موافق - - + + Order play طلبات التشغيل - - + + Shuffle play خلط التشغيل - - + + Single play تشغيل مفرد - - + + Single loop تكرار مفرد - - + + List loop تكرار القائمة - + Buffering... تدفق ... - - + + Mute صامت - - + + Volume: %1% الصوت: %1% - - + + Cannot open file or stream لا يمكن فتح الملف أو البث - + The action is not supported in this video الإجراء غير مدعوم في هذا الفيديو - + Connection failed - - + + Invalid file ملف غير صالح - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) الترجمة (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD يرجى إدخال CD/DVD - + No video file found لم يتم العثور على أي فيديو - + Please load the video first يرجى تحميل الفيديو أولاً - - + + Please exit smart dock الرجاء اغلاق المزامنة - + The CD/DVD has been ejected تم إخراج CD/DVD @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal داخلي @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully تم التحميل بنجاح - - - - + + + + Load failed فشل التحميل - - + + Cannot play the disc لايمكن تشغيل هذا القرص - - + + Parse failed فشل التحليل - + Open folder فتح مجلد - - + + All (*) الكل(*) - - - - - - - + + + + + + + Speed: %1x السرعة: %1x - + Stereo استريو - + Left channel القناة اليسرى - + Right channel القناة اليمنى - + Track: %1 المسار %1 - - + + Unable to adjust the subtitle لايمكن علي تعديل الترجمة المنفصلة - - + + Subtitle %1: %2s ترجمة %1 : %2s - - + + delayed مؤخر - - + + advanced متقدم - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) الترجمة (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View عرض - + Film screenshot لقطة شاشة للفلم - + Saved to حفظ في - - + + The screenshot is saved تم حفظ لقطة الشاشة - - + + Failed to save the screenshot فشل في حفظ التقاط الشاشة - + Taking the screenshots, please wait... جارٍ التقاط لقطات الشاشة ، يرجى الانتظار ... - - - Cancel - إلغاء - - - - - Restart - - - - + Reading DVD files... جاري قراءة ملفات الـ DVD - + No matching online subtitles لم يتم إيجاد ترجمات متطابقة على الإنترنت - + 4K video may be stuck فيديو الـ 4K قد يكون معلّق - + OK موافق - - + + Order play طلبات التشغيل - - + + Shuffle play خلط التشغيل - - + + Single play تشغيل مفرد - - + + Single loop تكرار مفرد - - + + List loop تكرار القائمة - + Buffering... تدفق ... - - + + Mute صامت - - + + Volume: %1% الصوت: %1% - + Cannot open file or stream لا يمكن فتح الملف أو البث - - + + Invalid file ملف غير صالح - + Please insert a CD/DVD يرجى إدخال CD/DVD - + No video file found لم يتم العثور على أي فيديو - + Please load the video first يرجى تحميل الفيديو أولاً - - + + Please exit smart dock الرجاء اغلاق المزامنة - + The CD/DVD has been ejected تم إخراج CD/DVD - + The action is not supported in this video الإجراء غير مدعوم في هذا الفيديو - + Invalid file: %1 ملف غير صالح : %1 - + Connection failed - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play طلبات التشغيل - + Shuffle play خلط التشغيل - + Single play تشغيل مفرد - + Single loop تكرار مفرد - + List loop تكرار القائمة - + Auto تلقائي - + Open فتح - + Close إغلاق - + %1/Movie%2(%3).jpg %1/فلم%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause تشغيل/إيقاف مؤقت - - + + Previous السابق - - + + Next التالي - - - - + + + + Fullscreen ملء الشاشة - - + + Playlist قائمة التشغيل - - + + Miracast - - + + Exit fullscreen خروج من ملء الشاشة - - + + Pause إيقاف مؤقت - - - + + + Play تشغيل - + Volume الصوت diff --git a/translations/deepin-movie_ast.ts b/translations/deepin-movie_ast.ts index b9f2020a2..97c347625 100644 --- a/translations/deepin-movie_ast.ts +++ b/translations/deepin-movie_ast.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder La carpeta nun ye válida - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder Nun tienes permisu pa operar nesta carpeta @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + All (*) - + Buffering... - + Open folder - + Stereo Estereu - + Left channel Canal esquierda - + Right channel Canal drecha - - + + Parse failed - - + + Mute Silenciar - - + + Volume: %1% Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x Velocidá: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View Ver - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - Encaboxar - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to Guardóse en - - + + The screenshot is saved Guardóse la captura de pantalla - - + + Failed to save the screenshot - + Invalid file: %1 Ficheru non válidu: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x Velocidá: %1x - + Stereo Estereu - + Left channel Canal esquierda - + Right channel Canal drecha - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View Ver - + Film screenshot - + Saved to Guardóse en - - + + The screenshot is saved Guardóse la captura de pantalla - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - Encaboxar - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute Silenciar - - + + Volume: %1% Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 Ficheru non válidu: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play Reproducir - - + + Previous Previo - - + + Next Siguiente - - + + Playlist Llista de reproducción - - - - + + + + Fullscreen Panatalla completa - + Volume - + Play/Pause Reproducir/Posar - - + + Miracast - - + + Exit fullscreen Colar de pantalla completa - - + + Pause Posar diff --git a/translations/deepin-movie_az.ts b/translations/deepin-movie_az.ts index 6caff5316..20659fdc6 100644 --- a/translations/deepin-movie_az.ts +++ b/translations/deepin-movie_az.ts @@ -43,17 +43,17 @@ Bu əməliyyat zamanı lütfən Kino tətbiqini bağlamayın. QObject - - + + - + Movie Kinoteatr - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Kinoteatr, bir çox video formatlarında yerli və şəbəkə üzərindəki media fayllarının oxunmasını dəstəkləyən, tam funksiyalı video pleyerdir. @@ -323,61 +323,32 @@ Bu əməliyyat zamanı lütfən Kino tətbiqini bağlamayın. Pr. Təminatının şifrəsinin aşılması - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Bu qovluqla işləmək üçün icazəniz yoxdur - - + + OK OK - - + + Invalid folder Səhv qovluq - - + + Open folder Qovluğu aç - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Şəbəkə bağlantısı kəsildi @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Uğurla yükləndi - - - - + + + + Load failed Yüklənə bilmədi - - + + Cannot play the disc Disk oxunmur - - + + Parse failed Təhlil alınmadı - + Open folder Qovluğu aç - - - - - - - + + + + + + + Speed: %1x Sürət: %1x - + Stereo Stereo - + Left channel Sol kanal - + Right channel Sağ kanal - + Track: %1 Cığır: %1 - - + + Unable to adjust the subtitle Alt yazını tənzimləmək mümkün deyil - - + + Subtitle %1: %2s Alt yazı %1: %2 - - + + delayed gecikmə - - + + advanced təkmilləşdirilmiş - + View Baxış - + Film screenshot Filmin ekran şəkli - + Saved to Burada saxlamaq - - + + The screenshot is saved Ekran şəkli saxlanıldı - - + + Failed to save the screenshot Ekran şəkli saxlanıla bilmədi - + Taking the screenshots, please wait... Ekran şəkli çəkilir, lütfən, gözləyin... - - - Cancel - İmtina - - - - - Restart - - - - + Reading DVD files... DVD fayllar oxunur... - + Invalid file: %1 Xətalı fayl: %1 - + Miracast disconnected Miracast ayrıldı - + No matching online subtitles Onlayn alt yazılar uyğun deyil - - + + All (*) Hamısı (*) - + 4K video may be stuck 4K video dona bilər - + OK OK - - + + Order play Oynatma sırası - - + + Shuffle play Qarışıq - - + + Single play Tək - - + + Single loop Birini təkrar - - + + List loop Siyahını təkrar - + Buffering... Yedəklənir... - - + + Mute Səssiz - - + + Volume: %1% Səs səviyyəsi: %1 - - + + Cannot open file or stream Faylı və ya yayımı açmaq olmur - + The action is not supported in this video Əməl bu videoda dəstəklənmir - + Connection failed Qoşulma alınmadı - - + + Invalid file Etibarsız fayl - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Alt yazı (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD CD/DVD daxil edin - + No video file found Video faylı tapılmadı - + Please load the video first Öncə videonu yükləyin - - + + Please exit smart dock Lütfən ağıllı dok'dan çıxın - + The CD/DVD has been ejected CD/DVD çıxarıldı @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Daxili @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Uğurla yükləndi - - - - + + + + Load failed Yüklənə bilmədi - - + + Cannot play the disc Disk oxunmur - - + + Parse failed Təhlil alınmadı - + Open folder Qovluğu aç - - + + All (*) Hamısı (*) - - - - - - - + + + + + + + Speed: %1x Sürət: %1x - + Stereo Stereo - + Left channel Sol kanal - + Right channel Sağ kanal - + Track: %1 Cığır: %1 - - + + Unable to adjust the subtitle Alt yazını tənzimləmək mümkün deyil - - + + Subtitle %1: %2s Alt yazı %1: %2 - - + + delayed gecikmə - - + + advanced təkmilləşdirilmiş - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Alt yazı (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Baxış - + Film screenshot Filmin ekran şəkli - + Saved to Burada saxlamaq - - + + The screenshot is saved Ekran şəkli saxlanıldı - - + + Failed to save the screenshot Ekran şəkli saxlanıla bilmədi - + Taking the screenshots, please wait... Ekran şəkli çəkilir, lütfən, gözləyin... - - - Cancel - İmtina - - - - - Restart - - - - + Reading DVD files... DVD fayllar oxunur... - + No matching online subtitles Onlayn alt yazılar uyğun deyil - + 4K video may be stuck 4K video dona bilər - + OK OK - - + + Order play Oynatma sırası - - + + Shuffle play Qarışıq - - + + Single play Tək - - + + Single loop Birini təkrar - - + + List loop Siyahını təkrar - + Buffering... Yedəklənir... - - + + Mute Səssiz - - + + Volume: %1% Səs səviyyəsi: %1 - + Cannot open file or stream Faylı və ya yayımı açmaq olmur - - + + Invalid file Etibarsız fayl - + Please insert a CD/DVD CD/DVD daxil edin - + No video file found Video faylı tapılmadı - + Please load the video first Öncə videonu yükləyin - - + + Please exit smart dock Lütfən ağıllı dok'dan çıxın - + The CD/DVD has been ejected CD/DVD çıxarıldı - + The action is not supported in this video Əməl bu videoda dəstəklənmir - + Invalid file: %1 Xətalı fayl: %1 - + Connection failed Qoşulma alınmadı - + Miracast disconnected Miracast ayrıldı @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Oynatma sırası - + Shuffle play Qarışıq - + Single play Tək - + Single loop Birini təkrarlamaq - + List loop Siyahını təkrar - + Auto Avtomatik - + Open - + Close Bağlayın - + %1/Movie%2(%3).jpg %1/Film%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Oxut/Fasilə - - + + Previous Əvvəlki - - + + Next Sonrakı - - - - + + + + Fullscreen Tam ekran - - + + Playlist Oxunma siyahısı - - + + Miracast Miracast - - + + Exit fullscreen Tam ekrandan çıx - - + + Pause Dayandır - - - + + + Play Oxut - + Volume Səs səviyyəsi diff --git a/translations/deepin-movie_bg.ts b/translations/deepin-movie_bg.ts index 23d10d3fe..3e39b1c0f 100644 --- a/translations/deepin-movie_bg.ts +++ b/translations/deepin-movie_bg.ts @@ -270,27 +270,6 @@ Please do not exit the Movie app during the process. Software decoding - - Customize - - - - Decode mode - - - - Video out - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - Rendering engine - - UrlDialog @@ -704,14 +683,6 @@ and whether to restart it? Miracast disconnected - - Cancel - Отказ - - - Restart - - dmr::MovieInfo @@ -1021,14 +992,6 @@ and whether to restart it? Miracast disconnected - - Cancel - Отказ - - - Restart - - dmr::Platform_PlayItemWidget diff --git a/translations/deepin-movie_bn.ts b/translations/deepin-movie_bn.ts index 67c27ab62..5874a0f57 100644 --- a/translations/deepin-movie_bn.ts +++ b/translations/deepin-movie_bn.ts @@ -270,27 +270,6 @@ Please do not exit the Movie app during the process. Software decoding - - Customize - - - - Decode mode - - - - Video out - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - Rendering engine - - UrlDialog @@ -704,14 +683,6 @@ and whether to restart it? Miracast disconnected - - Cancel - বাতিল - - - Restart - - dmr::MovieInfo @@ -1021,14 +992,6 @@ and whether to restart it? Miracast disconnected - - Cancel - বাতিল - - - Restart - - dmr::Platform_PlayItemWidget diff --git a/translations/deepin-movie_bo.ts b/translations/deepin-movie_bo.ts index b94f75097..889a5ff40 100644 --- a/translations/deepin-movie_bo.ts +++ b/translations/deepin-movie_bo.ts @@ -6,19 +6,18 @@ Exit Miracast - ཕྱིར་འཐེན་ཡོལ་བ། + Projecting... Please do not exit the Movie app during the process. - གྲིབ་གཟུགས་འཕེན་པ། -བརྒྱུད་རིམ་འདིའི་ཁྲོད་དུ་གློག་བརྙན་བཀོལ་སྤྱོད་ཀྱི་གོ་རིམ་ལས་ཕྱིར་འབུད་མི་རུང།。 + Display device - སྒྲིག་ཆས་མངོན་པ། + @@ -26,34 +25,34 @@ Please do not exit the Movie app during the process. Project to - རྣམ་གྲངས་ཐོན་པ། + Searching for devices... - འཚོལ་ཞིབ་སྒྲིག་ཆས་འཚོལ་ཞིབ་བྱེད་བཞིན་ཡོད།... + No Miracast display devices were found. Please connect the device and your computer to the same WLAN network. - Mirrasttstst སྒྲིག་ཆས་དང་རྩིས་འཁོར་གཉིས་WLANདྲ་རྒྱ་གཅིག་ཏུ་སྦྲེལ་རོགས། + QObject - - + + - + Movie གློག་བརྙན་ཁང་། - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. གློག་བརྙན་ཁང་ནི་བརྙན་ཟློས་རྣམ་བཞག་མང་པོ་རང་གནས་སུ་གཏོང་བ་དང་རྒྱུན་སྨྱན་སྦྱོར་གྱིས་གཏོང་བར་རྒྱབ་སྐྱོར་བྱེད་པའི་བརྙན་ཟློས་གཏོང་ཆས་ཞིག་རེད། @@ -323,62 +322,32 @@ Please do not exit the Movie app during the process. མཉེན་ཆས་གསང་སྒྲོལ། - - Customize - རང་ཉིད་མཚན་ཉིད་འཇོག་པ། - - - - Decode mode - མ་དཔེ་འགྲེལ་སྟངས། - - - - Video out - བརྙན་ལམ་ཕྱིར་གཏོང་། - - - - Rendering engine - སྒུལ་བྱེད་འཕྲུལ་འཁོར་ལ་ཚོས་རྒྱག་དགོས། - - - - + + You don't have permission to operate this folder ཡིག་ཁུག་འདིར་བཀོལ་སྤྱོད་བྱེད་དབང་མེད། - - + + OK གཏན་ཁེལ། - - + + Invalid folder ཡིག་ཁུག་འདི་གོ་མི་ཆོད། - - + + Open folder ཡིག་ཁུག་ཁ་ཕྱེ། - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - མཚན་ཉིད་འཇོག་པའི་ཨང་སྒྲིག་བྱེད་ཐབས་ལ་བསྐྱར་དུ་སྒོ་འབྱེད་དགོས་ན་གཞི་ནས་ནུས་པ་འཐོན་ -དེ་བཞིན་བསྐྱར་དུ་འགོ་ཚུགས་པ་ཡིན་ནམ། - - - - + + Network disconnected དྲ་བ་བཅད་ཟིན། @@ -717,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully ཡིག་བརྙན་འཇུག་ཐུབ་སོང་། - - - - + + + + Load failed ཡིག་བརྙན་འཇུག་ཐུབ་མ་སོང་། - - + + Cannot play the disc སྡུད་སྡེར་གྱི་ནང་དོན་གཏོང་ཐབས་བྲལ། - - + + Parse failed དབྱེ་ཞིབ་བྱེད་མི་ཐུབ། - + Open folder ཡིག་ཁུག་ཁ་ཕྱེ། - - - - - - - + + + + + + + Speed: %1x གཏོང་ཚད། ལྡབ། %1 - + Stereo ལངས་གཟུགས་སྒྲ། - + Left channel གཡོན་གྱི་སྒྲ་ལམ། - + Right channel གཡས་ཀྱི་སྒྲ་ལམ། - + Track: %1 སྒྲ་ལམ། %1 - - + + Unable to adjust the subtitle ད་ལྟའི་ཡི་གེ་སྙོམ་སྒྲིག་བྱེད་ཐབས་མེད། - - + + Subtitle %1: %2s ཡིག་བརྙན། %1 སྐར་ཆ། %2 - - + + delayed ཕྱིར་སྣུར། - - + + advanced སྔ་སྣུར། - + View ལྟ་བཤེར། - + Film screenshot གློག་བརྙན་པར་རིས་གཏུབ་ལེན། - + Saved to ལ་ཉར་བ། - - + + The screenshot is saved གཏུབ་པའི་བརྙན་ཡོལ་ཉར་ཟིན། - - + + Failed to save the screenshot གཏུབ་པའི་བརྙན་ཡོལ་ཉར་མི་ཐུབ། - + Taking the screenshots, please wait... བརྙན་ཡོལ་གཏུབ་ལེན་བྱེད་བཞིན་པས། ཏོག་ཙམ་སྒུག་རོགས། - - - Cancel - མེད་པར་བཟོ་དགོས། - - - - - Restart - བསྐྱར་དུ་འགོ་འཛུགས་དགོས། - - - + Reading DVD files... འོད་སྡེར་ཡིག་ཆ་ཀློག་འདོན་བྱེད་བཞིན་པ། - + Invalid file: %1 ཕན་མེད་ཡིག་ཆ། %1 - + Miracast disconnected - + No matching online subtitles སྙོམ་འགྲིག་ཡིན་པའི་དྲ་ཐོག་ཡིག་བརྙན་མིན་འདུག - - + + All (*) ཚང་མ་ (*) - + 4K video may be stuck 4Kབརྙན་ཟློས་གཏོང་སྐབས་མཚམས་ཆད་བྱེད་སྲིད། - + OK གཏན་ཁེལ། - - + + Order play གོ་རིམ་ལྟར་གཏོང་བ། - - + + Shuffle play སྐབས་བསྟུན་གཏོང་བ། - - + + Single play ཁེར་རྐྱང་གཏོང་བ། - - + + Single loop གཞས་གཅིག་རྒྱུན་འཁོར། - - + + List loop རེའུ་མིག་རྒྱུན་འཁོར། - + Buffering... བར་ཆོད་བྱེད་བཞིན་པ། - - + + Mute སྒྲ་མེད། - - + + Volume: %1% སྐད་ཤུགས། %1% - - + + Cannot open file or stream ཡིག་ཆའམ་རྒྱུན་ཁ་ཕྱེ་ཐབས་མེད། - + The action is not supported in this video ད་ལྟའི་བརྙན་འཕྲིན་འོག་ནུས་པ་དེར་རྒྱབ་སྐྱོར་མེད། - + Connection failed འབྲེལ་མཐུད་བྱེད་མ་ཐུབ། - - + + Invalid file ཕན་མེད་ཡིག་ཆ། - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) ཡིག་བརྙན་ཡིག་ཆ། (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD CD/DVDབླུགས་རོགས། - + No video file found བརྙན་ཟློས་ཡིག་ཆ་མེད། - + Please load the video first སྔོན་ལ་གློག་བརྙན་སྣོན་འཇུག་བྱ་རྒྱུ། - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected CD/DVDའཕར་ཐོན་ཟིན། @@ -1132,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal ནང་ངོས། @@ -1140,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully ཡིག་བརྙན་འཇུག་ཐུབ་སོང་། - - - - + + + + Load failed ཡིག་བརྙན་འཇུག་ཐུབ་མ་སོང་། - - + + Cannot play the disc སྡུད་སྡེར་གྱི་ནང་དོན་གཏོང་ཐབས་བྲལ། - - + + Parse failed དབྱེ་ཞིབ་བྱེད་མི་ཐུབ། - + Open folder ཡིག་ཁུག་ཁ་ཕྱེ། - - + + All (*) ཚང་མ་ (*) - - - - - - - + + + + + + + Speed: %1x གཏོང་ཚད། ལྡབ། %1 - + Stereo ལངས་གཟུགས་སྒྲ། - + Left channel གཡོན་གྱི་སྒྲ་ལམ། - + Right channel གཡས་ཀྱི་སྒྲ་ལམ། - + Track: %1 སྒྲ་ལམ། %1 - - + + Unable to adjust the subtitle ད་ལྟའི་ཡི་གེ་སྙོམ་སྒྲིག་བྱེད་ཐབས་མེད། - - + + Subtitle %1: %2s ཡིག་བརྙན། %1 སྐར་ཆ། %2 - - + + delayed ཕྱིར་སྣུར། - - + + advanced སྔ་སྣུར། - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) ཡིག་བརྙན་ཡིག་ཆ། (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View ལྟ་བཤེར། - + Film screenshot གློག་བརྙན་པར་རིས་གཏུབ་ལེན། - + Saved to ལ་ཉར་བ། - - + + The screenshot is saved གཏུབ་པའི་བརྙན་ཡོལ་ཉར་ཟིན། - - + + Failed to save the screenshot གཏུབ་པའི་བརྙན་ཡོལ་ཉར་མི་ཐུབ། - + Taking the screenshots, please wait... བརྙན་ཡོལ་གཏུབ་ལེན་བྱེད་བཞིན་པས། ཏོག་ཙམ་སྒུག་རོགས། - - - Cancel - མེད་པར་བཟོ་དགོས། - - - - - Restart - བསྐྱར་དུ་འགོ་འཛུགས་དགོས། - - - + Reading DVD files... འོད་སྡེར་ཡིག་ཆ་ཀློག་འདོན་བྱེད་བཞིན་པ། - + No matching online subtitles སྙོམ་འགྲིག་ཡིན་པའི་དྲ་ཐོག་ཡིག་བརྙན་མིན་འདུག - + 4K video may be stuck 4Kབརྙན་ཟློས་གཏོང་སྐབས་མཚམས་ཆད་བྱེད་སྲིད། - + OK གཏན་ཁེལ། - - + + Order play གོ་རིམ་ལྟར་གཏོང་བ། - - + + Shuffle play སྐབས་བསྟུན་གཏོང་བ། - - + + Single play ཁེར་རྐྱང་གཏོང་བ། - - + + Single loop གཞས་གཅིག་རྒྱུན་འཁོར། - - + + List loop རེའུ་མིག་རྒྱུན་འཁོར། - + Buffering... བར་ཆོད་བྱེད་བཞིན་པ། - - + + Mute སྒྲ་མེད། - - + + Volume: %1% སྐད་ཤུགས། %1% - + Cannot open file or stream ཡིག་ཆའམ་རྒྱུན་ཁ་ཕྱེ་ཐབས་མེད། - - + + Invalid file ཕན་མེད་ཡིག་ཆ། - + Please insert a CD/DVD CD/DVDབླུགས་རོགས། - + No video file found བརྙན་ཟློས་ཡིག་ཆ་མེད། - + Please load the video first སྔོན་ལ་གློག་བརྙན་སྣོན་འཇུག་བྱ་རྒྱུ། - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected CD/DVDའཕར་ཐོན་ཟིན། - + The action is not supported in this video ད་ལྟའི་བརྙན་འཕྲིན་འོག་ནུས་པ་དེར་རྒྱབ་སྐྱོར་མེད། - + Invalid file: %1 ཕན་མེད་ཡིག་ཆ། %1 - + Connection failed འབྲེལ་མཐུད་བྱེད་མ་ཐུབ། - + Miracast disconnected @@ -1472,7 +1417,7 @@ and whether to restart it? Miracast - སྨི་ལ་ཁ་སི་ཐེ། + @@ -1525,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play གོ་རིམ་ལྟར་གཏོང་བ། - + Shuffle play སྐབས་བསྟུན་གཏོང་བ། - + Single play ཁེར་རྐྱང་གཏོང་བ། - + Single loop གཞས་གཅིག་རྒྱུན་འཁོར། - + List loop རེའུ་མིག་རྒྱུན་འཁོར། - + Auto རང་འགུལ། - + Open ཁ་ཕྱེ་བ། - + Close ཁ་རྒྱག - + %1/Movie%2(%3).jpg %1/གློག་བརྙན།%2(%3).jpg @@ -1573,65 +1518,65 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause གཏོང་བ།/སྐབས་སྡོད། - - + + Previous སྔོན་མ། - - + + Next རྗེས་མ། - - - - + + + + Fullscreen ཡོལ་གང་། - - + + Playlist གཏོང་བའི་རེའུ་མིག - - + + Miracast - སྨི་ལ་ཁ་སི་ཐེ། + - - + + Exit fullscreen ཡོལ་གང་ལས་ཕྱིར་འཐེན་པ། - - + + Pause སྐབས་སྡོད། - - - + + + Play གཏོང་བ། - + Volume - རྒྱུགས་ཤོག + @@ -1639,7 +1584,7 @@ and whether to restart it? Volume - རྒྱུགས་ཤོག + diff --git a/translations/deepin-movie_br.ts b/translations/deepin-movie_br.ts index b2c769148..8e7c30efa 100644 --- a/translations/deepin-movie_br.ts +++ b/translations/deepin-movie_br.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Video - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Movie a zo ul lenner video klok, hag a c'hall lenn ar mediaoù lec'hel hag e streaming e meur a furmad video. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder N'ho peus ket an aotre d'ober tra-pe-dra war an doser-mañ - - + + OK Mat eo - - + + Invalid folder Doser direizh - - + + Open folder Digeriñ un doser - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Rouedad digevreet @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Kargadenn gant berzh - - - - + + + + Load failed Kargadenn sac'het - - + + Cannot play the disc - - + + Parse failed C'hwitet ez eus bet war an analizadur - + Open folder Digeriñ un doser - - - - - - - + + + + + + + Speed: %1x Tizh: %1x - + Stereo Stereo - + Left channel Kanol gleiz - + Right channel Kanal zehoù - + Track: %1 Roudenn: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Istitl %1: %2s - - + + delayed daleet - - + + advanced araokaet - + View Gweled - + Film screenshot Tapadenn-skramm ar film - + Saved to Enrollañ e-barzh - - + + The screenshot is saved Tapadenn-skramm enrollet - - + + Failed to save the screenshot C'hwitet ez eus bet war enrolladur an dapadenn-skramm - + Taking the screenshots, please wait... O tapout an tapadennoù-skramm, gortozit mar plij... - - - Cancel - Nullañ - - - - - Restart - - - - + Reading DVD files... O lenn ar restroù DVD... - + Invalid file: %1 Restr direizh: %1 - + Miracast disconnected - + No matching online subtitles N'eus istitl ebet enlinenn hag a genglotfe - - + + All (*) - + 4K video may be stuck Gellout a ra bezañ stanket ar videoioù 4K - + OK Mat eo - - + + Order play Dre urzh - - + + Shuffle play Lenn dre-zegouezh - - + + Single play Lenn eeun - - + + Single loop Lenn e bouklenn - - + + List loop Roll-lenn e bouklenn - + Buffering... Memor skurzer... - - + + Mute Mut - - + + Volume: %1% Live-son: %1 - - + + Cannot open file or stream N'heller ket digeriñ ur restr pe ur froud - + The action is not supported in this video - + Connection failed - - + + Invalid file Restr direizh - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Istitl (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Ensoc'hit ur CD/DVD mar plij - + No video file found N'eus bet kavet restr video ebet - + Please load the video first Kargit ar video da gentañ - - + + Please exit smart dock - + The CD/DVD has been ejected Ar CD/DVD a zo bet strinket-maez @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Diabarzh @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Kargadenn gant berzh - - - - + + + + Load failed Kargadenn sac'het - - + + Cannot play the disc - - + + Parse failed C'hwitet ez eus bet war an analizadur - + Open folder Digeriñ un doser - - + + All (*) - - - - - - - + + + + + + + Speed: %1x Tizh: %1x - + Stereo Stereo - + Left channel Kanol gleiz - + Right channel Kanal zehoù - + Track: %1 Roudenn: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Istitl %1: %2s - - + + delayed daleet - - + + advanced araokaet - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Istitl (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Gweled - + Film screenshot Tapadenn-skramm ar film - + Saved to Enrollañ e-barzh - - + + The screenshot is saved Tapadenn-skramm enrollet - - + + Failed to save the screenshot C'hwitet ez eus bet war enrolladur an dapadenn-skramm - + Taking the screenshots, please wait... O tapout an tapadennoù-skramm, gortozit mar plij... - - - Cancel - Nullañ - - - - - Restart - - - - + Reading DVD files... O lenn ar restroù DVD... - + No matching online subtitles N'eus istitl ebet enlinenn hag a genglotfe - + 4K video may be stuck Gellout a ra bezañ stanket ar videoioù 4K - + OK Mat eo - - + + Order play Dre urzh - - + + Shuffle play Lenn dre-zegouezh - - + + Single play Lenn eeun - - + + Single loop Lenn e bouklenn - - + + List loop Roll-lenn e bouklenn - + Buffering... Memor skurzer... - - + + Mute Mut - - + + Volume: %1% Live-son: %1 - + Cannot open file or stream N'heller ket digeriñ ur restr pe ur froud - - + + Invalid file Restr direizh - + Please insert a CD/DVD Ensoc'hit ur CD/DVD mar plij - + No video file found N'eus bet kavet restr video ebet - + Please load the video first Kargit ar video da gentañ - - + + Please exit smart dock - + The CD/DVD has been ejected Ar CD/DVD a zo bet strinket-maez - + The action is not supported in this video - + Invalid file: %1 Restr direizh: %1 - + Connection failed - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Dre urzh - + Shuffle play Lenn dre-zegouezh - + Single play Lenn eeun - + Single loop Lenn e bouklenn - + List loop Roll-lenn e bouklenn - + Auto - + Open Digeriñ - + Close Serriñ - + %1/Movie%2(%3).jpg %1/Film%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Lenn/Ehanañ - - + + Previous Kent - - + + Next Da-heul - - - - + + + + Fullscreen Skramm-leun - - + + Playlist Roll-lenn - - + + Miracast - - + + Exit fullscreen Kuitaat ar skramm-leun - - + + Pause Ehanet - - - + + + Play Lenn - + Volume diff --git a/translations/deepin-movie_ca.ts b/translations/deepin-movie_ca.ts index 2adec3b8e..7c7531b79 100644 --- a/translations/deepin-movie_ca.ts +++ b/translations/deepin-movie_ca.ts @@ -43,17 +43,17 @@ No sortiu de l'aplicació Pel·lícula durant el procés. QObject - - + + - + Movie Pel·lícula - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Pel·lícula és un reproductor de vídeo que admet reproducció de vídeo local i de transmissió en diversos formats de vídeo. @@ -323,61 +323,32 @@ No sortiu de l'aplicació Pel·lícula durant el procés. Descodificació de programari - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder No teniu permís per usar aquesta carpeta. - - + + OK D'acord - - + + Invalid folder Carpeta no vàlida - - + + Open folder Obre una carpeta - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Xarxa desconnectada @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Càrrega correcta - - - - + + + + Load failed Ha fallat la càrrega. - - + + Cannot play the disc No es pot reproduir el disc. - - + + Parse failed Ha fallat l'anàlisi. - + Open folder Obre una carpeta - - - - - - - + + + + + + + Speed: %1x Velocitat: %1x - + Stereo Estèreo - + Left channel Canal de l'esquerra - + Right channel Canal de la dreta - + Track: %1 Pista: %1 - - + + Unable to adjust the subtitle No es poden ajustar els subtítols. - - + + Subtitle %1: %2s Subtítol %1: %2s - - + + delayed ajornat - - + + advanced avançat - + View Visualització - + Film screenshot Captura de pantalla de la pel·lícula - + Saved to Desada a - - + + The screenshot is saved La captura s'ha desat. - - + + Failed to save the screenshot Ha fallat desar la captura de pantalla. - + Taking the screenshots, please wait... Es fan les captures; espereu, si us plau... - - - Cancel - Cancel·la - - - - - Restart - - - - + Reading DVD files... Es llegeixen els fitxers del DVD... - + Invalid file: %1 Fitxer no vàlid: %1 - + Miracast disconnected Miracast desconnectat - + No matching online subtitles No hi ha subtítols en línia coincidents. - - + + All (*) Tot (*) - + 4K video may be stuck El vídeo de 4K es pot encallar. - + OK D'acord - - + + Order play Reproducció ordenada - - + + Shuffle play Reproducció aleatòria - - + + Single play Reproducció simple - - + + Single loop Repetició simple - - + + List loop Repetició de la llista - + Buffering... S'omple la memòria intermèdia... - - + + Mute Silencia - - + + Volume: %1% Volum: %1% - - + + Cannot open file or stream No es pot obrir el fitxer o la transmissió. - + The action is not supported in this video L'acció no s'admet en aquest vídeo. - + Connection failed Ha fallat la connexió. - - + + Invalid file Fitxer no vàlid - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Subtítols (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Si us plau, inseriu un CD / DVD - + No video file found No s'ha trobat cap fitxer de vídeo. - + Please load the video first Si us plau, carregueu primer el vídeo. - - + + Please exit smart dock Si us plau, sortiu de l'acoblador intel·ligent. - + The CD/DVD has been ejected S'ha expulsat el CD / DVD. @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Intern @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Càrrega correcta - - - - + + + + Load failed Ha fallat la càrrega. - - + + Cannot play the disc No es pot reproduir el disc. - - + + Parse failed Ha fallat l'anàlisi. - + Open folder Obre una carpeta - - + + All (*) Tot (*) - - - - - - - + + + + + + + Speed: %1x Velocitat: %1x - + Stereo Estèreo - + Left channel Canal de l'esquerra - + Right channel Canal de la dreta - + Track: %1 Pista: %1 - - + + Unable to adjust the subtitle No es poden ajustar els subtítols. - - + + Subtitle %1: %2s Subtítol %1: %2s - - + + delayed ajornat - - + + advanced avançat - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Subtítols (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Visualització - + Film screenshot Captura de pantalla de la pel·lícula - + Saved to Desada a - - + + The screenshot is saved La captura s'ha desat. - - + + Failed to save the screenshot Ha fallat desar la captura de pantalla. - + Taking the screenshots, please wait... Es fan les captures; espereu, si us plau... - - - Cancel - Cancel·la - - - - - Restart - - - - + Reading DVD files... Es llegeixen els fitxers del DVD... - + No matching online subtitles No hi ha subtítols en línia coincidents. - + 4K video may be stuck El vídeo de 4K es pot encallar. - + OK D'acord - - + + Order play Reproducció ordenada - - + + Shuffle play Reproducció aleatòria - - + + Single play Reproducció simple - - + + Single loop Repetició simple - - + + List loop Repetició de la llista - + Buffering... S'omple la memòria intermèdia... - - + + Mute Silencia - - + + Volume: %1% Volum: %1% - + Cannot open file or stream No es pot obrir el fitxer o la transmissió. - - + + Invalid file Fitxer no vàlid - + Please insert a CD/DVD Si us plau, inseriu un CD / DVD - + No video file found No s'ha trobat cap fitxer de vídeo. - + Please load the video first Si us plau, carregueu primer el vídeo. - - + + Please exit smart dock Si us plau, sortiu de l'acoblador intel·ligent. - + The CD/DVD has been ejected S'ha expulsat el CD / DVD. - + The action is not supported in this video L'acció no s'admet en aquest vídeo. - + Invalid file: %1 Fitxer no vàlid: %1 - + Connection failed Ha fallat la connexió. - + Miracast disconnected Miracast desconnectat @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Reproducció ordenada - + Shuffle play Reproducció aleatòria - + Single play Reproducció simple - + Single loop Repetició simple - + List loop Repetició de la llista - + Auto Automàtic - + Open Obre - + Close Tanca - + %1/Movie%2(%3).jpg %1/Pel·lícula%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Reprodueix / Pausa - - + + Previous Anterior - - + + Next Següent - - - - + + + + Fullscreen Pantalla completa - - + + Playlist Llista de reproducció - - + + Miracast Miracast - - + + Exit fullscreen Surt de la pantalla completa - - + + Pause Pausa - - - + + + Play Reprodueix - + Volume Volum diff --git a/translations/deepin-movie_cs.ts b/translations/deepin-movie_cs.ts index 290d6ecc4..5be122950 100644 --- a/translations/deepin-movie_cs.ts +++ b/translations/deepin-movie_cs.ts @@ -43,17 +43,17 @@ Během promítání neukončujte aplikaci. QObject - - + + - + Movie Film - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Filmy je plně vybavený přehrávač obrazových záznamů. Podporuje přehrávání místních a vysílaných záznamů nahraných v mnoha obrazových formátech. @@ -323,61 +323,32 @@ Během promítání neukončujte aplikaci. Softwarové dekódování - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Nemáte oprávnění k práci s touto složkou - - + + OK OK - - + + Invalid folder Neplatná složka - - + + Open folder Otevřít složku - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Síť odpojena @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Úspěšně načteno - - - - + + + + Load failed Nepodařilo se nahrát - - + + Cannot play the disc Disk není možné přehrát - - + + Parse failed Nepodařilo se zpracovat - + Open folder Otevřít složku - - - - - - - + + + + + + + Speed: %1x Rychlost: %1x - + Stereo Stereo - + Left channel Levý kanál - + Right channel Pravý kanál - + Track: %1 Skladba: %1 - - + + Unable to adjust the subtitle Nelze upravit titulek - - + + Subtitle %1: %2s Titulky %1: %2s - - + + delayed Zpožděno - - + + advanced pokročilé - + View Pohled - + Film screenshot Snímek obrazovky z filmu - + Saved to Uloženo do - - + + The screenshot is saved Snímek obrazovky je uložen - - + + Failed to save the screenshot Snímek obrazovky se nepodařilo uložit - + Taking the screenshots, please wait... Pořizování snímku obrazovky – čekejte… - - - Cancel - Zrušit - - - - - Restart - - - - + Reading DVD files... Čtení souborů z DVD… - + Invalid file: %1 Neplatný soubor: %1 - + Miracast disconnected Miracast odpojen - + No matching online subtitles Žádné odpovídající titulky na Internetu - - + + All (*) Vše (*) - + 4K video may be stuck Video s rozlišením 4K se může zasekávat - + OK OK - - + + Order play Přehrávat popořadě - - + + Shuffle play Přehrávat napřeskáčku - - + + Single play Jedno přehrání - - + + Single loop Jediná smyčka - - + + List loop Smyčka nad seznamem - + Buffering... Ukládá se do vyrovnávací paměti… - - + + Mute Ztlumit - - + + Volume: %1% Hlasitost: %1% - - + + Cannot open file or stream Nedaří se otevřít soubor nebo proud - + The action is not supported in this video Činnost není v tomto videu podporována - + Connection failed Připojení se nezdařilo - - + + Invalid file Neplatný soubor - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Titulky (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Vložte CD/DVD - + No video file found Nenalezen žádný soubor s videem - + Please load the video first Nejprve načtěte video - - + + Please exit smart dock Ukončete režim chytrého doku - + The CD/DVD has been ejected CD/DVD bylo vysunuto @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Vnitřní @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Úspěšně nahráno - - - - + + + + Load failed Nepodařilo se nahrát - - + + Cannot play the disc Disk není možné přehrát - - + + Parse failed Nepodařilo se zpracovat - + Open folder Otevřít složku - - + + All (*) Vše (*) - - - - - - - + + + + + + + Speed: %1x Rychlost: %1x - + Stereo Stereo - + Left channel Levý kanál - + Right channel Pravý kanál - + Track: %1 Skladba: %1 - - + + Unable to adjust the subtitle Nelze upravit titulek - - + + Subtitle %1: %2s Titulky %1: %2s - - + + delayed Zpožděno - - + + advanced pokročilé - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Titulky (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Pohled - + Film screenshot Snímek obrazovky z filmu - + Saved to Uloženo do - - + + The screenshot is saved Snímek obrazovky je uložen - - + + Failed to save the screenshot Snímek obrazovky se nepodařilo uložit - + Taking the screenshots, please wait... Pořizování snímku obrazovky – čekejte… - - - Cancel - Zrušit - - - - - Restart - - - - + Reading DVD files... Čtení souborů z DVD… - + No matching online subtitles Žádné odpovídající titulky na Internetu - + 4K video may be stuck Video s rozlišením 4K se může zasekávat - + OK OK - - + + Order play Přehrávat popořadě - - + + Shuffle play Přehrávat napřeskáčku - - + + Single play Jedno přehrání - - + + Single loop Jediná smyčka - - + + List loop Smyčka nad seznamem - + Buffering... Ukládá se do vyrovnávací paměti… - - + + Mute Ztlumit - - + + Volume: %1% Hlasitost: %1% - + Cannot open file or stream Nedaří se otevřít soubor nebo proud - - + + Invalid file Neplatný soubor - + Please insert a CD/DVD Vložte CD/DVD - + No video file found Nenalezen žádný soubor s videem - + Please load the video first Nejprve načtěte video - - + + Please exit smart dock Ukončete režim chytrého doku - + The CD/DVD has been ejected CD/DVD bylo vysunuto - + The action is not supported in this video Činnost není v tomto videu podporována - + Invalid file: %1 Neplatný soubor: %1 - + Connection failed Připojení se nezdařilo - + Miracast disconnected Miracast odpojen @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Přehrávat popořadě - + Shuffle play Přehrávat napřeskáčku - + Single play Jedno přehrání - + Single loop Jediná smyčka - + List loop Smyčka nad seznamem - + Auto Automaticky - + Open Otevřít - + Close Zavřít - + %1/Movie%2(%3).jpg %1/Film%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Přehrát/Pozastavit - - + + Previous Předchozí - - + + Next Další - - - - + + + + Fullscreen Celá obrazovka - - + + Playlist Seznam skladeb - - + + Miracast Miracast - - + + Exit fullscreen Opustit celou obrazovku - - + + Pause Pozastavit - - - + + + Play Přehrát - + Volume Hlasitost diff --git a/translations/deepin-movie_da.ts b/translations/deepin-movie_da.ts index 03a2d19b0..382582f37 100644 --- a/translations/deepin-movie_da.ts +++ b/translations/deepin-movie_da.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Film - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Film er en videoafspiller med alle funktioner som understøtter afspilning af lokale og streamingmedier i flere videoformater. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Du har ikke tilladelse til at håndtere denne mappe - - + + OK OK - - + + Invalid folder Ugyldig mappe - - + + Open folder Åbn mappe - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Netværk afbrudt @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Indlæsning lykkedes - - - - + + + + Load failed Indlæsning mislykkedes - - + + Cannot play the disc - - + + Parse failed Fortolkning mislykkedes - + Open folder Åbn mappe - - - - - - - + + + + + + + Speed: %1x Hastighed: %1x - + Stereo Stereo - + Left channel Venstre kanal - + Right channel Højre kanal - + Track: %1 Spor: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Undertekst %1: %2s - - + + delayed forsinket - - + + advanced fremskudt - + View Vis - + Film screenshot Film skærmbillede - + Saved to Gemt til - - + + The screenshot is saved Skærmbilledet er gemt - - + + Failed to save the screenshot Kunne ikke gemme skærmbilledet - + Taking the screenshots, please wait... Tager skærmbilledet, vent venligst... - - - Cancel - Annuller - - - - - Restart - - - - + Reading DVD files... Læser DVD-filer ... - + Invalid file: %1 Ugyldig fil: %1 - + Miracast disconnected - + No matching online subtitles Ingen match af onlineundertekster - - + + All (*) - + 4K video may be stuck 4K-video kan fryse - + OK OK - - + + Order play Afspilingsrækkefølge - - + + Shuffle play Bland afspilning - - + + Single play Én afspilning - - + + Single loop Én løkke - - + + List loop Listeløkke - + Buffering... Mellemlagre... - - + + Mute Lydløs - - + + Volume: %1% Lydstyrke: %1% - - + + Cannot open file or stream Kan ikke åbne fil eller strøm - + The action is not supported in this video - + Connection failed - - + + Invalid file Ugyldig fil - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Undertekst (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Indsæt venligst en CD/DVD - + No video file found Ingen videofil fundet - + Please load the video first Indlæs venligst videoen først - - + + Please exit smart dock - + The CD/DVD has been ejected CD'en/DVD'en er skubbet ud @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal intern @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Indlæsning lykkedes - - - - + + + + Load failed Indlæsning mislykkedes - - + + Cannot play the disc - - + + Parse failed Fortolkning mislykkedes - + Open folder Åbn mappe - - + + All (*) - - - - - - - + + + + + + + Speed: %1x Hastighed: %1x - + Stereo Stereo - + Left channel Venstre kanal - + Right channel Højre kanal - + Track: %1 Spor: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Undertekst %1: %2s - - + + delayed forsinket - - + + advanced fremskudt - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Undertekst (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Vis - + Film screenshot Film skærmbillede - + Saved to Gemt til - - + + The screenshot is saved Skærmbilledet er gemt - - + + Failed to save the screenshot Kunne ikke gemme skærmbilledet - + Taking the screenshots, please wait... Tager skærmbilledet, vent venligst... - - - Cancel - Annuller - - - - - Restart - - - - + Reading DVD files... Læser DVD-filer ... - + No matching online subtitles Ingen match af onlineundertekster - + 4K video may be stuck 4K-video kan fryse - + OK OK - - + + Order play Afspilingsrækkefølge - - + + Shuffle play Bland afspilning - - + + Single play Én afspilning - - + + Single loop Én løkke - - + + List loop Listeløkke - + Buffering... Mellemlagre... - - + + Mute Lydløs - - + + Volume: %1% Lydstyrke: %1% - + Cannot open file or stream Kan ikke åbne fil eller strøm - - + + Invalid file Ugyldig fil - + Please insert a CD/DVD Indsæt venligst en CD/DVD - + No video file found Ingen videofil fundet - + Please load the video first Indlæs venligst videoen først - - + + Please exit smart dock - + The CD/DVD has been ejected CD'en/DVD'en er skubbet ud - + The action is not supported in this video - + Invalid file: %1 Ugyldig fil: %1 - + Connection failed - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Afspilingsrækkefølge - + Shuffle play Bland afspilning - + Single play Én afspilning - + Single loop Én løkke - + List loop Listeløkke - + Auto Automatisk - + Open Åbn - + Close Luk - + %1/Movie%2(%3).jpg %1/Film%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Afspil/pause - - + + Previous Forrige - - + + Next Næste - - - - + + + + Fullscreen Fuldskærm - - + + Playlist Afspilningsliste - - + + Miracast - - + + Exit fullscreen Forlad fuldskærm - - + + Pause Pause - - - + + + Play Afspil - + Volume Lydstyrke diff --git a/translations/deepin-movie_de.ts b/translations/deepin-movie_de.ts index 832b829b9..4856a2c88 100644 --- a/translations/deepin-movie_de.ts +++ b/translations/deepin-movie_de.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Film - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Movie ist ein Videoplayer, der die lokale und Streaming-Videowiedergabe in mehreren Videoformaten unterstützt. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. Software-Dekodierung - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Sie haben keine Berechtigung diesen Ordner zu nutzen - - + + OK OK - - + + Invalid folder Ungültiger Ordner - - + + Open folder Ordner öffnen - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Netzwerk getrennt @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Erfolgreich geladen - - - - + + + + Load failed Laden fehlgeschlagen - - + + Cannot play the disc - - + + Parse failed Auslesen fehlgeschlagen - + Open folder Ordner öffnen - - - - - - - + + + + + + + Speed: %1x Geschwindigkeit: %1 x - + Stereo Stereo - + Left channel Linker Kanal - + Right channel Rechter Kanal - + Track: %1 Musiktitel: %1 - - + + Unable to adjust the subtitle Untertitel können nicht angepasst werden - - + + Subtitle %1: %2s Untertitel %1: %2s - - + + delayed verzögert - - + + advanced vorgerückt - + View Ansicht - + Film screenshot Film-Bildschirmfoto - + Saved to Gespeichert in - - + + The screenshot is saved Das Bildschirmfoto ist gespeichert - - + + Failed to save the screenshot Bild konnte nicht gespeichert werden - + Taking the screenshots, please wait... Bildschirmfotos werden aufgenommen, bitte warten... - - - Cancel - Abbrechen - - - - - Restart - - - - + Reading DVD files... DVD-Dateien werden gelesen ... - + Invalid file: %1 Ungültige Datei: %1 - + Miracast disconnected Miracast getrennt - + No matching online subtitles Keine passenden Online-Untertitel - - + + All (*) Alle (*) - + 4K video may be stuck 4K-Video kann hängen bleiben - + OK OK - - + + Order play Geordnete Wiedergabe - - + + Shuffle play Zufallswiedergabe - - + + Single play Einzelwiedergabe - - + + Single loop Einzelne Schleife - - + + List loop Liste wiederholen - + Buffering... Pufferung ... - - + + Mute Stummschalten - - + + Volume: %1% Lautstärke: %1% - - + + Cannot open file or stream Datei oder Stream kann nicht geöffnet werden - + The action is not supported in this video Die Aktion wird in diesem Video nicht unterstützt - + Connection failed Verbindung fehlgeschlagen - - + + Invalid file Ungültige Datei - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Untertitel (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Bitte legen Sie eine CD/DVD ein - + No video file found Keine Videodatei gefunden - + Please load the video first Bitte laden Sie zuerst das Video - - + + Please exit smart dock - + The CD/DVD has been ejected Die CD/DVD wurde ausgeworfen @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Intern @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Erfolgreich geladen - - - - + + + + Load failed Laden fehlgeschlagen - - + + Cannot play the disc - - + + Parse failed Auslesen fehlgeschlagen - + Open folder Ordner öffnen - - + + All (*) Alle (*) - - - - - - - + + + + + + + Speed: %1x Geschwindigkeit: %1 x - + Stereo Stereo - + Left channel Linker Kanal - + Right channel Rechter Kanal - + Track: %1 Musiktitel: %1 - - + + Unable to adjust the subtitle Untertitel können nicht angepasst werden - - + + Subtitle %1: %2s Untertitel %1: %2s - - + + delayed verzögert - - + + advanced vorgerückt - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Untertitel (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Ansicht - + Film screenshot Film-Bildschirmfoto - + Saved to Gespeichert in - - + + The screenshot is saved Das Bildschirmfoto ist gespeichert - - + + Failed to save the screenshot Bild konnte nicht gespeichert werden - + Taking the screenshots, please wait... Bildschirmfotos werden aufgenommen, bitte warten... - - - Cancel - Abbrechen - - - - - Restart - - - - + Reading DVD files... DVD-Dateien werden gelesen ... - + No matching online subtitles Keine passenden Online-Untertitel - + 4K video may be stuck 4K-Video kann hängen bleiben - + OK OK - - + + Order play Geordnete Wiedergabe - - + + Shuffle play Zufallswiedergabe - - + + Single play Einzelwiedergabe - - + + Single loop Einzelne Schleife - - + + List loop Liste wiederholen - + Buffering... Pufferung ... - - + + Mute Stummschalten - - + + Volume: %1% Lautstärke: %1% - + Cannot open file or stream Datei oder Stream kann nicht geöffnet werden - - + + Invalid file Ungültige Datei - + Please insert a CD/DVD Bitte legen Sie eine CD/DVD ein - + No video file found Keine Videodatei gefunden - + Please load the video first Bitte laden Sie zuerst das Video - - + + Please exit smart dock - + The CD/DVD has been ejected Die CD/DVD wurde ausgeworfen - + The action is not supported in this video Die Aktion wird in diesem Video nicht unterstützt - + Invalid file: %1 Ungültige Datei: %1 - + Connection failed Verbindung fehlgeschlagen - + Miracast disconnected Miracast getrennt @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Geordnete Wiedergabe - + Shuffle play Zufallswiedergabe - + Single play Einzelwiedergabe - + Single loop Einzelne Schleife - + List loop Liste wiederholen - + Auto Automatisch - + Open Öffnen - + Close Schließen - + %1/Movie%2(%3).jpg %1/Film%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Wiedergeben/Pausieren - - + + Previous Zurück - - + + Next Weiter - - - - + + + + Fullscreen Vollbild - - + + Playlist Wiedergabeliste - - + + Miracast Miracast - - + + Exit fullscreen Vollbild beenden - - + + Pause Pausieren - - - + + + Play Wiedergeben - + Volume Lautstärke diff --git a/translations/deepin-movie_el.ts b/translations/deepin-movie_el.ts index a2b737537..0f98e0da7 100644 --- a/translations/deepin-movie_el.ts +++ b/translations/deepin-movie_el.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder Άνοιγμα φακέλου - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Buffering... - + Open folder Άνοιγμα φακέλου - + Stereo Στέρεο - + Left channel - + Right channel - - + + Parse failed - - + + Mute Σίγαση - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View Εμφάνιση - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - Ακύρωση - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder Άνοιγμα φακέλου - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo Στέρεο - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View Εμφάνιση - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - Ακύρωση - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute Σίγαση - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play Αναπαραγωγή - - + + Previous Προηγούμενο - - + + Next Επόμενο - - + + Playlist Λίστα αναπαραγωγής - - - - + + + + Fullscreen Πλήρης οθόνη - + Volume - + Play/Pause Αναπαραγωγή/Παύση - - + + Miracast - - + + Exit fullscreen Έξοδος από πλήρη οθόνη - - + + Pause Παύση diff --git a/translations/deepin-movie_en.ts b/translations/deepin-movie_en.ts index 30bc8f40b..aeaacfb7d 100644 --- a/translations/deepin-movie_en.ts +++ b/translations/deepin-movie_en.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -366,17 +337,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles Load failed - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles Load failed - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play - - + + Previous - - + + Next - - + + Playlist - - - - + + + + Fullscreen - + Volume - + Play/Pause - - + + Miracast - - + + Exit fullscreen - - + + Pause diff --git a/translations/deepin-movie_en_AU.ts b/translations/deepin-movie_en_AU.ts index c62e3d207..9fc1b522f 100644 --- a/translations/deepin-movie_en_AU.ts +++ b/translations/deepin-movie_en_AU.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + All (*) - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute Mute - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - Cancel - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - Cancel - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute Mute - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play - - + + Previous Previous - - + + Next Next - - + + Playlist - - - - + + + + Fullscreen Fullscreen - + Volume - + Play/Pause Play/Pause - - + + Miracast - - + + Exit fullscreen Exit fullscreen - - + + Pause Pause diff --git a/translations/deepin-movie_eo.ts b/translations/deepin-movie_eo.ts index 3225cfc06..40cd66f32 100644 --- a/translations/deepin-movie_eo.ts +++ b/translations/deepin-movie_eo.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - + Buffering... - + Open folder - + Stereo Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute Muta - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - Nuligi - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - Nuligi - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute Muta - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play Ludi - - + + Previous Antaŭa - - + + Next Sekva - - + + Playlist Ludilisto - - - - + + + + Fullscreen Tutekrana - + Volume - + Play/Pause - - + + Miracast - - + + Exit fullscreen - - + + Pause Paŭzo diff --git a/translations/deepin-movie_es.ts b/translations/deepin-movie_es.ts index 88814c4f0..3f88c7bc3 100644 --- a/translations/deepin-movie_es.ts +++ b/translations/deepin-movie_es.ts @@ -43,17 +43,17 @@ No salga de la aplicación durante el proceso. QObject - - + + - + Movie Vídeo - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Vídeo de Deepin es un completo reproductor de vídeo , que admite la reproducción de medios locales e Internet en múltiples formatos. @@ -323,61 +323,32 @@ No salga de la aplicación durante el proceso. Descodificación de software - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder No tiene permiso para operar en esta carpeta - - + + OK Aceptar - - + + Invalid folder Carpeta inválida - - + + Open folder Abrir carpeta - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Red desconectada @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Carga exitosa - - - - + + + + Load failed La carga falló - - + + Cannot play the disc No se puede reproducir el disco - - + + Parse failed El análisis falló - + Open folder Abrir carpeta - - - - - - - + + + + + + + Speed: %1x Velocidad: %1x - + Stereo Estéreo - + Left channel Canal izquierdo - + Right channel Canal derecho - + Track: %1 Track: %1 - - + + Unable to adjust the subtitle No se pueden ajustar los subtítulos - - + + Subtitle %1: %2s Subtítulo %1: %2s - - + + delayed retrasado - - + + advanced avanzado - + View Ver - + Film screenshot Captura de pantalla de vídeo - + Saved to Guardado a - - + + The screenshot is saved La captura de pantalla fue guardada - - + + Failed to save the screenshot Falló al guardar la captura - + Taking the screenshots, please wait... Tomando captura de pantalla, por favor espere... - - - Cancel - Cancelar - - - - - Restart - - - - + Reading DVD files... Leyendo archivos del DVD... - + Invalid file: %1 Archivo inválido: %1 - + Miracast disconnected Miracast desconectado - + No matching online subtitles No hay subtítulos en línea que coincidan - - + + All (*) Todos (*) - + 4K video may be stuck El video 4K estaría ralentizado - + OK Aceptar - - + + Order play Reproducción en orden - - + + Shuffle play Reproducción aleatoria - - + + Single play Reproducción única - - + + Single loop Bucle simple - - + + List loop Bucle de lista - + Buffering... Almacenando... - - + + Mute Silenciar - - + + Volume: %1% Volumen: %1% - - + + Cannot open file or stream No se puede abrir el archivo o transmisión - + The action is not supported in this video La acción no es compatible con este vídeo - + Connection failed Conexión fallida - - + + Invalid file Archivo invalido - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Subtítulo (* .ass * .aqt * .jss * .gsub * .ssf * .srt * .sub * .ssa * .smi * .usf * .idx) - + Please insert a CD/DVD Por favor ingrese un CD/DVD - + No video file found No se ha encontrado ningún archivo de vídeo - + Please load the video first Por favor cargue el video primero - - + + Please exit smart dock Por favor, salga de dock inteligente - + The CD/DVD has been ejected El CD/DVD ha sido extraído @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Interno @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Carga exitosa - - - - + + + + Load failed La carga falló - - + + Cannot play the disc No se puede reproducir el disco - - + + Parse failed El análisis falló - + Open folder Abrir carpeta - - + + All (*) Todos (*) - - - - - - - + + + + + + + Speed: %1x Velocidad: %1x - + Stereo Estéreo - + Left channel Canal izquierdo - + Right channel Canal derecho - + Track: %1 Track: %1 - - + + Unable to adjust the subtitle No se pueden ajustar los subtítulos - - + + Subtitle %1: %2s Subtítulo %1: %2s - - + + delayed retrasado - - + + advanced avanzado - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Subtítulo (* .ass * .aqt * .jss * .gsub * .ssf * .srt * .sub * .ssa * .smi * .usf * .idx) - + View Ver - + Film screenshot Captura de pantalla de vídeo - + Saved to Guardar en - - + + The screenshot is saved La captura de pantalla fue guardada - - + + Failed to save the screenshot Falló al guardar la captura - + Taking the screenshots, please wait... Tomando captura de pantalla, por favor espere... - - - Cancel - Cancelar - - - - - Restart - - - - + Reading DVD files... Leyendo archivos del DVD... - + No matching online subtitles No hay subtítulos en línea que coincidan - + 4K video may be stuck El video 4K podría estar ralentizado - + OK Aceptar - - + + Order play Reproducción ordenada - - + + Shuffle play Reproducción aleatoria - - + + Single play Reproducción única - - + + Single loop Bucle simple - - + + List loop Bucle de lista - + Buffering... Almacenando... - - + + Mute Silenciar - - + + Volume: %1% Volumen: %1% - + Cannot open file or stream No se puede abrir el archivo o transmisión - - + + Invalid file Archivo invalido - + Please insert a CD/DVD Por favor ingrese un CD/DVD - + No video file found No se ha encontrado ningún archivo de vídeo - + Please load the video first Por favor primero cargue el video - - + + Please exit smart dock Por favor salga de dock inteligente - + The CD/DVD has been ejected El CD/DVD ha sido extraído - + The action is not supported in this video La acción no es compatible con este vídeo - + Invalid file: %1 Archivo inválido: %1 - + Connection failed Conexión fallida - + Miracast disconnected Miracast desconectado @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Reproducción en orden - + Shuffle play Reproducción aleatoria - + Single play Reproducción única - + Single loop Bucle simple - + List loop Bucle de lista - + Auto Automático - + Open Abrir - + Close Cerrar - + %1/Movie%2(%3).jpg %1/Video%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Reproducir/Pausar - - + + Previous Anterior - - + + Next Siguiente - - - - + + + + Fullscreen Pantalla completa - - + + Playlist Lista de reproducción - - + + Miracast Miracast - - + + Exit fullscreen Salir de pantalla completa - - + + Pause Pausar - - - + + + Play Reproducir - + Volume Volumen diff --git a/translations/deepin-movie_fa.ts b/translations/deepin-movie_fa.ts index 2dcd932b8..c07ff1283 100644 --- a/translations/deepin-movie_fa.ts +++ b/translations/deepin-movie_fa.ts @@ -270,27 +270,6 @@ Please do not exit the Movie app during the process. Software decoding - - Customize - - - - Decode mode - - - - Video out - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - Rendering engine - - UrlDialog @@ -704,14 +683,6 @@ and whether to restart it? Miracast disconnected - - Cancel - انصراف - - - Restart - - dmr::MovieInfo @@ -1021,14 +992,6 @@ and whether to restart it? Miracast disconnected - - Cancel - انصراف - - - Restart - - dmr::Platform_PlayItemWidget diff --git a/translations/deepin-movie_fi.ts b/translations/deepin-movie_fi.ts index 49bf1ab49..1205d7af0 100644 --- a/translations/deepin-movie_fi.ts +++ b/translations/deepin-movie_fi.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Elokuvat - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Elokuvat on monipuolinen videotoistin, joka tukee paikallista ja suoratoistettavaa mediaa monessa videoformaatissa. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. Purkukoodaus softa - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Sinulla ei ole lupaa käyttää tätä kansiota - - + + OK OK - - + + Invalid folder Virheellinen kansio - - + + Open folder Avaa kansio - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Verkkoyhteys katkaistu @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Lataus onnistui - - - - + + + + Load failed Lataus epäonnistui - - + + Cannot play the disc Levyä ei voi toistaa - - + + Parse failed Jäsennys epäonnistui - + Open folder Avaa kansio - - - - - - - + + + + + + + Speed: %1x Nopeus: %1x - + Stereo Stereo - + Left channel Vasen kanava - + Right channel Oikea kanava - + Track: %1 Raita: %1 - - + + Unable to adjust the subtitle Tekstitystä ei voi säätää - - + + Subtitle %1: %2s Tekstitys %1: %2s - - + + delayed myöhässä - - + + advanced edistynyt - + View Näytä - + Film screenshot Elokuvan kuvakaappaus - + Saved to Tallenna nimellä - - + + The screenshot is saved Kuvakaappaus tallennettu - - + + Failed to save the screenshot Kuvakaappauksen tallentaminen epäonnistui - + Taking the screenshots, please wait... Otetaan kuvakaappausta, odota... - - - Cancel - Peruuta - - - - - Restart - - - - + Reading DVD files... Luetaan DVD-tiedostoja... - + Invalid file: %1 Virheellinen tiedosto: %1 - + Miracast disconnected - + No matching online subtitles Ei sopivaa internet tekstitystä - - + + All (*) Kaikki (*) - + 4K video may be stuck 4K-video voi olla jumissa - + OK OK - - + + Order play Soittojärjestys - - + + Shuffle play Satunnaistoisto - - + + Single play Yksi toisto - - + + Single loop Silmukka - - + + List loop Listan silmukka - + Buffering... Puskuroidaan... - - + + Mute Vaienna - - + + Volume: %1% Äänitaso: %1% - - + + Cannot open file or stream Suoratoistoa ei voi avata - + The action is not supported in this video Toimintoa ei tueta tässä videossa - + Connection failed Yhteys epäonnistui - - + + Invalid file Epäkelpo tiedosto - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Tekstitys (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Aseta CD/DVD-levy asemaan - + No video file found Videotiedostoa ei löytynyt - + Please load the video first Lataa video ensin - - + + Please exit smart dock Poistu telakasta - + The CD/DVD has been ejected CD/DVD on poistettu @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Sisäinen @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Lataus onnistui - - - - + + + + Load failed Lataus epäonnistui - - + + Cannot play the disc Levyä ei voi toistaa - - + + Parse failed Jäsennys epäonnistui - + Open folder Avaa kansio - - + + All (*) Kaikki (*) - - - - - - - + + + + + + + Speed: %1x Nopeus: %1x - + Stereo Stereo - + Left channel Vasen kanava - + Right channel Oikea kanava - + Track: %1 Raita: %1 - - + + Unable to adjust the subtitle Tekstitystä ei voi säätää - - + + Subtitle %1: %2s Tekstitys %1: %2s - - + + delayed myöhässä - - + + advanced edistynyt - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Tekstitys (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Katsele - + Film screenshot Elokuvan kuvakaappaus - + Saved to Tallenna nimellä - - + + The screenshot is saved Kuvakaappaus tallennettu - - + + Failed to save the screenshot Kuvakaappauksen tallentaminen epäonnistui - + Taking the screenshots, please wait... Otetaan kuvakaappausta, odota... - - - Cancel - Peruuta - - - - - Restart - - - - + Reading DVD files... Luetaan DVD-tiedostoja... - + No matching online subtitles Ei sopivaa internet tekstitystä - + 4K video may be stuck 4K-video voi olla jumissa - + OK OK - - + + Order play Soittojärjestys - - + + Shuffle play Satunnaistoisto - - + + Single play Yksi toisto - - + + Single loop Silmukka - - + + List loop Listan silmukka - + Buffering... Puskuroidaan... - - + + Mute Vaienna - - + + Volume: %1% Äänitaso: %1% - + Cannot open file or stream Suoratoistoa ei voi avata - - + + Invalid file Epäkelpo tiedosto - + Please insert a CD/DVD Aseta CD/DVD-levy asemaan - + No video file found Videotiedostoa ei löytynyt - + Please load the video first Lataa video ensin - - + + Please exit smart dock Poistu telakasta - + The CD/DVD has been ejected CD/DVD on poistettu - + The action is not supported in this video Toimintoa ei tueta tässä videossa - + Invalid file: %1 Virheellinen tiedosto: %1 - + Connection failed Yhteys epäonnistui - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Soittojärjestys - + Shuffle play Satunnaistoisto - + Single play Yksi toisto - + Single loop Silmukka - + List loop Listan silmukka - + Auto Automaattinen - + Open Avaa - + Close Sulje - + %1/Movie%2(%3).jpg %1/Elokuva%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Toista/keskeytä - - + + Previous Edellinen - - + + Next Seuraava - - - - + + + + Fullscreen Koko näyttö - - + + Playlist Soittolista - - + + Miracast - - + + Exit fullscreen Poistu koko näytöstä - - + + Pause Pysäytä - - - + + + Play Toista - + Volume Voimakkuus diff --git a/translations/deepin-movie_fil.ts b/translations/deepin-movie_fil.ts index 5ded0e55b..79d7648b4 100644 --- a/translations/deepin-movie_fil.ts +++ b/translations/deepin-movie_fil.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - - - - - - Restart - - - - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found - + Reading DVD files... - + Invalid file: %1 @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play - - + + Previous - - + + Next - - + + Playlist - - - - + + + + Fullscreen - + Volume - + Play/Pause - - + + Miracast - - + + Exit fullscreen - - + + Pause diff --git a/translations/deepin-movie_fr.ts b/translations/deepin-movie_fr.ts index 73b1c4f7c..aabc3bb1e 100644 --- a/translations/deepin-movie_fr.ts +++ b/translations/deepin-movie_fr.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Vidéo - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Vidéo est un lecteur vidéo complet, prenant en charge la lecture de médias locaux et en streaming dans plusieurs formats vidéo. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. Décodage logiciel - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Vous n'avez pas la permission d'agir sur ce dossier - - + + OK OK - - + + Invalid folder Dossier non valide - - + + Open folder Ouvrir un dossier - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Réseau déconnecté @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Chargement réussi - - - - + + + + Load failed Échec du chargement - - + + Cannot play the disc Impossible de lire le disque - - + + Parse failed L'analyse a échoué - + Open folder Ouvrir un dossier - - - - - - - + + + + + + + Speed: %1x Vitesse : %1x - + Stereo Stéréo - + Left channel Canal gauche - + Right channel Canal droit - + Track: %1 Piste : %1 - - + + Unable to adjust the subtitle Impossible de régler le sous-titre - - + + Subtitle %1: %2s Sous-titre %1 : %2s - - + + delayed Retardé - - + + advanced avancé - + View Afficher - + Film screenshot Capture d'écran du film - + Saved to Sauvegardé dans - - + + The screenshot is saved Capture d'écran enregistrée - - + + Failed to save the screenshot Échec de la sauvegarde de la capture d'écran - + Taking the screenshots, please wait... Prise des captures d'écran en cours, veuillez patienter... - - - Cancel - Annuler - - - - - Restart - - - - + Reading DVD files... Lecture des fichiers du DVD en cours... - + Invalid file: %1 Fichier non valide : %1 - + Miracast disconnected - + No matching online subtitles Aucun sous-titre en ligne correspondant - - + + All (*) Tout (*) - + 4K video may be stuck La vidéo 4K peut être bloquée - + OK OK - - + + Order play Par ordre - - + + Shuffle play Lecture aléatoire - - + + Single play Lecture seule - - + + Single loop Répéter le morceau - - + + List loop Répéter la liste - + Buffering... Mise en mémoire tampon... - - + + Mute Muet - - + + Volume: %1% Volume : %1% - - + + Cannot open file or stream Impossible d'ouvrir un fichier ou un flux - + The action is not supported in this video L'action n'est pas prise en charge dans cette vidéo - + Connection failed La connexion a échoué - - + + Invalid file Fichier invalide - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Sous-titres (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Veuillez insérer un CD/DVD - + No video file found Aucun fichier vidéo trouvé - + Please load the video first Veuillez d'abord charger la vidéo - - + + Please exit smart dock Veuillez quitter la station d'accueil intelligente - + The CD/DVD has been ejected Le CD/DVD a été éjecté @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Interne @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Chargement réussi - - - - + + + + Load failed Échec du chargement - - + + Cannot play the disc Impossible de lire le disque - - + + Parse failed L'analyse a échoué - + Open folder Ouvrir un dossier - - + + All (*) Tout (*) - - - - - - - + + + + + + + Speed: %1x Vitesse : %1x - + Stereo Stéréo - + Left channel Canal gauche - + Right channel Canal droit - + Track: %1 Piste : %1 - - + + Unable to adjust the subtitle Impossible de régler le sous-titre - - + + Subtitle %1: %2s Sous-titre %1 : %2s - - + + delayed Retardé - - + + advanced avancé - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Sous-titres (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Affichage - + Film screenshot Capture d'écran du film - + Saved to Sauvegardé dans - - + + The screenshot is saved Capture d'écran enregistrée - - + + Failed to save the screenshot Échec de la sauvegarde de la capture d'écran - + Taking the screenshots, please wait... Prise des captures d'écran en cours, veuillez patienter... - - - Cancel - Annuler - - - - - Restart - - - - + Reading DVD files... Lecture des fichiers du DVD en cours... - + No matching online subtitles Aucun sous-titre en ligne correspondant - + 4K video may be stuck La vidéo 4K peut être bloquée - + OK OK - - + + Order play Par ordre - - + + Shuffle play Lecture aléatoire - - + + Single play Lecture seule - - + + Single loop Répéter le morceau - - + + List loop Répéter la liste - + Buffering... Mise en mémoire tampon... - - + + Mute Muet - - + + Volume: %1% Volume : %1% - + Cannot open file or stream Impossible d'ouvrir un fichier ou un flux - - + + Invalid file Fichier invalide - + Please insert a CD/DVD Veuillez insérer un CD/DVD - + No video file found Aucun fichier vidéo trouvé - + Please load the video first Veuillez d'abord charger la vidéo - - + + Please exit smart dock Veuillez quitter la station d'accueil intelligente - + The CD/DVD has been ejected Le CD/DVD a été éjecté - + The action is not supported in this video L'action n'est pas prise en charge dans cette vidéo - + Invalid file: %1 Fichier non valide : %1 - + Connection failed La connexion a échoué - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Par ordre - + Shuffle play Lecture aléatoire - + Single play Lecture seule - + Single loop Répéter le morceau - + List loop Répéter la liste - + Auto Automatique - + Open Ouvrir - + Close Fermer - + %1/Movie%2(%3).jpg %1/Film%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Lecture / Pause - - + + Previous Précédent - - + + Next Suivant - - - - + + + + Fullscreen Plein écran - - + + Playlist Liste de lecture - - + + Miracast - - + + Exit fullscreen Quitter le plein écran - - + + Pause Pause - - - + + + Play Jouer - + Volume Volume diff --git a/translations/deepin-movie_gl_ES.ts b/translations/deepin-movie_gl_ES.ts index cc152916b..84339a062 100644 --- a/translations/deepin-movie_gl_ES.ts +++ b/translations/deepin-movie_gl_ES.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Filme - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Filmes é un completo reprodutor de vídeo, que soporta tanto a reprodución de medios locais como a transmisión en diferentes formatos. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Non ten permisos para acceder a este cartafol - - + + OK Aceptar - - + + Invalid folder O cartafol non é válido - - + + Open folder Abrir cartafol - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Rede desconectada @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Cargado/a con éxito - - - - + + + + Load failed Produciuse un erro ao cargar - - + + Cannot play the disc - - + + Parse failed Fallou o analizador - + Open folder Abrir cartafol - - - - - - - + + + + + + + Speed: %1x Velocidade: %1x - + Stereo Estéreo - + Left channel Canle esquerda - + Right channel Canle dereita - + Track: %1 Pista: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Subtítulos %1: %2s - - + + delayed atrasado - - + + advanced avanzado - + View Ver - + Film screenshot Captura do filme - + Saved to Gardar en - - + + The screenshot is saved A captura da pantalla foi gardada - - + + Failed to save the screenshot Fallou ao gardar a captura de pantalla - + Taking the screenshots, please wait... Tomando as capturas de pantalla, agarde... - - - Cancel - Cancelar - - - - - Restart - - - - + Reading DVD files... Lendo o DVD - + Invalid file: %1 Ficheiro non válido: %1 - + Miracast disconnected - + No matching online subtitles Non hai ningún subtítulo en liña - - + + All (*) - + 4K video may be stuck É posible que o vídeo 4K estea preso - + OK Aceptar - - + + Order play Orde de reprodución - - + + Shuffle play Reprodución aleatoria - - + + Single play Reprodución única - - + + Single loop Bucle único - - + + List loop Lista en bucle - + Buffering... Enviando ao búfer... - - + + Mute Silenciar - - + + Volume: %1% Volume: %1% - - + + Cannot open file or stream Non se pode abrir ficheiro ou transmisión - + The action is not supported in this video - + Connection failed - - + + Invalid file O ficheiro non é válido - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Subtítulo (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Insira un CD/DVD - + No video file found Non se atopou ningún vídeo - + Please load the video first Por favor, carga o vídeo primeiro - - + + Please exit smart dock - + The CD/DVD has been ejected Expulsouse o CD/DVD @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Interno @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Cargado/a con éxito - - - - + + + + Load failed Produciuse un erro ao cargar - - + + Cannot play the disc - - + + Parse failed Fallou o analizador - + Open folder Abrir cartafol - - + + All (*) - - - - - - - + + + + + + + Speed: %1x Velocidade: %1x - + Stereo Estéreo - + Left channel Canle esquerda - + Right channel Canle dereita - + Track: %1 Pista: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Subtítulos %1: %2s - - + + delayed atrasado - - + + advanced avanzado - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Subtítulo (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Ver - + Film screenshot Captura do filme - + Saved to Gardar en - - + + The screenshot is saved A captura da pantalla foi gardada - - + + Failed to save the screenshot Fallou ao gardar a captura de pantalla - + Taking the screenshots, please wait... Tomando as capturas de pantalla, agarde... - - - Cancel - Cancelar - - - - - Restart - - - - + Reading DVD files... Lendo o DVD - + No matching online subtitles Non hai ningún subtítulo en liña - + 4K video may be stuck É posible que o vídeo 4K estea preso - + OK Aceptar - - + + Order play Orde de reprodución - - + + Shuffle play Reprodución aleatoria - - + + Single play Reprodución única - - + + Single loop Bucle único - - + + List loop Lista en bucle - + Buffering... Enviando ao búfer... - - + + Mute Silenciar - - + + Volume: %1% Volume: %1% - + Cannot open file or stream Non se pode abrir ficheiro ou transmisión - - + + Invalid file O ficheiro non é válido - + Please insert a CD/DVD Insira un CD/DVD - + No video file found Non se atopou ningún vídeo - + Please load the video first Por favor, carga o vídeo primeiro - - + + Please exit smart dock - + The CD/DVD has been ejected Expulsouse o CD/DVD - + The action is not supported in this video - + Invalid file: %1 Ficheiro non válido: %1 - + Connection failed - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Orde de reprodución - + Shuffle play Reprodución aleatoria - + Single play Reprodución única - + Single loop Bucle único - + List loop Lista en bucle - + Auto Auto. - + Open Abrir - + Close Pechar - + %1/Movie%2(%3).jpg %1/Movie%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Rep./Pausar - - + + Previous Anterior - - + + Next Seguinte - - - - + + + + Fullscreen Pantalla completa - - + + Playlist Lista de reprodución - - + + Miracast - - + + Exit fullscreen Saír da pantalla completa - - + + Pause Pausar - - - + + + Play Reproducir - + Volume Volume diff --git a/translations/deepin-movie_he.ts b/translations/deepin-movie_he.ts index bc7166c5a..6dd9ecd1d 100644 --- a/translations/deepin-movie_he.ts +++ b/translations/deepin-movie_he.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder פתח תיקייה - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + All (*) - + Buffering... - + Open folder פתח תיקייה - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute השתקה - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View תצוגה - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - ביטול - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder פתח תיקייה - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View תצוגה - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - ביטול - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute השתקה - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play נגינה - - + + Previous הקודם - - + + Next הבא - - + + Playlist רשימת נגינה - - - - + + + + Fullscreen מסך מלא - + Volume - + Play/Pause נגינה/השהיה - - + + Miracast - - + + Exit fullscreen צא ממסך מלא - - + + Pause השהיה diff --git a/translations/deepin-movie_hi_IN.ts b/translations/deepin-movie_hi_IN.ts index d1fa70b31..72ee7e23d 100644 --- a/translations/deepin-movie_hi_IN.ts +++ b/translations/deepin-movie_hi_IN.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Buffering... - + Open folder - + Stereo स्टीरियो - + Left channel - + Right channel - - + + Parse failed - - + + Mute मूक - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View देखें - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - रद्द करो - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo स्टीरियो - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View देखें - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - रद्द करो - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute मूक - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play चलायें - - + + Previous पिछला - - + + Next आगे - - + + Playlist चलाने की सूची - - - - + + + + Fullscreen पूर्ण पटल - + Volume - + Play/Pause बजाएं/रोकें - - + + Miracast - - + + Exit fullscreen पूर्ण स्क्रीन से बाहर आयें - - + + Pause विराम diff --git a/translations/deepin-movie_hr.ts b/translations/deepin-movie_hr.ts index 264b65595..c576bbf91 100644 --- a/translations/deepin-movie_hr.ts +++ b/translations/deepin-movie_hr.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder Neispravna mapa - - + + Open folder Otvori mapu - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Uspješno učitano - - - - + + + + Load failed Neuspjelo učitavanje - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Buffering... - + Open folder Otvori mapu - + Stereo Stereo - + Left channel Lijevi kanal - + Right channel Desni kanal - - + + Parse failed - - + + Mute Utišaj - - + + Volume: %1% Glasnoća: %1% - + Track: %1 - - + + Subtitle %1: %2s Podnapis %1: %2s - - + + delayed odgođeno - - + + advanced napredno - - - - - - - + + + + + + + Speed: %1x Brzina: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View Pogled - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - Otkaži - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Saved to Spremljeno u - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 Neispravna datoteka: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Uspješno učitano - - - - + + + + Load failed Neuspjelo učitavanje - - + + Cannot play the disc - - + + Parse failed - + Open folder Otvori mapu - - + + All (*) - - - - - - - + + + + + + + Speed: %1x Brzina: %1x - + Stereo Stereo - + Left channel Lijevi kanal - + Right channel Desni kanal - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Podnapis %1: %2s - - + + delayed odgođeno - - + + advanced napredno - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View Pogled - + Film screenshot - + Saved to Spremljeno u - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - Otkaži - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute Utišaj - - + + Volume: %1% Glasnoća: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 Neispravna datoteka: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play Reprodukcija - - + + Previous Prijašnje - - + + Next Slijedeće - - + + Playlist Popis izvođenja - - - - + + + + Fullscreen Cijeli zaslon - + Volume - + Play/Pause Reprodukcija/Pauza - - + + Miracast - - + + Exit fullscreen Izađi iz cijelog zaslona - - + + Pause Pauziraj diff --git a/translations/deepin-movie_hu.ts b/translations/deepin-movie_hu.ts index e6570f732..65b8ba2b5 100644 --- a/translations/deepin-movie_hu.ts +++ b/translations/deepin-movie_hu.ts @@ -43,17 +43,17 @@ Kérjük ne lépjen ki a Film alkalmazásból a folyamat közben. QObject - - + + - + Movie Film - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. A Film egy teljes funkcionalitású videolejátszó, amely támogatja a helyi és az adatfolyam média lejátszását többféle videoformátumban. @@ -323,61 +323,32 @@ Kérjük ne lépjen ki a Film alkalmazásból a folyamat közben. Szoftveres dekódolás - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Nincs jogosultsága a mappa használatához - - + + OK OK - - + + Invalid folder Érvénytelen mappa - - + + Open folder Mappa megnyitása - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected A hálózat lecsatlakozva @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Sikeresen betöltve - - - - + + + + Load failed A betöltés sikertelen - - + + Cannot play the disc Nem lehet lejátszani a lemezt - - + + Parse failed Az elemzés nem sikerült - + Open folder Mappa megnyitása - - - - - - - + + + + + + + Speed: %1x Sebesség: %1x - + Stereo Sztereó - + Left channel Bal csatorna - + Right channel Jobb csatorna - + Track: %1 Útvonal: %1 - - + + Unable to adjust the subtitle Nem lehet beállítani a feliratot - - + + Subtitle %1: %2s Felirat %1: %2s - - + + delayed késleltetve - - + + advanced Haladó - + View Megtekintés - + Film screenshot Film képernyőkép készítése - + Saved to Mentve ide - - + + The screenshot is saved A képernyőkép mentése sikeres - - + + Failed to save the screenshot A képernyőkép mentése sikertelen - + Taking the screenshots, please wait... Képernyőkép készítése, kérjük várjon... - - - Cancel - Mégsem - - - - - Restart - - - - + Reading DVD files... DVD-fájlok olvasása... - + Invalid file: %1 Érvénytelen fájl: %1 - + Miracast disconnected Miracast lekapcsolódva - + No matching online subtitles Nincs megfelelő online felirat - - + + All (*) Összes (*) - + 4K video may be stuck A 4K videó megakadhat - + OK OK - - + + Order play Rendezett lejátszás - - + + Shuffle play Véletlenszerű lejátszás - - + + Single play Egy lejátszása - - + + Single loop Egy ismétlése - - + + List loop Lista ismétlése - + Buffering... Pufferelés... - - + + Mute Némítás - - + + Volume: %1% Hangerő: %1 - - + + Cannot open file or stream Nem lehet megnyitni a fájlt vagy az adatfolyamot - + The action is not supported in this video A művelet nem támogatott ebben a videóban - + Connection failed A kapcsolódás sikertelen - - + + Invalid file Érvénytelen fájl - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Felirat (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Kérjük helyezzen be CD/DVD-t - + No video file found Nem található videófájl - + Please load the video first Kérjük először töltse be a videót - - + + Please exit smart dock Kérjük lépjen ki az okos dokkoló módból - + The CD/DVD has been ejected A CD / DVD kiadása megtörtént @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Belső @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Sikeresen betöltve - - - - + + + + Load failed A betöltés sikertelen - - + + Cannot play the disc Nem lehet lejátszani a lemezt - - + + Parse failed Az elemzés nem sikerült - + Open folder Mappa megnyitása - - + + All (*) Összes (*) - - - - - - - + + + + + + + Speed: %1x Sebesség: %1x - + Stereo Sztereó - + Left channel Bal csatorna - + Right channel Jobb csatorna - + Track: %1 Útvonal: %1 - - + + Unable to adjust the subtitle Nem lehet beállítani a feliratot - - + + Subtitle %1: %2s Felirat %1: %2s - - + + delayed késleltetve - - + + advanced Haladó - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Felirat (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Megtekintés - + Film screenshot Film képernyőkép készítése - + Saved to Mentve ide - - + + The screenshot is saved A képernyőkép mentése sikeres - - + + Failed to save the screenshot A képernyőkép mentése sikertelen - + Taking the screenshots, please wait... Képernyőkép készítése, kérjük várjon... - - - Cancel - Mégsem - - - - - Restart - - - - + Reading DVD files... DVD-fájlok olvasása... - + No matching online subtitles Nincs megfelelő online felirat - + 4K video may be stuck A 4K videó megakadhat - + OK OK - - + + Order play Rendezett lejátszás - - + + Shuffle play Véletlenszerű lejátszás - - + + Single play Egy lejátszása - - + + Single loop Egy ismétlése - - + + List loop Lista ismétlése - + Buffering... Pufferelés... - - + + Mute Némítás - - + + Volume: %1% Hangerő: %1 - + Cannot open file or stream Nem lehet megnyitni a fájlt vagy az adatfolyamot - - + + Invalid file Érvénytelen fájl - + Please insert a CD/DVD Kérjük helyezzen be CD/DVD-t - + No video file found Nem található videófájl - + Please load the video first Kérjük először töltse be a videót - - + + Please exit smart dock Kérjük lépjen ki az okos dokkoló módból - + The CD/DVD has been ejected A CD / DVD kiadása megtörtént - + The action is not supported in this video A művelet nem támogatott ebben a videóban - + Invalid file: %1 Érvénytelen fájl: %1 - + Connection failed A kapcsolódás sikertelen - + Miracast disconnected Miracast lekapcsolódva @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Rendezett lejátszás - + Shuffle play Véletlenszerű lejátszás - + Single play Egy lejátszása - + Single loop Egy ismétlése - + List loop Lista ismétlése - + Auto Automatikus - + Open Megnyitás - + Close Bezárás - + %1/Movie%2(%3).jpg %1/Movie%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Lejátszás/Szünet - - + + Previous Előző - - + + Next Következő - - - - + + + + Fullscreen Teljes képernyő - - + + Playlist Lejátszási lista - - + + Miracast Miracast - - + + Exit fullscreen Kilépés a teljes képernyőböl - - + + Pause Szüneteltetés - - - + + + Play Lejátszás - + Volume Hangerő diff --git a/translations/deepin-movie_hy.ts b/translations/deepin-movie_hy.ts index 9932afbf9..5b6625a5c 100644 --- a/translations/deepin-movie_hy.ts +++ b/translations/deepin-movie_hy.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute Անջատել ձայնը - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - Չեղարկել - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + All (*) - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - Չեղարկել - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute Անջատել ձայնը - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play Սկսել - - + + Previous Նախորդ - - + + Next Հաջորդ - - + + Playlist Ցանկ - - - - + + + + Fullscreen - + Volume - + Play/Pause Շարունակել/Ընդհատել - - + + Miracast - - + + Exit fullscreen - - + + Pause Ընդհատել diff --git a/translations/deepin-movie_id.ts b/translations/deepin-movie_id.ts index 169351428..f1ec0e600 100644 --- a/translations/deepin-movie_id.ts +++ b/translations/deepin-movie_id.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Film - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Anda tidak mempunyai ijin untuk beroperasi di folder ini - - + + OK OK - - + + Invalid folder Folder tidak valid - - + + Open folder Buka Folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Jaringan terputus @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Berhasil dimuat - - - - + + + + Load failed Gagal dimuat - - + + Cannot play the disc - - + + Parse failed - + Open folder Buka Folder - - - - - - - + + + + + + + Speed: %1x Cepat: %1x - + Stereo Stereo - + Left channel Kanal kiri - + Right channel Kanal kanan - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Translasi %1: %2s - - + + delayed Penundaan - - + + advanced Terkini - + View Lihat - + Film screenshot Tangkapan layar Film - + Saved to Disimpan ke - - + + The screenshot is saved Tangkapan layar di simpan - - + + Failed to save the screenshot Gagal menyimpan tangkapan layar - + Taking the screenshots, please wait... - - - Cancel - Batal - - - - - Restart - - - - + Reading DVD files... Membaca berkas-berkas DVD... - + Invalid file: %1 Berkas tidak valid: %1 - + Miracast disconnected - + No matching online subtitles Tidak menemukan terjemahan daring yang cocok - - + + All (*) - + 4K video may be stuck - + OK OK - - + + Order play Urutan memainkan - - + + Shuffle play Mainkan acak - - + + Single play - - + + Single loop - - + + List loop - + Buffering... Penyanggaan ... - - + + Mute Senyap - - + + Volume: %1% Volume: %1% - - + + Cannot open file or stream - + The action is not supported in this video - + Connection failed - - + + Invalid file Berkas tidak valid - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Translasi (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD - + No video file found Tidak ditemukan berkas video - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Internal @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Berhasil dimuat - - - - + + + + Load failed Gagal dimuat - - + + Cannot play the disc - - + + Parse failed - + Open folder Buka Folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x Cepat: %1x - + Stereo Stereo - + Left channel Kanal kiri - + Right channel Kanal kanan - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Translasi %1: %2s - - + + delayed Penundaan - - + + advanced Terkini - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Translasi (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Lihat - + Film screenshot Tangkapan layar Film - + Saved to Disimpan ke - - + + The screenshot is saved Tangkapan layar di simpan - - + + Failed to save the screenshot Gagal menyimpan tangkapan layar - + Taking the screenshots, please wait... - - - Cancel - Batal - - - - - Restart - - - - + Reading DVD files... Membaca berkas-berkas DVD... - + No matching online subtitles Tidak menemukan terjemahan daring yang cocok - + 4K video may be stuck - + OK OK - - + + Order play Urutan memainkan - - + + Shuffle play Mainkan acak - - + + Single play - - + + Single loop - - + + List loop - + Buffering... Penyanggaan ... - - + + Mute Senyap - - + + Volume: %1% Volume: %1% - + Cannot open file or stream - - + + Invalid file Berkas tidak valid - + Please insert a CD/DVD - + No video file found Tidak ditemukan berkas video - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 Berkas tidak valid: %1 - + Connection failed - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Urutan memainkan - + Shuffle play Mainkan acak - + Single play - + Single loop - + List loop - + Auto Otomatis - + Open Buka - + Close Tutup - + %1/Movie%2(%3).jpg %1/Movie%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Mainkan/Jeda - - + + Previous Sebelumnya - - + + Next Selanjutnya - - - - + + + + Fullscreen Layar Penuh - - + + Playlist Daftar Putar - - + + Miracast - - + + Exit fullscreen Keluar layar penuh - - + + Pause Jeda - - - + + + Play Putar - + Volume diff --git a/translations/deepin-movie_it.ts b/translations/deepin-movie_it.ts index 00ec98511..bfc2087cd 100644 --- a/translations/deepin-movie_it.ts +++ b/translations/deepin-movie_it.ts @@ -43,17 +43,17 @@ Non uscire dall'app durante il processo. QObject - - + + - + Movie Video - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Movie è un meraviglioso e funzionale player video dal design borderless. Offre il supporto per riproduzioni video locali e streaming, inoltre riconosce diversi formati video. Localizzazione italiana a cura di Carofano Massimo Antonio. @@ -324,61 +324,32 @@ Localizzazione italiana a cura di Carofano Massimo Antonio. Decodifica software - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Non hai i permessi per utilizzare questa cartella - - + + OK OK - - + + Invalid folder Cartella non valida - - + + Open folder Apri cartella - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Rete disconnessa @@ -717,270 +688,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Caricamento riuscito - - - - + + + + Load failed Caricamento fallito - - + + Cannot play the disc Non posso eseguire il Disco - - + + Parse failed Parse fallito - + Open folder Apri cartella - - - - - - - + + + + + + + Speed: %1x Velocità: %1x - + Stereo Stereo - + Left channel Canale sinistro - + Right channel Canale destro - + Track: %1 Traccia: %1 - - + + Unable to adjust the subtitle Impossibile regolare i sottotitoli - - + + Subtitle %1: %2s Sottotitoli: %1: %2s - - + + delayed ritardato - - + + advanced posticipare - + View Visualizza - + Film screenshot Screenshot del video - + Saved to Salva in - - + + The screenshot is saved Lo screenshot è stato salvato - - + + Failed to save the screenshot Salvataggio screenshot fallito - + Taking the screenshots, please wait... Acquisizione screenshot, attendere... - - - Cancel - Annulla - - - - - Restart - - - - + Reading DVD files... Lettura file DVD in corso... - + Invalid file: %1 File non valido: %1 - + Miracast disconnected Miracast disconnesso - + No matching online subtitles Non vi sono sottotitoli disponibili online - - + + All (*) Tutti (*) - + 4K video may be stuck I video in 4K potrebbero essere visualizzati in modo non ottimale - + OK OK - - + + Order play Ordine di play - - + + Shuffle play Riproduzione casuale - - + + Single play Riproduzione singola - - + + Single loop Ripetizione singola - - + + List loop Ripetizione di Gruppo - + Buffering... Buffering... - - + + Mute Muto - - + + Volume: %1% Volume: %1% - - + + Cannot open file or stream Impossibile aprire file o stream - + The action is not supported in this video L'azione non è supportata in questo video - + Connection failed Connessione fallita - - + + Invalid file File invalido - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Sottotitoli (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Inserisci un CD/DVD - + No video file found Nessun file video trovato - + Please load the video first Carica prima il video - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected Il CD/DVD è stato rimosso @@ -1132,7 +1091,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Interno @@ -1140,269 +1099,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Caricamento riuscito - - - - + + + + Load failed Caricamento fallito - - + + Cannot play the disc Non posso eseguire il Disco - - + + Parse failed Parse fallito - + Open folder Apri cartella - - + + All (*) Tutti (*) - - - - - - - + + + + + + + Speed: %1x Velocità: %1x - + Stereo Stereo - + Left channel Canale sinistro - + Right channel Canale destro - + Track: %1 Traccia: %1 - - + + Unable to adjust the subtitle Impossibile regolare i sottotitoli - - + + Subtitle %1: %2s Sottotitoli: %1: %2s - - + + delayed ritardato - - + + advanced posticipare - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Sottotitoli (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Visualizza - + Film screenshot Screenshot del video - + Saved to Salva in - - + + The screenshot is saved Lo screenshot è stato salvato - - + + Failed to save the screenshot Salvataggio screenshot fallito - + Taking the screenshots, please wait... Acquisizione screenshot, attendere... - - - Cancel - Annulla - - - - - Restart - - - - + Reading DVD files... Lettura file DVD in corso... - + No matching online subtitles Non vi sono sottotitoli disponibili online - + 4K video may be stuck I video in 4K potrebbero essere visualizzati in modo non ottimale - + OK OK - - + + Order play Ordine di play - - + + Shuffle play Riproduzione casuale - - + + Single play Riproduzione singola - - + + Single loop Ripetizione singola - - + + List loop Ripetizione di Gruppo - + Buffering... Buffering... - - + + Mute Muto - - + + Volume: %1% Volume: %1% - + Cannot open file or stream Impossibile aprire file o stream - - + + Invalid file File invalido - + Please insert a CD/DVD Inserisci un CD/DVD - + No video file found Nessun file video trovato - + Please load the video first Carica prima il video - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected Il CD/DVD è stato rimosso - + The action is not supported in this video L'azione non è supportata in questo video - + Invalid file: %1 File non valido: %1 - + Connection failed Connessione fallita - + Miracast disconnected Miracast disconnesso @@ -1525,47 +1472,47 @@ and whether to restart it? dmr::Settings - + Order play Ordine di play - + Shuffle play Riproduzione casuale - + Single play Riproduzione singola - + Single loop Ripetizione singola - + List loop Ripetizione di Gruppo - + Auto Auto - + Open Apri - + Close Chiudi - + %1/Movie%2(%3).jpg %1/Movie%2(%3).jpg @@ -1573,63 +1520,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Play/Pausa - - + + Previous Precedente - - + + Next Avanti - - - - + + + + Fullscreen Schermo intero - - + + Playlist Playlist - - + + Miracast Miracast - - + + Exit fullscreen Esci dalla modalità fullscreen - - + + Pause Pausa - - - + + + Play Play - + Volume Volume diff --git a/translations/deepin-movie_ja.ts b/translations/deepin-movie_ja.ts index ed9c5b8c4..5f597efc4 100644 --- a/translations/deepin-movie_ja.ts +++ b/translations/deepin-movie_ja.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Buffering... - + Open folder - + Stereo ステレオ - + Left channel - + Right channel - - + + Parse failed - - + + Mute 消音 - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View 表示 - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - キャンセル - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo ステレオ - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View 表示 - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - キャンセル - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute 消音 - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play 再生 - - + + Previous 前へ - - + + Next 次へ - - + + Playlist プレイリスト - - - - + + + + Fullscreen フルスクリーンにする - + Volume - + Play/Pause 再生・一時停止 - - + + Miracast - - + + Exit fullscreen フルスクリーンを解除 - - + + Pause 一時停止 diff --git a/translations/deepin-movie_ko.ts b/translations/deepin-movie_ko.ts index 6439a04b1..787f5a6a7 100644 --- a/translations/deepin-movie_ko.ts +++ b/translations/deepin-movie_ko.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie 동영상 - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Movie는 다양한 비디오 형식으로 로컬 및 스트리밍 미디어 재생을 지원하는 모든 기능을 갖춘 비디오 플레이어입니다. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder 이 폴더를 조작할 수 있는 권한이 없습니다 - - + + OK 확인 - - + + Invalid folder 인식할 수 없는 폴더 - - + + Open folder 폴더 열기 - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected 네트워크 연결 끊김 @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully 불러오기 성공 - - - - + + + + Load failed 불러오기 실패 - - + + Cannot play the disc - - + + Parse failed 구문분석 실패 - + Open folder 폴더 열기 - - - - - - - + + + + + + + Speed: %1x 속도: %1x - + Stereo 스테레오 - + Left channel 왼쪽 채널 - + Right channel 오른쪽 채널 - + Track: %1 트랙: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s 자막 %1: %2초 - - + + delayed 지연됨 - - + + advanced 고급 - + View 보기 - + Film screenshot 필름 스크린샷 - + Saved to 저장됨: - - + + The screenshot is saved 스크린샷이 저장됩니다 - - + + Failed to save the screenshot 스크린샷을 저장하지 못했습니다 - + Taking the screenshots, please wait... 스크린 샷 찍는 중, 기다려 주십시오... - - - Cancel - 취소 - - - - - Restart - - - - + Reading DVD files... DVD 파일 읽는 중... - + Invalid file: %1 인식할 수 없는 파일: %1 - + Miracast disconnected - + No matching online subtitles 일치하는 온라인 자막 없음 - - + + All (*) - + 4K video may be stuck 4K 비디오가 멈출 수 있습니다 - + OK 확인 - - + + Order play 재생 명령 - - + + Shuffle play 재생 순서 섞기 - - + + Single play 싱글 재생 - - + + Single loop 싱글 루프 - - + + List loop 목록 루프 - + Buffering... 버퍼링... - - + + Mute 음소거 - - + + Volume: %1% 음량: %1% - - + + Cannot open file or stream 파일 또는 스트림을 열 수 없습니다 - + The action is not supported in this video - + Connection failed 연결 실패 - - + + Invalid file 무효한 파일 - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) 자막 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD CD/DVD를 삽입하십시오 - + No video file found 비디오 파일을 찾을 수 없음 - + Please load the video first 먼저 비디오를 불러오십시오 - - + + Please exit smart dock - + The CD/DVD has been ejected CD/DVD가 배출되었습니다 @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal 내부 @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully 불러오기 성공 - - - - + + + + Load failed 불러오기 실패 - - + + Cannot play the disc - - + + Parse failed 구문분석 실패 - + Open folder 폴더 열기 - - + + All (*) - - - - - - - + + + + + + + Speed: %1x 속도: %1x - + Stereo 스테레오 - + Left channel 왼쪽 채널 - + Right channel 오른쪽 채널 - + Track: %1 트랙: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s 자막 %1: %2초 - - + + delayed 지연됨 - - + + advanced 고급 - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) 자막 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View ㅂㅗ기 - + Film screenshot 필름 스크린샷 - + Saved to 저장됨: - - + + The screenshot is saved 스크린샷이 저장됩니다 - - + + Failed to save the screenshot 스크린샷을 저장하지 못했습니다 - + Taking the screenshots, please wait... 스크린 샷 찍는 중, 기다려 주십시오... - - - Cancel - 취소 - - - - - Restart - - - - + Reading DVD files... DVD 파일 읽는 중... - + No matching online subtitles 일치하는 온라인 자막 없음 - + 4K video may be stuck 4K 비디오가 멈출 수 있습니다 - + OK 확인 - - + + Order play 재생 명령 - - + + Shuffle play 재생 순서 섞기 - - + + Single play 싱글 재생 - - + + Single loop 싱글 루프 - - + + List loop 목록 루프 - + Buffering... 버퍼링... - - + + Mute 음소거 - - + + Volume: %1% 음량: %1% - + Cannot open file or stream 파일 또는 스트림을 열 수 없습니다 - - + + Invalid file 무효한 파일 - + Please insert a CD/DVD CD/DVD를 삽입하십시오 - + No video file found 비디오 파일을 찾을 수 없음 - + Please load the video first 먼저 비디오를 불러오십시오 - - + + Please exit smart dock - + The CD/DVD has been ejected CD/DVD가 배출되었습니다 - + The action is not supported in this video - + Invalid file: %1 인식할 수 없는 파일: %1 - + Connection failed 연결 실패 - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play 재생 명령 - + Shuffle play 재생 순서 섞기 - + Single play 싱글 재생 - + Single loop 싱글 루프 - + List loop 목록 루프 - + Auto 자동 - + Open 열기 - + Close 닫기 - + %1/Movie%2(%3).jpg %1/Movie%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause 재생/일시정지 - - + + Previous 이전 - - + + Next 다음 - - - - + + + + Fullscreen 전체화면 - - + + Playlist 재생 목록 - - + + Miracast - - + + Exit fullscreen 전체화면 종료 - - + + Pause 일시정지 - - - + + + Play 재생 설정 - + Volume 음량 diff --git a/translations/deepin-movie_ku_IQ.ts b/translations/deepin-movie_ku_IQ.ts index 0f640b8e2..83ce92935 100644 --- a/translations/deepin-movie_ku_IQ.ts +++ b/translations/deepin-movie_ku_IQ.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder Peldanka nederbasdar - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder Destûra te tune ye ku di peldankê de guherînê bike @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Barkirin bi ser ket - - - - + + + + Load failed Barkirin bi ser neket - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Buffering... - + Open folder - + Stereo Cotekanal - + Left channel Kanala çep - + Right channel Kanala rast - - + + Parse failed - - + + Mute Bêdeng - - + + Volume: %1% Deng: %1% - + Track: %1 - - + + Subtitle %1: %2s Binnivîs %1: %2s - - + + delayed derengman - - + + advanced pêşketî - - - - - - - + + + + + + + Speed: %1x Lez: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View Dîtin - + Film screenshot Dîmena dîmenderê ya fîlmê - + Taking the screenshots, please wait... - - - Cancel - Betal Bike - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Saved to Hat qeydkirin li - - + + The screenshot is saved Dîmena dîmenderê hat qeydkirin - - + + Failed to save the screenshot - + Invalid file: %1 Pelê nederbasdar: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Barkirin bi ser ket - - - - + + + + Load failed Barkirin bi ser neket - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x Lez: %1x - + Stereo Cotekanal - + Left channel Kanala çep - + Right channel Kanala rast - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Binnivîs %1: %2s - - + + delayed derengman - - + + advanced pêşketî - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View Dîtin - + Film screenshot Dîmena dîmenderê ya fîlmê - + Saved to Hat qeydkirin li - - + + The screenshot is saved Dîmena dîmenderê hat qeydkirin - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - Betal Bike - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute Bêdeng - - + + Volume: %1% Deng: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 Pelê nederbasdar: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play Lê Bide - - + + Previous Paşve - - + + Next Pêşve - - + + Playlist Lîsteya Lêxistinê - - - - + + + + Fullscreen Dîmentêr - + Volume - + Play/Pause Lêxe/Bisekinîne - - + + Miracast - - + + Exit fullscreen Ji dîmentêrê derkeve - - + + Pause Bisekine diff --git a/translations/deepin-movie_lt.ts b/translations/deepin-movie_lt.ts index 2490f2e18..528b5bb46 100644 --- a/translations/deepin-movie_lt.ts +++ b/translations/deepin-movie_lt.ts @@ -270,27 +270,6 @@ Please do not exit the Movie app during the process. Software decoding - - Customize - - - - Decode mode - - - - Video out - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - Rendering engine - - UrlDialog @@ -704,14 +683,6 @@ and whether to restart it? Miracast disconnected - - Cancel - Atsisakyti - - - Restart - - dmr::MovieInfo @@ -1021,14 +992,6 @@ and whether to restart it? Miracast disconnected - - Cancel - Atsisakyti - - - Restart - - dmr::Platform_PlayItemWidget diff --git a/translations/deepin-movie_ml.ts b/translations/deepin-movie_ml.ts index 978b0f41b..b3b7f395a 100644 --- a/translations/deepin-movie_ml.ts +++ b/translations/deepin-movie_ml.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - റദ്ദാക്കുക - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - റദ്ദാക്കുക - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play - - + + Previous - - + + Next അടുത്തത് - - + + Playlist - - - - + + + + Fullscreen - + Volume - + Play/Pause - - + + Miracast - - + + Exit fullscreen - - + + Pause diff --git a/translations/deepin-movie_mn.ts b/translations/deepin-movie_mn.ts index ef602ba7d..5e773cdb3 100644 --- a/translations/deepin-movie_mn.ts +++ b/translations/deepin-movie_mn.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder Буруу хавтас - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder Танд энэ хавтастай ажиллахад зөвшөөрөл байхгүй байна @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute Дуу хаах - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - Цуцлах - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - Цуцлах - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute Дуу хаах - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play Тоглуулах - - + + Previous Ѳмнѳх - - + + Next Дараах - - + + Playlist Жагсаалт - - - - + + + + Fullscreen Дэлгэц дүүрэн - + Volume - + Play/Pause Тоглуулах/Зогсоох - - + + Miracast - - + + Exit fullscreen Дүүрэн дэлгэцээс гарах - - + + Pause diff --git a/translations/deepin-movie_ms.ts b/translations/deepin-movie_ms.ts index 56baf36bd..7fea519da 100644 --- a/translations/deepin-movie_ms.ts +++ b/translations/deepin-movie_ms.ts @@ -43,17 +43,17 @@ Jangan tutup apl Cereka ketika proses masih berlangsung. QObject - - + + - + Movie Cereka - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Cereka ialah sebuah pemain video berciri-lengkap, yang dapat memainkan media setempat dan penstriman dalam pelbagai format video. @@ -323,61 +323,32 @@ Jangan tutup apl Cereka ketika proses masih berlangsung. Penyahkodan perisian - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Anda tidak mendapat keizinan untuk mengoperasi folder ini - - + + OK OK - - + + Invalid folder Folder tidak sah - - + + Open folder Buka folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Rangkaian terputus @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Berjaya dimuatkan - - - - + + + + Load failed Gagal dimuatkan - - + + Cannot play the disc Tidak dapat memainkan cakera - - + + Parse failed Gagal dihuraikan - + Open folder Buka folder - - - - - - - + + + + + + + Speed: %1x Kelajuan: %1x - + Stereo Stereo - + Left channel Saluran kiri - + Right channel Saluran kanan - + Track: %1 Trek: %1 - - + + Unable to adjust the subtitle Gagal melaras sari kata - - + + Subtitle %1: %2s Sari kata %1: %2s - - + + delayed lengah - - + + advanced lanjutan - + View Lihat - + Film screenshot Tangkap layar filem - + Saved to Disimpan ke - - + + The screenshot is saved Tangkap layar telah disimpan - - + + Failed to save the screenshot Gagal menyimpan tangkap layar - + Taking the screenshots, please wait... Mengambil tangkap layar, tunggu sebentar... - - - Cancel - Batal - - - - - Restart - - - - + Reading DVD files... Membaca fail DVD... - + Invalid file: %1 Fail tidak sah: %1 - + Miracast disconnected Miracast terputus - + No matching online subtitles Tiada sari kata dalam talian yang sepadan - - + + All (*) Semua (*) - + 4K video may be stuck Video 4K mungkin tersekat-sekat - + OK OK - - + + Order play Main bertertib - - + + Shuffle play Main berkocok - - + + Single play Main tunggal - - + + Single loop Sekali ulang - - + + List loop Ulang senarai - + Buffering... Menimbal... - - + + Mute Senyap - - + + Volume: %1% Volum: %1% - - + + Cannot open file or stream Tidak dapat membuka fail atau strim - + The action is not supported in this video Tindakan tidak disokong dalam video ini - + Connection failed Sambungan gagal - - + + Invalid file Fail tidak sah - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Sari kata (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Sila masukkan satu CD/DVD - + No video file found Tiada fail video ditemui - + Please load the video first Sila muatkan video terlebih dahulu - - + + Please exit smart dock Sila keluar dari labuh pintar - + The CD/DVD has been ejected CD/DVD telah dilentingkan @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Dalaman @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Berjaya dimuatkan - - - - + + + + Load failed Gagal dimuatkan - - + + Cannot play the disc Tidak dapat memainkan cakera - - + + Parse failed Gagal dihuraikan - + Open folder Buka folder - - + + All (*) Semua (*) - - - - - - - + + + + + + + Speed: %1x Kelajuan: %1x - + Stereo Stereo - + Left channel Saluran kiri - + Right channel Saluran kanan - + Track: %1 Trek: %1 - - + + Unable to adjust the subtitle Gagal melaras sari kata - - + + Subtitle %1: %2s Sari kata %1: %2s - - + + delayed lengah - - + + advanced lanjutan - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Sari kata (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Lihat - + Film screenshot Tangkap layar filem - + Saved to Disimpan ke - - + + The screenshot is saved Tangkap layar telah disimpan - - + + Failed to save the screenshot Gagal menyimpan tangkap layar - + Taking the screenshots, please wait... Mengambil tangkap layar, tunggu sebentar... - - - Cancel - Batal - - - - - Restart - - - - + Reading DVD files... Membaca fail DVD... - + No matching online subtitles Tiada sari kata dalam talian yang sepadan - + 4K video may be stuck Video 4K mungkin tersekat-sekat - + OK OK - - + + Order play Main bertertib - - + + Shuffle play Main berkocok - - + + Single play Sekali main - - + + Single loop Sekali ulang - - + + List loop Ulang senarai - + Buffering... Menimbal... - - + + Mute Senyap - - + + Volume: %1% Volum: %1% - + Cannot open file or stream Tidak dapat membuka fail atau strim - - + + Invalid file Fail tidak sah - + Please insert a CD/DVD Sila masukkan satu CD/DVD - + No video file found Tiada fail video ditemui - + Please load the video first Sila muatkan video terlebih dahulu - - + + Please exit smart dock Sila keluar dari labuh pintar - + The CD/DVD has been ejected CD/DVD telah dilentingkan - + The action is not supported in this video Tindakan tidak disokong dalam video ini - + Invalid file: %1 Fail tidak sah: %1 - + Connection failed Sambungan gagal - + Miracast disconnected Miracast terputus @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Main bertertib - + Shuffle play Main berkocok - + Single play Sekali main - + Single loop Sekali ulang - + List loop Ulang senarai - + Auto Auto - + Open Buka - + Close Tutup - + %1/Movie%2(%3).jpg %1/Cereka%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Main/Jeda - - + + Previous Terdahulu - - + + Next Berikutnya - - - - + + + + Fullscreen Skrin Penuh - - + + Playlist Senarai Main - - + + Miracast Miracast - - + + Exit fullscreen Keluar dari skrin penuh - - + + Pause Jeda - - - + + + Play Main - + Volume Volum diff --git a/translations/deepin-movie_nb.ts b/translations/deepin-movie_nb.ts index 27d50eb31..26fe5ad55 100644 --- a/translations/deepin-movie_nb.ts +++ b/translations/deepin-movie_nb.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Film - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Deepin Film er en veldesignet og fullverdig video spiller med et enkelt grenseløst design. Den støtter lokal og strømming av media innhold, i forskjellige video formater. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Du har ikke tillatelse å bruke denne mappen - - + + OK OK - - + + Invalid folder Ugyldig mappe - - + + Open folder Åpne mappe - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Nettverk koblet fra @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Innlasting vellykket - - - - + + + + Load failed Innlasting feilet - - + + Cannot play the disc - - + + Parse failed Parsingen feilet - + Open folder Åpne mappe - - - - - - - + + + + + + + Speed: %1x Hastighet: %1x - + Stereo Stereo - + Left channel Venstre kanal - + Right channel Høyre kanal - + Track: %1 Spor: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Tekst %1: %2s - - + + delayed forsinket - - + + advanced avansert - + View Vis - + Film screenshot Film skjermbilde - + Saved to Lagret til - - + + The screenshot is saved Skjermbilde er lagret - - + + Failed to save the screenshot Lagring av skjermbilde feilet - + Taking the screenshots, please wait... Tar skjermbildet, vennligst vent... - - - Cancel - Avbryt - - - - - Restart - - - - + Reading DVD files... Leser DVD-filer... - + Invalid file: %1 Ugyldig fil: %1 - + Miracast disconnected - + No matching online subtitles Ingen matchende tekster på nett - - + + All (*) - + 4K video may be stuck 4K-video kan bli stående fast - + OK OK - - + + Order play Ordne avspilling - - + + Shuffle play Tilfeldig rekkefølge - - + + Single play Enkel avspilling - - + + Single loop Gjenta en gang - - + + List loop Gjenta liste - + Buffering... Bruffer... - - + + Mute Demp - - + + Volume: %1% Volume: %1% - - + + Cannot open file or stream - + The action is not supported in this video - + Connection failed - - + + Invalid file Ugyldig fil - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Tekst (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Sett inn CD/DVD - + No video file found Ingen videofil funnet - + Please load the video first Vennligst last inn video først - - + + Please exit smart dock - + The CD/DVD has been ejected @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Innlasting vellykket - - - - + + + + Load failed Innlasting feilet - - + + Cannot play the disc - - + + Parse failed Parsingen feilet - + Open folder Åpne mappe - - + + All (*) - - - - - - - + + + + + + + Speed: %1x Hastighet: %1x - + Stereo Stereo - + Left channel Venstre kanal - + Right channel Høyre kanal - + Track: %1 Spor: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Tekst %1: %2s - - + + delayed forsinket - - + + advanced avansert - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Tekst (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Vis - + Film screenshot Film skjermbilde - + Saved to Lagret til - - + + The screenshot is saved Skjermbilde er lagret - - + + Failed to save the screenshot Lagring av skjermbilde feilet - + Taking the screenshots, please wait... Tar skjermbildet, vennligst vent... - - - Cancel - Avbryt - - - - - Restart - - - - + Reading DVD files... Leser DVD-filer... - + No matching online subtitles Ingen matchende tekster på nett - + 4K video may be stuck 4K-video kan bli stående fast - + OK OK - - + + Order play Ordne avspilling - - + + Shuffle play Tilfeldig rekkefølge - - + + Single play Enkel avspilling - - + + Single loop Gjenta en gang - - + + List loop Gjenta liste - + Buffering... Bruffer... - - + + Mute Demp - - + + Volume: %1% Volume: %1% - + Cannot open file or stream - - + + Invalid file Ugyldig fil - + Please insert a CD/DVD Sett inn CD/DVD - + No video file found Ingen videofil funnet - + Please load the video first Vennligst last inn video først - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 Ugyldig fil: %1 - + Connection failed - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Ordne avspilling - + Shuffle play Tilfeldig rekkefølge - + Single play Enkel avspilling - + Single loop Gjenta en gang - + List loop Gjenta liste - + Auto Auto - + Open Åpne - + Close Lukk - + %1/Movie%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Spill/Pause - - + + Previous Forrige - - + + Next Neste - - - - + + + + Fullscreen Fullskjerm - - + + Playlist Spilleliste - - + + Miracast - - + + Exit fullscreen Lukk fullskjerm - - + + Pause Pause - - - + + + Play Spill av - + Volume diff --git a/translations/deepin-movie_ne.ts b/translations/deepin-movie_ne.ts index 39bb64442..55450dcbc 100644 --- a/translations/deepin-movie_ne.ts +++ b/translations/deepin-movie_ne.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute म्यूट गर्नुहोस् - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - रद्द गर्नुहोस् - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - रद्द गर्नुहोस् - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute म्यूट गर्नुहोस् - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play - - + + Previous - - + + Next अर्को - - + + Playlist - - - - + + + + Fullscreen - + Volume - + Play/Pause - - + + Miracast - - + + Exit fullscreen - - + + Pause diff --git a/translations/deepin-movie_nl.ts b/translations/deepin-movie_nl.ts index 6724b1a0d..c322d688c 100644 --- a/translations/deepin-movie_nl.ts +++ b/translations/deepin-movie_nl.ts @@ -43,17 +43,17 @@ Sluit het programma niet af. QObject - - + + - + Movie Video - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Video's is een videospeler vol mogelijkheden die lokale video's en streams in allerlei formaten afspeelt. @@ -323,61 +323,32 @@ Sluit het programma niet af. Softwaredecodering - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Je bent niet gemachtigd om deze map te gebruiken - - + + OK Oké - - + + Invalid folder Ongeldige map - - + + Open folder Map openen - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Geen internetverbinding @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Laden voltooid - - - - + + + + Load failed Laden mislukt - - + + Cannot play the disc De schijf kan niet worden afgespeeld - - + + Parse failed Verwerken mislukt - + Open folder Map openen - - - - - - - + + + + + + + Speed: %1x Snelheid: %1x - + Stereo Stereo - + Left channel Linkerkanaal - + Right channel Rechterkanaal - + Track: %1 Nummer: %1 - - + + Unable to adjust the subtitle De ondertiteling kan niet worden aangepast - - + + Subtitle %1: %2s Ondertitel %1: %2s - - + + delayed vertraagd - - + + advanced geavanceerd - + View Bekijken - + Film screenshot Schermfoto van film - + Saved to Opgeslagen in - - + + The screenshot is saved De schermfoto is opgelagen - - + + Failed to save the screenshot De schermfoto kan niet worden opgeslagen - + Taking the screenshots, please wait... Bezig met maken van schermfoto's... - - - Cancel - Annuleren - - - - - Restart - - - - + Reading DVD files... Bezig met uitlezen van dvd-bestanden... - + Invalid file: %1 Ongeldig bestand: %1 - + Miracast disconnected Miracast is ontkoppeld - + No matching online subtitles Geen ondertiteling aangetroffen op internet - - + + All (*) Alles (*) - + 4K video may be stuck 4K-video kan haperen - + OK Oké - - + + Order play Afspeelvolgorde - - + + Shuffle play Willekeurig afspelen - - + + Single play Eén keer afspelen - - + + Single loop Eén keer herhalen - - + + List loop Lijst herhalen - + Buffering... Bezig met bufferen... - - + + Mute Dempen - - + + Volume: %1% Volume: %1% - - + + Cannot open file or stream Bestand of stream kan niet worden geopend - + The action is not supported in this video Deze actie wordt niet ondersteund door deze video - + Connection failed Verbinding mislukt - - + + Invalid file Ongeldig bestand - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Ondertitel (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Voer een cd of dvd in - + No video file found Geen videobestand aangetroffen - + Please load the video first Laad eerst de video - - + + Please exit smart dock Sluit het slimme dock af - + The CD/DVD has been ejected De cd/dvd is uitgeworpen @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Intern @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Laden voltooid - - - - + + + + Load failed Laden mislukt - - + + Cannot play the disc De schijf kan niet worden afgespeeld - - + + Parse failed Verwerken mislukt - + Open folder Map openen - - + + All (*) Alles (*) - - - - - - - + + + + + + + Speed: %1x Snelheid: %1x - + Stereo Stereo - + Left channel Linkerkanaal - + Right channel Rechterkanaal - + Track: %1 Nummer: %1 - - + + Unable to adjust the subtitle De ondertiteling kan niet worden aangepast - - + + Subtitle %1: %2s Ondertitel %1: %2s - - + + delayed vertraagd - - + + advanced geavanceerd - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Ondertitel (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Bekijk - + Film screenshot Schermfoto van film - + Saved to Opgeslagen in - - + + The screenshot is saved De schermfoto is opgelagen - - + + Failed to save the screenshot De schermfoto kan niet worden opgeslagen - + Taking the screenshots, please wait... Bezig met maken van schermfoto's... - - - Cancel - Annuleren - - - - - Restart - - - - + Reading DVD files... Bezig met uitlezen van dvd-bestanden... - + No matching online subtitles Geen ondertiteling aangetroffen op internet - + 4K video may be stuck 4K-video kan haperen - + OK Oké - - + + Order play Afspeelvolgorde - - + + Shuffle play Willekeurig afspelen - - + + Single play Eén keer afspelen - - + + Single loop Eén keer herhalen - - + + List loop Lijst herhalen - + Buffering... Bezig met bufferen... - - + + Mute Dempen - - + + Volume: %1% Volume: %1% - + Cannot open file or stream Bestand of stream kan niet worden geopend - - + + Invalid file Ongeldig bestand - + Please insert a CD/DVD Voer een cd of dvd in - + No video file found Geen videobestand aangetroffen - + Please load the video first Laad eerst de video - - + + Please exit smart dock Sluit het slimme dock af - + The CD/DVD has been ejected De cd/dvd is uitgeworpen - + The action is not supported in this video Deze actie wordt niet ondersteund door deze video - + Invalid file: %1 Ongeldig bestand: %1 - + Connection failed Verbinding mislukt - + Miracast disconnected Miracast is ontkoppeld @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Afspeelvolgorde - + Shuffle play Willekeurig afspelen - + Single play Eén keer afspelen - + Single loop Eén keer herhalen - + List loop Lijst herhalen - + Auto Automatisch - + Open Openen - + Close Sluiten - + %1/Movie%2(%3).jpg %1/Film%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Afspelen/Pauzeren - - + + Previous Vorige - - + + Next Volgende - - - - + + + + Fullscreen Beeldvullende modus - - + + Playlist Afspeellijst - - + + Miracast Miracast - - + + Exit fullscreen Beeldvullende modus verlaten - - + + Pause Pauzeren - - - + + + Play Afspelen - + Volume Volume diff --git a/translations/deepin-movie_pam.ts b/translations/deepin-movie_pam.ts index b25fbaff9..aa6782406 100644 --- a/translations/deepin-movie_pam.ts +++ b/translations/deepin-movie_pam.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + All (*) - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute I-mute - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - I-cancel - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - I-cancel - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute I-mute - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play - - + + Previous - - + + Next - - + + Playlist - - - - + + + + Fullscreen I-fullscreen - + Volume - + Play/Pause - - + + Miracast - - + + Exit fullscreen Lumwal fullscreen - - + + Pause I-pause diff --git a/translations/deepin-movie_pl.ts b/translations/deepin-movie_pl.ts index 785621c58..573822ec6 100644 --- a/translations/deepin-movie_pl.ts +++ b/translations/deepin-movie_pl.ts @@ -43,17 +43,17 @@ Nie wychodź z aplikacji Filmy podczas trwania procesu. QObject - - + + - + Movie Filmy - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Filmy to w pełni funkcjonalny odtwarzacz wideo, obsługujący odtwarzanie lokalnych i strumieniowych multimediów w wielu formatach wideo. @@ -323,61 +323,32 @@ Nie wychodź z aplikacji Filmy podczas trwania procesu. Dekoder programowy - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Nie posiadasz uprawnień do wykonywania działań na tym katalogu - - + + OK OK - - + + Invalid folder Nieprawidłowy katalog - - + + Open folder Otwórz katalog - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Sieć rozłączona @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Wczytano pomyślnie - - - - + + + + Load failed Błąd wczytywania - - + + Cannot play the disc Nie można odtworzyć płyty - - + + Parse failed Analiza nie powiodła się - + Open folder Otwórz katalog - - - - - - - + + + + + + + Speed: %1x Prędkość: %1x - + Stereo Stereo - + Left channel Lewy kanał - + Right channel Prawy kanał - + Track: %1 Ścieżka: %1 - - + + Unable to adjust the subtitle Nie udało się dostosować napisów - - + + Subtitle %1: %2s Napisy %1: %2s - - + + delayed opóźnione - - + + advanced zaawansowane - + View Wyświetl - + Film screenshot Zrzut ekranu - + Saved to Zapisano do - - + + The screenshot is saved Zrzut ekranu został zapisany - - + + Failed to save the screenshot Nie udało się zapisać zrzutu ekranu - + Taking the screenshots, please wait... Robienie zrzutów ekranu, proszę czekać... - - - Cancel - Anuluj - - - - - Restart - - - - + Reading DVD files... Odczytywanie plików DVD... - + Invalid file: %1 Nieprawidłowy plik: %1 - + Miracast disconnected Miracast rozłączono - + No matching online subtitles Brak pasujących napisów online - - + + All (*) Wszystkie (*) - + 4K video may be stuck Filmy w 4K mogą się zacinać - + OK OK - - + + Order play Uporządkowana - - + + Shuffle play Losowa - - + + Single play Pojedyncze odtworzenie - - + + Single loop Pojedyncza pętla - - + + List loop Zapętlona lista - + Buffering... Buforowanie... - - + + Mute Wycisz - - + + Volume: %1% Głośność: %1% - - + + Cannot open file or stream Nie można otworzyć pliku lub strumienia - + The action is not supported in this video Ta akcja nie jest wspierana przez ten typ wideo - + Connection failed Połączenie nieudane - - + + Invalid file Nieprawidłowy plik - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Napisy (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Proszę włożyć płytę CD/DVD - + No video file found Nie znaleziono pliku wideo - + Please load the video first Najpierw wczytaj wideo - - + + Please exit smart dock Proszę wyjść z inteligentnej stacji dokującej - + The CD/DVD has been ejected Płyta CD/DVD została wysunięta @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Wewnętrzny @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Wczytano pomyślnie - - - - + + + + Load failed Błąd wczytywania - - + + Cannot play the disc Nie można odtworzyć płyty - - + + Parse failed Błąd analizy - + Open folder Otwórz katalog - - + + All (*) Wszystkie (*) - - - - - - - + + + + + + + Speed: %1x Prędkość: %1x - + Stereo Stereo - + Left channel Lewy kanał - + Right channel Prawy kanał - + Track: %1 Ścieżka: %1 - - + + Unable to adjust the subtitle Nie udało się dostosować napisów - - + + Subtitle %1: %2s Napisy %1: %2s - - + + delayed opóźnione - - + + advanced zaawansowane - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Napisy (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Wyświetl - + Film screenshot Zrzut ekranu - + Saved to Zapisano do - - + + The screenshot is saved Zrzut ekranu został zapisany - - + + Failed to save the screenshot Nie udało się zapisać zrzutu ekranu - + Taking the screenshots, please wait... Robienie zrzutów ekranu, proszę czekać... - - - Cancel - Anuluj - - - - - Restart - - - - + Reading DVD files... Odczytywanie plików DVD... - + No matching online subtitles Brak pasujących napisów online - + 4K video may be stuck Filmy w 4K mogą się zacinać - + OK OK - - + + Order play Uporządkowana - - + + Shuffle play Losowa - - + + Single play Pojedyncze odtworzenie - - + + Single loop Pojedyncza pętla - - + + List loop Zapętlona lista - + Buffering... Buforowanie... - - + + Mute Wycisz - - + + Volume: %1% Głośność: %1% - + Cannot open file or stream Nie można otworzyć pliku lub strumienia - - + + Invalid file Nieprawidłowy plik - + Please insert a CD/DVD Proszę włożyć płytę CD/DVD - + No video file found Nie znaleziono pliku wideo - + Please load the video first Najpierw wczytaj wideo - - + + Please exit smart dock Proszę wyjść z inteligentnej stacji dokującej - + The CD/DVD has been ejected Płyta CD/DVD została wysunięta - + The action is not supported in this video Ta akcja nie jest wspierana przez ten typ wideo - + Invalid file: %1 Nieprawidłowy plik: %1 - + Connection failed Połączenie nieudane - + Miracast disconnected Miracast rozłączono @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Uporządkowana - + Shuffle play Losowa - + Single play Pojedyncze odtworzenie - + Single loop Pojedyncza pętla - + List loop Zapętlona lista - + Auto Automatycznie - + Open Otwórz - + Close Zamknij - + %1/Movie%2(%3).jpg %1/Movie%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Odtwórz/Wstrzymaj - - + + Previous Poprzedni - - + + Next Następny - - - - + + + + Fullscreen Pełny ekran - - + + Playlist Playlista - - + + Miracast Miracast - - + + Exit fullscreen Opuść pełny ekran - - + + Pause Wstrzymaj - - - + + + Play Odtwórz - + Volume Głośność diff --git a/translations/deepin-movie_pt.ts b/translations/deepin-movie_pt.ts index 41ae9bfb4..a74b9a2cc 100644 --- a/translations/deepin-movie_pt.ts +++ b/translations/deepin-movie_pt.ts @@ -43,17 +43,17 @@ Não saia da aplicação Vídeo durante o processo. QObject - - + + - + Movie Vídeo - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. O Vídeo é um reprodutor de vídeos com todas as funcionalidades, suporta reprodução local e transmissão de vídeo em vários formatos de vídeo. @@ -323,61 +323,32 @@ Não saia da aplicação Vídeo durante o processo. Descodificação por software - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Não tem permissão para interagir com esta pasta - - + + OK Aceitar - - + + Invalid folder Pasta inválida - - + + Open folder Abrir pasta - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Rede desligada @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Carregado com sucesso - - - - + + + + Load failed Falha ao carregar - - + + Cannot play the disc Não é possível reproduzir o disco - - + + Parse failed Falha na análise - + Open folder Abrir pasta - - - - - - - + + + + + + + Speed: %1x Velocidade: %1x - + Stereo Estéreo - + Left channel Canal esquerdo - + Right channel Canal direito - + Track: %1 Faixa: %1 - - + + Unable to adjust the subtitle Incapaz de ajustar a legenda - - + + Subtitle %1: %2s Legenda %1: %2s - - + + delayed Atrasada - - + + advanced Avançada - + View Ver - + Film screenshot Captura de ecrã do vídeo - + Saved to Guardado em - - + + The screenshot is saved A captura de ecrã foi guardada - - + + Failed to save the screenshot Falha ao guardar a captura de ecrã - + Taking the screenshots, please wait... A tirar as capturas de ecrã, aguarde... - - - Cancel - Cancelar - - - - - Restart - - - - + Reading DVD files... A ler ficheiros do DVD... - + Invalid file: %1 Ficheiro inválido: %1 - + Miracast disconnected Miracast desligado - + No matching online subtitles Sem legendas online correspondentes - - + + All (*) Tudo (*) - + 4K video may be stuck O vídeo 4K pode estar parado - + OK Aceitar - - + + Order play Ordem de reprodução - - + + Shuffle play Reprodução aleatória - - + + Single play Reprodução única - - + + Single loop Repetição única - - + + List loop Repetição de lista - + Buffering... A colocar no buffer... - - + + Mute Silenciar - - + + Volume: %1% Volume: %1% - - + + Cannot open file or stream Não é possível abrir ficheiro ou transmissão - + The action is not supported in this video A ação não é suportada neste vídeo - + Connection failed Falha na ligação - - + + Invalid file Ficheiro inválido - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Legenda (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Introduza um CD/DVD - + No video file found Nenhum ficheiro de vídeo encontrado - + Please load the video first Carregar o vídeo primeiro - - + + Please exit smart dock Sair da doca inteligente - + The CD/DVD has been ejected O CD/DVD foi ejectado @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Interno @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Carregado com sucesso - - - - + + + + Load failed Falha ao carregar - - + + Cannot play the disc Não é possível reproduzir o disco - - + + Parse failed Falha na análise - + Open folder Abrir pasta - - + + All (*) Tudo (*) - - - - - - - + + + + + + + Speed: %1x Velocidade: %1x - + Stereo Estéreo - + Left channel Canal esquerdo - + Right channel Canal direito - + Track: %1 Faixa: %1 - - + + Unable to adjust the subtitle Incapaz de ajustar a legenda - - + + Subtitle %1: %2s Legenda %1: %2s - - + + delayed Atrasada - - + + advanced Avançada - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Legenda (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Ver - + Film screenshot Captura de ecrã do vídeo - + Saved to Guardado em - - + + The screenshot is saved A captura de ecrã foi guardada - - + + Failed to save the screenshot Falha ao guardar a captura de ecrã - + Taking the screenshots, please wait... A tirar as capturas de ecrã, aguarde... - - - Cancel - Cancelar - - - - - Restart - - - - + Reading DVD files... A ler ficheiros do DVD... - + No matching online subtitles Sem legendas online correspondentes - + 4K video may be stuck O vídeo 4K pode estar parado - + OK Aceitar - - + + Order play Ordem de reprodução - - + + Shuffle play Reprodução aleatória - - + + Single play Reprodução única - - + + Single loop Repetição única - - + + List loop Repetição de lista - + Buffering... A colocar no buffer... - - + + Mute Silenciar - - + + Volume: %1% Volume: %1% - + Cannot open file or stream Não é possível abrir ficheiro ou transmissão - - + + Invalid file Ficheiro inválido - + Please insert a CD/DVD Introduza um CD/DVD - + No video file found Nenhum ficheiro de vídeo encontrado - + Please load the video first Carregar o vídeo primeiro - - + + Please exit smart dock Sair da doca inteligente - + The CD/DVD has been ejected O CD/DVD foi ejectado - + The action is not supported in this video A ação não é suportada neste vídeo - + Invalid file: %1 Ficheiro inválido: %1 - + Connection failed Falha na ligação - + Miracast disconnected Miracast desligado @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Ordem de reprodução - + Shuffle play Reprodução aleatória - + Single play Reprodução única - + Single loop Repetição única - + List loop Repetição de lista - + Auto Automático - + Open Abrir - + Close Fechar - + %1/Movie%2(%3).jpg %1/Vídeo%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Reproduzir/Pausa - - + + Previous Anterior - - + + Next Seguinte - - - - + + + + Fullscreen Ecrã inteiro - - + + Playlist Lista de reprodução - - + + Miracast Miracast - - + + Exit fullscreen Sair de ecrã inteiro - - + + Pause Pausa - - - + + + Play Reproduzir - + Volume Volume diff --git a/translations/deepin-movie_pt_BR.ts b/translations/deepin-movie_pt_BR.ts index c404065b6..50ca7f6ea 100644 --- a/translations/deepin-movie_pt_BR.ts +++ b/translations/deepin-movie_pt_BR.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Vídeo - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. O Vídeo é um player de vídeo completo, compatível com a reprodução de mídia local e de streaming em vários formatos de vídeo. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. Decodificação por software - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder O usuário não tem permissão para manipular esta pasta - - + + OK Ok - - + + Invalid folder Pasta inválida - - + + Open folder Abrir pasta - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Rede desconectada @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Carregado - - - - + + + + Load failed Falha ao carregar - - + + Cannot play the disc Não é possível tocar o disco - - + + Parse failed Falha na análise - + Open folder Abrir pasta - - - - - - - + + + + + + + Speed: %1x Velocidade: %1x - + Stereo Estéreo - + Left channel Canal esquerdo - + Right channel Canal direito - + Track: %1 Faixa: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Legenda %1: %2s - - + + delayed atrasado - - + + advanced Avançado - + View Visualizar - + Film screenshot Capturar quadro do vídeo - + Saved to Salvo em - - + + The screenshot is saved A captura de tela foi salva - - + + Failed to save the screenshot Falha ao salvar a captura de tela - + Taking the screenshots, please wait... Capturando as imagens, aguarde... - - - Cancel - Cancelar - - - - - Restart - - - - + Reading DVD files... Lendo DVD... - + Invalid file: %1 Arquivo inválido: %1 - + Miracast disconnected - + No matching online subtitles Nenhuma legenda on-line correspondente - - + + All (*) - + 4K video may be stuck O vídeo em 4K poderá travar - + OK Ok - - + + Order play Ordem de reprodução - - + + Shuffle play Reproduzir aleatoriamente - - + + Single play Reproduzir uma vez - - + + Single loop Repetir uma vez - - + + List loop Repetir lista - + Buffering... Carregando... - - + + Mute Sem áudio - - + + Volume: %1% Volume: %1% - - + + Cannot open file or stream Não é possível abrir o arquivo ou fluxo - + The action is not supported in this video - + Connection failed A conexão falhou - - + + Invalid file Arquivo inválido - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Legenda (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Insira um CD/DVD - + No video file found Nenhum vídeo encontrado - + Please load the video first Carregue o vídeo - - + + Please exit smart dock Por favor, saia da Smart Dock - + The CD/DVD has been ejected O CD/DVD foi ejetado @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Interno @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Carregado - - - - + + + + Load failed Falha ao carregar - - + + Cannot play the disc Não é possível tocar o disco - - + + Parse failed Falha na análise - + Open folder Abrir pasta - - + + All (*) - - - - - - - + + + + + + + Speed: %1x Velocidade: %1x - + Stereo Estéreo - + Left channel Canal esquerdo - + Right channel Canal direito - + Track: %1 Faixa: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Legenda %1: %2s - - + + delayed atrasado - - + + advanced Avançado - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Legenda (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Visualizar - + Film screenshot Capturar quadro do vídeo - + Saved to Salvo em - - + + The screenshot is saved A captura de tela foi salva - - + + Failed to save the screenshot Falha ao salvar a captura de tela - + Taking the screenshots, please wait... Capturando as imagens, aguarde... - - - Cancel - Cancelar - - - - - Restart - - - - + Reading DVD files... Lendo DVD... - + No matching online subtitles Nenhuma legenda on-line correspondente - + 4K video may be stuck O vídeo em 4K poderá travar - + OK Ok - - + + Order play Ordem de reprodução - - + + Shuffle play Reproduzir aleatoriamente - - + + Single play Reproduzir uma vez - - + + Single loop Repetir uma vez - - + + List loop Repetir lista - + Buffering... Carregando... - - + + Mute Sem áudio - - + + Volume: %1% Volume: %1% - + Cannot open file or stream Não é possível abrir o arquivo ou fluxo - - + + Invalid file Arquivo inválido - + Please insert a CD/DVD Insira um CD/DVD - + No video file found Nenhum vídeo encontrado - + Please load the video first Carregue o vídeo - - + + Please exit smart dock Por favor, saia da Smart Dock - + The CD/DVD has been ejected O CD/DVD foi ejetado - + The action is not supported in this video - + Invalid file: %1 Arquivo inválido: %1 - + Connection failed A conexão falhou - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Ordem de reprodução - + Shuffle play Reproduzir aleatoriamente - + Single play Reproduzir uma vez - + Single loop Repetir uma vez - + List loop Repetir lista - + Auto Automático - + Open Abrir - + Close Fechar - + %1/Movie%2(%3).jpg %1/Vídeo%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Reproduzir/Pausar - - + + Previous Anterior - - + + Next Próximo - - - - + + + + Fullscreen Tela Cheia - - + + Playlist Lista de Reprodução - - + + Miracast - - + + Exit fullscreen Sair da tela cheia - - + + Pause Pausar - - - + + + Play Reproduzir - + Volume Volume diff --git a/translations/deepin-movie_ro.ts b/translations/deepin-movie_ro.ts index e7d543326..5df3c7666 100644 --- a/translations/deepin-movie_ro.ts +++ b/translations/deepin-movie_ro.ts @@ -270,27 +270,6 @@ Please do not exit the Movie app during the process. Software decoding - - Customize - - - - Decode mode - - - - Video out - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - Rendering engine - - UrlDialog @@ -704,14 +683,6 @@ and whether to restart it? Miracast disconnected - - Cancel - Anulare - - - Restart - - dmr::MovieInfo @@ -1021,14 +992,6 @@ and whether to restart it? Miracast disconnected - - Cancel - Anulare - - - Restart - - dmr::Platform_PlayItemWidget diff --git a/translations/deepin-movie_ru.ts b/translations/deepin-movie_ru.ts index 6e85bb0ee..cbb4c6eb6 100644 --- a/translations/deepin-movie_ru.ts +++ b/translations/deepin-movie_ru.ts @@ -43,17 +43,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Кинотеатр - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Кинотеатр представляет собой видеоплеер, который поддерживает локальное и потоковое воспроизведение видео в нескольких форматах видео. @@ -323,61 +323,32 @@ Please do not exit the Movie app during the process. Программное декодирование - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder У вас нет разрешения на использование этой папки - - + + OK OK - - + + Invalid folder Неверная папка - - + + Open folder Открыть папку - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Сеть отключена @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Загрузка успешно завершена - - - - + + + + Load failed Ошибка загрузки - - + + Cannot play the disc Невозможно воспроизвести диск - - + + Parse failed Ошибка анализа - + Open folder Открыть папку - - - - - - - + + + + + + + Speed: %1x Скорость: %1x - + Stereo Стерео - + Left channel Левый канал - + Right channel Правый канал - + Track: %1 Дорожка: %1 - - + + Unable to adjust the subtitle Невозможно изменить субтитры - - + + Subtitle %1: %2s Субтитры: %1: %2s - - + + delayed задержка - - + + advanced расширенный - + View Просмотр - + Film screenshot Скриншот фильма - + Saved to Сохранить в - - + + The screenshot is saved Снимок экрана сохранен - - + + Failed to save the screenshot Не удалось сохранить снимок экрана - + Taking the screenshots, please wait... Снимки экрана, пожалуйста, подождите... - - - Cancel - Отмена - - - - - Restart - - - - + Reading DVD files... Чтение DVD-файлов... - + Invalid file: %1 Неверный файл: %1 - + Miracast disconnected Miracast отключен - + No matching online subtitles Нет подходящих онлайн субтитров - - + + All (*) Все (*) - + 4K video may be stuck 4K видео может зависать - + OK OK - - + + Order play Порядок проигрывания - - + + Shuffle play Перемешать - - + + Single play Одиночный - - + + Single loop Одиночный Цикл - - + + List loop Непрерывно - + Buffering... Буферизация... - - + + Mute Приглушить - - + + Volume: %1% Громкость: %1% - - + + Cannot open file or stream Не удается открыть файл или поток - + The action is not supported in this video Действие не поддерживается для этого файла - + Connection failed Ошибка подключения - - + + Invalid file Неверный файл - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Расширение (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Пожалуйста, вставьте CD/DVD диск - + No video file found Видео файл не найден - + Please load the video first Пожалуйста, сначала загрузите видео - - + + Please exit smart dock Выйдите из умной док-панели - + The CD/DVD has been ejected CD/DVD диск был извлечен. @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal внутренний @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Загрузка успешно завершена - - - - + + + + Load failed Ошибка загрузки - - + + Cannot play the disc Невозможно воспроизвести диск - - + + Parse failed Ошибка анализа - + Open folder Открыть папку - - + + All (*) Все (*) - - - - - - - + + + + + + + Speed: %1x Скорость: %1x - + Stereo Стерео - + Left channel Левый канал - + Right channel Правый канал - + Track: %1 Дорожка: %1 - - + + Unable to adjust the subtitle Невозможно изменить субтитры - - + + Subtitle %1: %2s Субтитры: %1: %2s - - + + delayed задержка - - + + advanced расширенный - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Расширение (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Просмотр - + Film screenshot Скриншот фильма - + Saved to Сохранить в - - + + The screenshot is saved Снимок экрана сохранен - - + + Failed to save the screenshot Не удалось сохранить снимок экрана - + Taking the screenshots, please wait... Снимки экрана, пожалуйста, подождите... - - - Cancel - Отмена - - - - - Restart - - - - + Reading DVD files... Чтение DVD-файлов... - + No matching online subtitles Нет подходящих онлайн субтитров - + 4K video may be stuck 4K видео может зависать - + OK OK - - + + Order play Порядок проигрывания - - + + Shuffle play Перемешать - - + + Single play Одиночный - - + + Single loop Одиночный Цикл - - + + List loop Непрерывно - + Buffering... Буферизация... - - + + Mute Приглушить - - + + Volume: %1% Громкость: %1% - + Cannot open file or stream Не удается открыть файл или поток - - + + Invalid file Неверный файл - + Please insert a CD/DVD Пожалуйста, вставьте CD/DVD диск - + No video file found Видео файл не найден - + Please load the video first Пожалуйста, сначала загрузите видео - - + + Please exit smart dock Выйдите из умной док-панели - + The CD/DVD has been ejected CD/DVD диск был извлечен. - + The action is not supported in this video Действие не поддерживается для этого файла - + Invalid file: %1 Неверный файл: %1 - + Connection failed Ошибка подключения - + Miracast disconnected Miracast отключен @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Порядок проигрывания - + Shuffle play Перемешать - + Single play Одиночный - + Single loop Одиночный Цикл - + List loop Непрерывно - + Auto Автоматически - + Open Открыть - + Close Закрыть - + %1/Movie%2(%3).jpg %1/Movie%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Воспроизведение / Пауза - - + + Previous Предыдущий - - + + Next Далее - - - - + + + + Fullscreen Полноэкранный режим - - + + Playlist Список воспроизведения - - + + Miracast Miracast - - + + Exit fullscreen Выйти из полноэкранного режима - - + + Pause Пауза - - - + + + Play Воспроизведение - + Volume Громкость diff --git a/translations/deepin-movie_sk.ts b/translations/deepin-movie_sk.ts index bbf967d9a..9db89b284 100644 --- a/translations/deepin-movie_sk.ts +++ b/translations/deepin-movie_sk.ts @@ -270,27 +270,6 @@ Please do not exit the Movie app during the process. Software decoding - - Customize - - - - Decode mode - - - - Video out - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - Rendering engine - - UrlDialog @@ -704,14 +683,6 @@ and whether to restart it? Miracast disconnected - - Cancel - Zrušiť - - - Restart - - dmr::MovieInfo @@ -1021,14 +992,6 @@ and whether to restart it? Miracast disconnected - - Cancel - Zrušiť - - - Restart - - dmr::Platform_PlayItemWidget diff --git a/translations/deepin-movie_sl.ts b/translations/deepin-movie_sl.ts index 5bc9140ef..b454f7429 100644 --- a/translations/deepin-movie_sl.ts +++ b/translations/deepin-movie_sl.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Film - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Film je zmogljiv video predvajalnik, ki omogoča predvajanje lokalnih in pretočnih vsebin v številnih video formatih. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. Programsko dekodiranje - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Nimate dovoljenja za upravljanje te mape - - + + OK V redu - - + + Invalid folder Neveljavna mapa - - + + Open folder Odpri mapo - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Ni omrežne povezave @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Uspešno naloženo - - - - + + + + Load failed Nalaganje neuspešno - - + + Cannot play the disc Ne morem predvajati diska - - + + Parse failed Razčlenjevanje ni uspelo - + Open folder Odpri mapo - - - - - - - + + + + + + + Speed: %1x Hitrost: %1x - + Stereo Stereo - + Left channel Levi kanal - + Right channel Desni kanal - + Track: %1 Vsebina: %1 - - + + Unable to adjust the subtitle Podnapisov ni mogoče prilagoditi - - + + Subtitle %1: %2s Podnapisi %1: %2s - - + + delayed zakasnjeno - - + + advanced napredno - + View Prikaži - + Film screenshot Posnetek zaslona filma - + Saved to Shranjeno v - - + + The screenshot is saved Posnetek zaslona je shranjen - - + + Failed to save the screenshot Posnetka zaslona ni bilo mogoče shraniti - + Taking the screenshots, please wait... Zajemam zaslon, počakajte... - - - Cancel - Prekini - - - - - Restart - - - - + Reading DVD files... Branje DVD datotek - + Invalid file: %1 Neveljavna datoteka: %1 - + Miracast disconnected - + No matching online subtitles Na spletu ni najti pripadajočih podnapisov - - + + All (*) Vse (*) - + 4K video may be stuck 4K video se lahko zatika - + OK V redu - - + + Order play Vrstni red predvajanja - - + + Shuffle play Premešano predvajanje - - + + Single play Posamično predvajanje - - + + Single loop Posamično ponavljanje - - + + List loop Ponavljanje seznama - + Buffering... Berem v predpomnilnik... - - + + Mute Utišaj - - + + Volume: %1% Glasnost: %1% - - + + Cannot open file or stream Datoteke ali pretoka ni mogoče odpreti - + The action is not supported in this video Dejanja ni podporto za ta video - + Connection failed Povezava ni uspela - - + + Invalid file Neveljavna datoteka - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Podnapisi (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Vstavite CD/DVD - + No video file found Ni najdenih video datotek - + Please load the video first Najprej naložite video - - + + Please exit smart dock Zapustite pametno sidrišče - + The CD/DVD has been ejected CD/DVD je bil izvržen @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Notranje @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Uspešno naloženo - - - - + + + + Load failed Nalaganje neuspešno - - + + Cannot play the disc Ne morem predvajati diska - - + + Parse failed Razčlenjevanje ni uspelo - + Open folder Odpri mapo - - + + All (*) Vse (*) - - - - - - - + + + + + + + Speed: %1x Hitrost: %1x - + Stereo Stereo - + Left channel Levi kanal - + Right channel Desni kanal - + Track: %1 Vsebina: %1 - - + + Unable to adjust the subtitle Podnapisov ni mogoče prilagoditi - - + + Subtitle %1: %2s Podnapisi %1: %2s - - + + delayed zakasnjeno - - + + advanced napredno - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Podnapisi (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Prikaži - + Film screenshot Posnetek zaslona filma - + Saved to Shranjeno v - - + + The screenshot is saved Posnetek zaslona je shranjen - - + + Failed to save the screenshot Posnetka zaslona ni bilo mogoče shraniti - + Taking the screenshots, please wait... Zajemam zaslon, počakajte... - - - Cancel - Prekini - - - - - Restart - - - - + Reading DVD files... Branje DVD datotek - + No matching online subtitles Na spletu ni najti pripadajočih podnapisov - + 4K video may be stuck 4K video se lahko zatika - + OK V redu - - + + Order play Vrstni red predvajanja - - + + Shuffle play Premešano predvajanje - - + + Single play Posamično predvajanje - - + + Single loop Posamično ponavljanje - - + + List loop Ponavljanje seznama - + Buffering... Berem v predpomnilnik... - - + + Mute Utišaj - - + + Volume: %1% Glasnost: %1% - + Cannot open file or stream Datoteke ali pretoka ni mogoče odpreti - - + + Invalid file Neveljavna datoteka - + Please insert a CD/DVD Vstavite CD/DVD - + No video file found Ni najdenih video datotek - + Please load the video first Najprej naložite video - - + + Please exit smart dock Zapustite pametno sidrišče - + The CD/DVD has been ejected CD/DVD je bil izvržen - + The action is not supported in this video Dejanja ni podporto za ta video - + Invalid file: %1 Neveljavna datoteka: %1 - + Connection failed Povezava ni uspela - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Vrstni red predvajanja - + Shuffle play Premešano predvajanje - + Single play Posamično predvajanje - + Single loop Posamično ponavljanje - + List loop Ponavljanje seznama - + Auto Samodejno - + Open Odpri - + Close Zapri - + %1/Movie%2(%3).jpg %1/Film%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Predvajaj/premor - - + + Previous Predhodni - - + + Next Naprej - - - - + + + + Fullscreen Celozaslonski način - - + + Playlist Seznam predvajanja - - + + Miracast - - + + Exit fullscreen Izhod iz celozaslonskega načina - - + + Pause Premor - - - + + + Play Predvajaj - + Volume Glasnost diff --git a/translations/deepin-movie_sq.ts b/translations/deepin-movie_sq.ts index e828a56bc..8690442fe 100644 --- a/translations/deepin-movie_sq.ts +++ b/translations/deepin-movie_sq.ts @@ -43,17 +43,17 @@ Ju lutemi, mos e mbyllni aplikacionin Film gjatë procesit. QObject - - + + - + Movie Film - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Movie është një lojtës videosh i plotë, që mbulon luajtje mediash vendore dhe atyre të transmetuara, në formate të shumtë videosh. @@ -323,61 +323,32 @@ Ju lutemi, mos e mbyllni aplikacionin Film gjatë procesit. Shkodim nga software-i - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder S’keni leje të bëni veprime në këtë dosje - - + + OK OK - - + + Invalid folder Dosje e pavlefshme - - + + Open folder Hap dosje - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Rrjeti u shkëput @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Ngarkim i suksesshëm - - - - + + + + Load failed Ngarkimi dështoi - - + + Cannot play the disc S’luhet dot disku - - + + Parse failed Përtypja dështoi - + Open folder Hap dosje - - - - - - - + + + + + + + Speed: %1x Shpejtësi: %1x - + Stereo Stereo - + Left channel Kanali majtas - + Right channel Kanali djathtas - + Track: %1 Pjesa: %1 - - + + Unable to adjust the subtitle S’arrihet të rregullohet titri - - + + Subtitle %1: %2s Titra %1: %2s - - + + delayed e vonuar - - + + advanced e avancuar - + View Shihni - + Film screenshot Foto ekrani filmi - + Saved to U ruajt te - - + + The screenshot is saved Fotoja e ekranit u ruajt - - + + Failed to save the screenshot S’u arrit të ruhet foto ekrani - + Taking the screenshots, please wait... Po bëhet fotoja e ekranit, ju lutemi, pritni… - - - Cancel - Anuloje - - - - - Restart - - - - + Reading DVD files... Po lexohen kartela DVD… - + Invalid file: %1 Kartelë e pavlefshme: %1 - + Miracast disconnected Shkëputur nga Miracast-i - + No matching online subtitles S’u gjetën titra me përputhje në internet - - + + All (*) Krejt (*) - + 4K video may be stuck Videoja 4K mund të ngecë - + OK OK - - + + Order play Luaji të renditura - - + + Shuffle play Luaji kuturu - - + + Single play Një luajtje - - + + Single loop Ripërsëritje pjese - - + + List loop Ripërsëritje liste - + Buffering... - - + + Mute Pa zë - - + + Volume: %1% Volum: %1% - - + + Cannot open file or stream S’hapet dot kartelë ose rrjedhë - + The action is not supported in this video Veprimi nuk mbulohet në këtë video - + Connection failed Lidhja dështoi - - + + Invalid file Kartelë e pavlefshme - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Titra (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Ju lutemi, futni një CD/DVD - + No video file found S’u gjet kartelë video - + Please load the video first Ju lutemi, së pari ngarkoni videon - - + + Please exit smart dock Ju lutemi, dilni nga paneli i mençur - + The CD/DVD has been ejected CD-ja/DVD-ia u nxor @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal I brendshëm @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Ngarkim i suksesshëm - - - - + + + + Load failed Ngarkimi dështoi - - + + Cannot play the disc S’luhet dot disku - - + + Parse failed Përtypja dështoi - + Open folder Hap dosje - - + + All (*) Krejt (*) - - - - - - - + + + + + + + Speed: %1x Shpejtësi: %1x - + Stereo Stereo - + Left channel Kanali majtas - + Right channel Kanali djathtas - + Track: %1 Pjesa: %1 - - + + Unable to adjust the subtitle S’arrihet të rregullohet titri - - + + Subtitle %1: %2s Titra %1: %2s - - + + delayed e vonuar - - + + advanced e avancuar - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Titra (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Shiheni - + Film screenshot Foto ekrani filmi - + Saved to U ruajt te - - + + The screenshot is saved Fotoja e ekranit u ruajt - - + + Failed to save the screenshot S’u arrit të ruhej foto ekrani - + Taking the screenshots, please wait... Po bëhet fotoja e ekranit, ju lutemi, pritni… - - - Cancel - Anuloje - - - - - Restart - - - - + Reading DVD files... Po lexohen kartela DVD… - + No matching online subtitles S’u gjetën titra me përputhje në internet - + 4K video may be stuck Videoja 4K mund të ngecë - + OK OK - - + + Order play Luajtje sipas radhës - - + + Shuffle play Luajtje kuturu - - + + Single play Një luajtje - - + + Single loop Ripërsëritje pjese - - + + List loop Ripërsëritje liste - + Buffering... - - + + Mute Pa zë - - + + Volume: %1% Volum: %1% - + Cannot open file or stream S’hapet dot kartelë ose rrjedhë - - + + Invalid file Kartelë e pavlefshme - + Please insert a CD/DVD Ju lutemi, futni një CD/DVD - + No video file found S’u gjet kartelë video - + Please load the video first Ju lutemi, së pari ngarkoni videon - - + + Please exit smart dock Ju lutemi, dilni nga paneli i mençur - + The CD/DVD has been ejected CD-ja/DVD-ia u nxor - + The action is not supported in this video Veprimi nuk mbulohet në këtë video - + Invalid file: %1 Kartelë e pavlefshme: %1 - + Connection failed Lidhja dështoi - + Miracast disconnected Shkëputur nga Miracast-i @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Luaji të renditura - + Shuffle play Luaji kuturu - + Single play Një luajtje - + Single loop Ripërsëritje pjese - + List loop Ripërsëritje liste - + Auto Auto - + Open Hap - + Close Mbylle - + %1/Movie%2(%3).jpg %1/Movie%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Luaje/Pushoje - - + + Previous E mëparshmja - - + + Next Pasuesja - - - - + + + + Fullscreen Sa krejt ekrani - - + + Playlist Luajlistë - - + + Miracast Miracast - - + + Exit fullscreen Dil nga mënyra sa krejt ekrani - - + + Pause Pushoje - - - + + + Play Luaje - + Volume Volum diff --git a/translations/deepin-movie_sr.ts b/translations/deepin-movie_sr.ts index a3a81ffc5..da2734d3c 100644 --- a/translations/deepin-movie_sr.ts +++ b/translations/deepin-movie_sr.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Филм - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Филм је потпуно опремљен пуштач видеа који подржава приказивање многих локалних видео формата и видеа из токова. @@ -322,61 +322,32 @@ Please do not exit the Movie app during the process. Софтверско декодирање - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Немате дозволу да користите ову фасциклу - - + + OK У реду - - + + Invalid folder Неважећа фасцикла - - + + Open folder Отвори фасциклу - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Ван мреже сте @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Успешно учитано - - - - + + + + Load failed Неуспешно учитавање - - + + Cannot play the disc Не могу да пустим диск - - + + Parse failed Неуспешно анализирање - + Open folder Отвори фасциклу - - - - - - - + + + + + + + Speed: %1x Брзина: %1x - + Stereo Стерео - + Left channel Леви канал - + Right channel Десни канал - + Track: %1 Снимак: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Превод %1: %2s - - + + delayed одложено - - + + advanced напредно - + View Прикажи - + Film screenshot Усликај видео - + Saved to Сачувано у - - + + The screenshot is saved Слика екрана је сачувана - - + + Failed to save the screenshot Неуспело чување слике екрана - + Taking the screenshots, please wait... Усликавање у току, молимо сачекајте... - - - Cancel - Откажи - - - - - Restart - - - - + Reading DVD files... Учитавање ДВД датотека... - + Invalid file: %1 Неважећа датотека: %1 - + Miracast disconnected - + No matching online subtitles Нема подударних превода на мрежи - - + + All (*) - + 4K video may be stuck 4К видео може закочити - + OK У реду - - + + Order play Пуштај по реду - - + + Shuffle play Пуштај насумично - - + + Single play Пусти један - - + + Single loop Понављај видео - - + + List loop Понављај листу - + Buffering... Попуна... - - + + Mute Ућуткај - - + + Volume: %1% Јачина: %1% - - + + Cannot open file or stream Не могу да отворим датотеку или ток - + The action is not supported in this video - + Connection failed Неуспешно повезивање - - + + Invalid file Неважећа датотека - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Превод (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Молимо убаците ЦД/ДВД - + No video file found Није пронађена датотека видеа - + Please load the video first Молимо прво учитајте видео - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected ЦД/ДВД је избачен @@ -1130,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Унутрашњи @@ -1138,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Успешно учитано - - - - + + + + Load failed Неуспешно учитавање - - + + Cannot play the disc Не могу да пустим диск - - + + Parse failed Неуспешно анализирање - + Open folder Отвори фасциклу - - + + All (*) - - - - - - - + + + + + + + Speed: %1x Брзина: %1x - + Stereo Стерео - + Left channel Леви канал - + Right channel Десни канал - + Track: %1 Снимак: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s Превод %1: %2s - - + + delayed одложено - - + + advanced напредно - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Превод (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Прегледај - + Film screenshot Усликај видео - + Saved to Сачувано у - - + + The screenshot is saved Слика екрана је сачувана - - + + Failed to save the screenshot Неуспело чување слике екрана - + Taking the screenshots, please wait... Усликавање у току, молимо сачекајте... - - - Cancel - Откажи - - - - - Restart - - - - + Reading DVD files... Учитавање ДВД датотека... - + No matching online subtitles Нема подударних превода на мрежи - + 4K video may be stuck 4К видео може закочити - + OK У реду - - + + Order play Пуштај по реду - - + + Shuffle play Пуштај насумично - - + + Single play Пусти један - - + + Single loop Понављај видео - - + + List loop Понављај листу - + Buffering... Попуна... - - + + Mute Ућуткај - - + + Volume: %1% Јачина: %1% - + Cannot open file or stream Не могу да отворим датотеку или ток - - + + Invalid file Неважећа датотека - + Please insert a CD/DVD Молимо убаците ЦД/ДВД - + No video file found Није пронађена датотека видеа - + Please load the video first Молимо прво учитајте видео - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected ЦД/ДВД је избачен - + The action is not supported in this video - + Invalid file: %1 Неважећа датотека: %1 - + Connection failed Неуспешно повезивање - + Miracast disconnected @@ -1523,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play Пуштај по реду - + Shuffle play Пуштај насумично - + Single play Пусти један - + Single loop Понављај видео - + List loop Понављај листу - + Auto Аутоматски - + Open Покрени - + Close Затвори - + %1/Movie%2(%3).jpg %1/Филм%2(%3).jpg @@ -1571,63 +1518,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Пусти/Паузирај - - + + Previous Претходно - - + + Next Следеће - - - - + + + + Fullscreen Цео екран - - + + Playlist Листа - - + + Miracast - - + + Exit fullscreen Напусти цео екран - - + + Pause Паузирај - - - + + + Play Репродукција - + Volume diff --git a/translations/deepin-movie_sv.ts b/translations/deepin-movie_sv.ts index 9c86ccb1f..90e874b46 100644 --- a/translations/deepin-movie_sv.ts +++ b/translations/deepin-movie_sv.ts @@ -270,27 +270,6 @@ Please do not exit the Movie app during the process. Software decoding - - Customize - - - - Decode mode - - - - Video out - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - Rendering engine - - UrlDialog @@ -704,14 +683,6 @@ and whether to restart it? Miracast disconnected - - Cancel - Avbryt - - - Restart - - dmr::MovieInfo @@ -1021,14 +992,6 @@ and whether to restart it? Miracast disconnected - - Cancel - Avbryt - - - Restart - - dmr::Platform_PlayItemWidget diff --git a/translations/deepin-movie_ta.ts b/translations/deepin-movie_ta.ts index 9394b1c6c..0ed00a11f 100644 --- a/translations/deepin-movie_ta.ts +++ b/translations/deepin-movie_ta.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute ஒலியடக்கு - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - நிறுத்து - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - - + + All (*) - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - நிறுத்து - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute ஒலியடக்கு - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play - - + + Previous முந்தைய - - + + Next அடுத்து - - + + Playlist - - - - + + + + Fullscreen - + Volume - + Play/Pause இயக்கு/இடைநிறுத்து - - + + Miracast - - + + Exit fullscreen - - + + Pause இடைநிறுத்து diff --git a/translations/deepin-movie_tr.ts b/translations/deepin-movie_tr.ts index e0504d149..700056fe4 100644 --- a/translations/deepin-movie_tr.ts +++ b/translations/deepin-movie_tr.ts @@ -43,17 +43,17 @@ Lütfen işlem sırasında Film uygulamasından çıkmayın. QObject - - + + - + Movie Sinema - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Film, yerel ve akışlı ortamların birden fazla video biçiminde oynatılmasını destekleyen tam özellikli bir video oynatıcıdır. @@ -323,61 +323,32 @@ Lütfen işlem sırasında Film uygulamasından çıkmayın. Yazılım kod çözümü - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Bu klasörde işlem yapma izniniz yok - - + + OK Tamam - - + + Invalid folder Geçersiz klasör - - + + Open folder Klasör aç - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Ağ bağlantısı kesildi @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Yüklendi - - - - + + + + Load failed Yüklenemedi - - + + Cannot play the disc Disk oynatılamıyor - - + + Parse failed Ayrıştırma başarısız - + Open folder Klasör aç - - - - - - - + + + + + + + Speed: %1x Hız: %1x - + Stereo Çift kanal - + Left channel Sol kanal - + Right channel Sağ kanal - + Track: %1 Parça: %1 - - + + Unable to adjust the subtitle Altyazı ayarlanamıyor - - + + Subtitle %1: %2s Alt yazı %1: %2s - - + + delayed gecikme - - + + advanced gelişmiş - + View Görünüm - + Film screenshot Film ekran görüntüsü - + Saved to Şuraya kaydedildi - - + + The screenshot is saved Ekran görüntüsü kaydedildi - - + + Failed to save the screenshot Ekran görüntüsü kaydedilemedi - + Taking the screenshots, please wait... Ekran görüntüleri çekiliyor, lütfen bekleyin... - - - Cancel - İptal - - - - - Restart - - - - + Reading DVD files... DVD dosyaları okunuyor... - + Invalid file: %1 Dosya geçersiz: %1 - + Miracast disconnected Miracast'ın bağlantısı kesildi - + No matching online subtitles Eşleşen çevrimiçi altyazı yok - - + + All (*) Tümü (*) - + 4K video may be stuck 4K video sıkışmış olabilir - + OK Tamam - - + + Order play Oynatma sırası - - + + Shuffle play Karışık oynat - - + + Single play Tek oynat - - + + Single loop Tek döngü - - + + List loop Liste döngüsü - + Buffering... Arabelleğe alınıyor... - - + + Mute Sesi kapat - - + + Volume: %1% Ses: %1% - - + + Cannot open file or stream Dosya veya akış açılamıyor - + The action is not supported in this video Eylem bu videoda desteklenmiyor - + Connection failed Bağlantı başarısız - - + + Invalid file Geçersiz dosya - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Alt yazı (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Lütfen bir CD/DVD yerleştirin - + No video file found Video dosyası bulunamadı - + Please load the video first Lütfen önce videoyu yükleyin - - + + Please exit smart dock Lütfen akıllı rıhtımdan çıkın - + The CD/DVD has been ejected CD/DVD çıkarıldı @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Dahili @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Yüklendi - - - - + + + + Load failed Yüklenemedi - - + + Cannot play the disc Disk oynatılamıyor - - + + Parse failed Ayrıştırma başarısız - + Open folder Klasör aç - - + + All (*) Tümü (*) - - - - - - - + + + + + + + Speed: %1x Hız: %1x - + Stereo Çift kanal - + Left channel Sol kanal - + Right channel Sağ kanal - + Track: %1 Parça: %1 - - + + Unable to adjust the subtitle Altyazı ayarlanamıyor - - + + Subtitle %1: %2s Alt yazı %1: %2s - - + + delayed gecikme - - + + advanced gelişmiş - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Alt yazı (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Görünüm - + Film screenshot Film ekran görüntüsü - + Saved to Şuraya kaydedildi - - + + The screenshot is saved Ekran görüntüsü kaydedildi - - + + Failed to save the screenshot Ekran görüntüsü kaydedilemedi - + Taking the screenshots, please wait... Ekran görüntüleri çekiliyor, lütfen bekleyin... - - - Cancel - İptal - - - - - Restart - - - - + Reading DVD files... DVD dosyaları okunuyor... - + No matching online subtitles Eşleşen çevrimiçi altyazı yok - + 4K video may be stuck 4K video sıkışmış olabilir - + OK Tamam - - + + Order play Oynatma sırası - - + + Shuffle play Karışık oynat - - + + Single play Tek oynat - - + + Single loop Tek döngü - - + + List loop Liste döngüsü - + Buffering... Arabelleğe alınıyor... - - + + Mute Sesi kapat - - + + Volume: %1% Ses: %1% - + Cannot open file or stream Dosya veya akış açılamıyor - - + + Invalid file Geçersiz dosya - + Please insert a CD/DVD Lütfen bir CD/DVD yerleştirin - + No video file found Video dosyası bulunamadı - + Please load the video first Lütfen önce videoyu yükleyin - - + + Please exit smart dock Lütfen akıllı rıhtımdan çıkın - + The CD/DVD has been ejected CD/DVD çıkarıldı - + The action is not supported in this video Eylem bu videoda desteklenmiyor - + Invalid file: %1 Dosya geçersiz: %1 - + Connection failed Bağlantı başarısız - + Miracast disconnected Miracast'ın bağlantısı kesildi @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Oynatma sırası - + Shuffle play Karışık oynat - + Single play Tek oynat - + Single loop Tek döngü - + List loop Liste döngüsü - + Auto Otomatik - + Open - + Close Kapat - + %1/Movie%2(%3).jpg %1/Sinema%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Oynat/Duraklat - - + + Previous Önceki - - + + Next Sonraki - - - - + + + + Fullscreen Tam ekran - - + + Playlist Oynatma listesi - - + + Miracast Miracast - - + + Exit fullscreen Tam ekrandan çık - - + + Pause Duraklat - - - + + + Play Oynat - + Volume Ses diff --git a/translations/deepin-movie_ug.ts b/translations/deepin-movie_ug.ts index 35a731cbf..af21c6a78 100644 --- a/translations/deepin-movie_ug.ts +++ b/translations/deepin-movie_ug.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie كىنو - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. كىنو قويغۇچ تولۇق ئىقتىدارلىق سىن قويغۇچ بولۇپ ، كۆپ خىل سىن فورماتىدا يەرلىك ۋە ئاقما مېدىيا قويۇشنى قوللايدۇ. @@ -319,65 +319,35 @@ Please do not exit the Movie app during the process. Software decoding - يۇمشال دېتال ئارقىلىق كود يېيىشيۇمشاق دېتاللارنى سىزىش + يۇمشال دېتال ئارقىلىق كود يېيىش - - Customize - خاسلاشتۇرۇش - - - - Decode mode - كودنى يوقىتىش ھالىتى - - - - Video out - ۋىدېئو چىقىرىش - - - - Rendering engine - يوقىتىش ماتورى - - - - + + You don't have permission to operate this folder بۇ ھۆججەت قىسقۇچنى مەشغۇلات قىلىش ھوقۇقىڭىز يوق - - + + OK تامام - - + + Invalid folder ھۆججەت قىسقۇچ ئىناۋەتسىز - - + + Open folder ھۆججەت قىسقۇچنى ئېچىڭ - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - ئۆزى بەلگىلەش ئۇسۇلىنى قوللىنىشتىن بۇرۇن قايتا قوزغىتىشقا توغرا كېلىدۇ ، -يەنە قايتا قوزغىتىش كېرەكمۇ يوق؟ - - - - + + Network disconnected تور يولىدا مەسىلە بار،تور ئۈزۈلگەن بولۇشى مۇمكىن @@ -716,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully مۇۋەپپەقىيەتلىك يۈكلەندى - - - - + + + + Load failed يۈكلەش مەغلۇپ بولدى - - + + Cannot play the disc نۇر دىسكىدىكى مەزمۇننى قويالمىدى - - + + Parse failed ئانالىز مەغلۇب بولدى - + Open folder ھۆججەت قىسقۇچنى ئېچىڭ - - - - - - - + + + + + + + Speed: %1x سۈرئەت: %1x - + Stereo سىتىرولۇق ئاۋاز - + Left channel سول ئاۋاز يولى - + Right channel ئوڭ ئاۋاز يولى - + Track: %1 پىروگرامما تىزىملىكى: %1 - - + + Unable to adjust the subtitle نۆۋەتتىكى ئېكران خىتىنى تەڭشىگىلى بولمايدۇ - - + + Subtitle %1: %2s خەت نۇسخىسى %1: %2s - - + + delayed كېچىكتۈرۈلدى - - + + advanced ئىلغار - + View كۆرۈش - + Film screenshot فىلىم ئېكرانى - + Saved to ساقلاش - - + + The screenshot is saved كەسكەن رەسىم ساقلاندى - - + + Failed to save the screenshot كەسكەن رەسىمنى ساقلاشقا ئامالسىز - + Taking the screenshots, please wait... سۈرەتكە تارتىلىۋاتىدۇ،سەل ساقلاڭ... - - - Cancel - بىكار قىلىشئەمەلدىن قالدۇرۇش - - - - - Restart - قايتا قوزغىتىش - - - + Reading DVD files... DVD ھۆججەتلىرىنى ئوقۇۋاتىدۇ ... - + Invalid file: %1 ئىناۋەتسىز ھۆججەت: %1 - + Miracast disconnected پىرويېكسىيەلەش ئۈزۈلدى - + No matching online subtitles ماس كىلىدىغان خەت نۇسخىسى تېپىلمىدى - - + + All (*) ھەممىسى (*) - + 4K video may be stuck 4K سىن كۆرۈنۈش قېتىۋېلىشى مۇمكىن - + OK تامام - - + + Order play زاكاس قويۇش - - + + Shuffle play ھالقىسىمان قويۇش - - + + Single play تاق قويۇش - - + + Single loop يەككە ھالقا - - + + List loop تىزىملىك ھالقىسى - + Buffering... بۇففېرلىنىۋاتىدۇ... - - + + Mute ئاۋازسىز - - + + Volume: %1% ئاۋاز مىقدارى:%1% - - + + Cannot open file or stream ھۆججەت ياكى ئېقىننى ئاچقىلى بولمايدۇ - + The action is not supported in this video نۆۋەتتىكى سىن بۇ ئىقتىدارنى قوللىمايدۇ - + Connection failed ئۇلىنىش مەغلۇپ بولدى - - + + Invalid file ئىناۋەتسىز ھۆججەت - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) قوللايدىغان خەت نۇسخىسى (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD CD / DVD قىستۇرۇڭ - + No video file found فىلىم ھۆججىىتى تاپالمىدى - + Please load the video first ئاۋۋال فىلىمنى قوشۇڭ - - + + Please exit smart dock ئەقلىي ئىقتىدارلىق تەگلىكتىن چېكىنىڭ - + The CD/DVD has been ejected CD / DVD چىقىرىۋېتىلدى @@ -1131,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal ئىچكى @@ -1139,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully مۇۋەپپەقىيەتلىك يۈكلەندى - - - - + + + + Load failed يۈكلەش مەغلۇپ بولدى - - + + Cannot play the disc نۇر دىسكىدىكى مەزمۇننى قويالمىدى - - + + Parse failed ئانالىز مەغلۇب بولدى - + Open folder ھۆججەت قىسقۇچنى ئېچىڭ - - + + All (*) ھەممىسى (*) - - - - - - - + + + + + + + Speed: %1x سۈرئەت: %1x - + Stereo سىتىرولۇق ئاۋاز - + Left channel سول ئاۋاز يولى - + Right channel ئوڭ ئاۋاز يولى - + Track: %1 پىروگرامما تىزىملىكى: %1 - - + + Unable to adjust the subtitle نۆۋەتتىكى ئېكران خىتىنى تەڭشىگىلى بولمايدۇ - - + + Subtitle %1: %2s خەت نۇسخىسى %1: %2s - - + + delayed كېچىكتۈرۈلدى - - + + advanced ئىلغار - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) قوللايدىغان خەت نۇسخىسى (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View كۆرۈش - + Film screenshot فىلىم ئېكرانى - + Saved to ساقلاش - - + + The screenshot is saved كەسكەن رەسىم ساقلاندى - - + + Failed to save the screenshot كەسكەن رەسىمنى ساقلاشقا ئامالسىز - + Taking the screenshots, please wait... سۈرەتكە تارتىلىۋاتىدۇ،سەل ساقلاڭ... - - - Cancel - ئەمەلدىن قالدۇرۇش - - - - - Restart - قايتا قوزغىتىش - - - + Reading DVD files... DVD ھۆججەتلىرىنى ئوقۇۋاتىدۇ ... - + No matching online subtitles ماس كىلىدىغان خەت نۇسخىسى تېپىلمىدى - + 4K video may be stuck 4K سىن كۆرۈنۈش قېتىۋېلىشى مۇمكىن - + OK جەزىملەشتۈرۈش - - + + Order play زاكاس قويۇش - - + + Shuffle play ھالقىسىمان قويۇش - - + + Single play تاق قويۇش - - + + Single loop يەككە ھالقا - - + + List loop تىزىملىك ھالقىسى - + Buffering... بۇففېرلىنىۋاتىدۇ... - - + + Mute ئاۋازسىز - - + + Volume: %1% ئاۋاز مىقدارى:%1% - + Cannot open file or stream ھۆججەت ياكى ئېقىننى ئاچقىلى بولمايدۇ - - + + Invalid file ئىناۋەتسىز ھۆججەت - + Please insert a CD/DVD CD / DVD قىستۇرۇڭ - + No video file found فىلىم ھۆججىىتى تاپالمىدى - + Please load the video first ئاۋۋال فىلىمنى قوشۇڭ - - + + Please exit smart dock ئەقلىي ئىقتىدارلىق تەگلىكتىن چېكىنىڭ - + The CD/DVD has been ejected CD / DVD چىقىرىۋېتىلدى - + The action is not supported in this video نۆۋەتتىكى سىن بۇ ئىقتىدارنى قوللىمايدۇ - + Invalid file: %1 ئىناۋەتسىز ھۆججەت: %1 - + Connection failed ئۇلىنىش مەغلۇپ بولدى - + Miracast disconnected پىرويېكسىيەلەش ئۈزۈلدى @@ -1524,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play زاكاس قويۇش - + Shuffle play ھالقىسىمان قويۇش - + Single play تاق قويۇش - + Single loop يەككە ھالقا - + List loop تىزىملىك ھالقىسى - + Auto ئاپتوماتىك - + Open ئوچۇق - + Close تاقاش - + %1/Movie%2(%3).jpg %1 / كىنو %2 (%3) .jpg @@ -1572,65 +1518,65 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause قويۇش\توختۇتۇش - - + + Previous ئالدىنقى - - + + Next كېيىنكى - - - - + + + + Fullscreen تولۇق ئېكران - - + + Playlist تىزىملىك - - + + Miracast ئېكران پىرويېكسىيەلەش - - + + Exit fullscreen پۈتۈن ئېكراندىن چېكىنىش - - + + Pause تورمۇزلاش - - - + + + Play قويۇش - + Volume - ئاۋازئاۋاز چوڭلۇقى + ئاۋاز diff --git a/translations/deepin-movie_uk.ts b/translations/deepin-movie_uk.ts index d2d8946ac..57a38aba4 100644 --- a/translations/deepin-movie_uk.ts +++ b/translations/deepin-movie_uk.ts @@ -43,17 +43,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie Відео - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. Movie - повнофункціональний відеоплеєр, що підтримує відтворення локальних і потокових мультимедіа в декількох відеоформатах. @@ -323,61 +323,32 @@ Please do not exit the Movie app during the process. Програмне декодування - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - - - - + + You don't have permission to operate this folder Ви не маєте права керувати цією текою - - + + OK Гаразд - - + + Invalid folder Недійсна тека - - + + Open folder Відкрити теку - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected Немає з'єднання із мережею @@ -716,270 +687,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully Успішно завантажено - - - - + + + + Load failed Не вдалося завантажити. - - + + Cannot play the disc Не вдалося відтворити диск - - + + Parse failed Помилка обробки - + Open folder Відкрити теку - - - - - - - + + + + + + + Speed: %1x Швидкість: %1x - + Stereo Стерео - + Left channel Лівий канал - + Right channel Правий канал - + Track: %1 Композиція: %1 - - + + Unable to adjust the subtitle Не вдалося скоригувати субтитри - - + + Subtitle %1: %2s Субтитри %1: %2s - - + + delayed затримка - - + + advanced додатково - + View Переглянути - + Film screenshot Знімок кадру - + Saved to Зберегти до - - + + The screenshot is saved Знімок вікна збережено - - + + Failed to save the screenshot Не вдалося зберегти знімок екрана - + Taking the screenshots, please wait... Роблю скріншоти, будь ласка зачекайте... - - - Cancel - Скасувати - - - - - Restart - - - - + Reading DVD files... Читаємо файли DVD… - + Invalid file: %1 Неприпустимий файл: %1 - + Miracast disconnected Miracast від'єднано - + No matching online subtitles Немає відповідних інтернет-субтитрів - - + + All (*) усі (*) - + 4K video may be stuck Відео 4K можуть відтворюватися нерівномірно - + OK Гаразд - - + + Order play Замовити програвання - - + + Shuffle play Відтворення у випадковому порядку - - + + Single play Відтворення один раз - - + + Single loop Циклічне відтворення композиції - - + + List loop Циклічне відтворення списку - + Buffering... Буферизація... - - + + Mute Вимкнути звук - - + + Volume: %1% Гучність: %1% - - + + Cannot open file or stream Не вдалося відкрити файл або потік - + The action is not supported in this video Підтримки такої дії у цьому відео не передбачено - + Connection failed Не вдалося встановити з'єднання - - + + Invalid file Неприпустимий файл - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Субтитри (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD Будь ласка, вставте CD/DVD - + No video file found Не знайдено відеофайлів - + Please load the video first Будь ласка, спочатку завантажте відео - - + + Please exit smart dock Будь ласка, вийдіть зі смарт-панелі - + The CD/DVD has been ejected Компакт-диск/DVD виштовхнуто @@ -1131,7 +1090,7 @@ and whether to restart it? dmr::MpvProxy - + Internal Внутрішній @@ -1139,269 +1098,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully Успішно завантажено - - - - + + + + Load failed Не вдалося завантажити. - - + + Cannot play the disc Не вдалося відтворити диск - - + + Parse failed Помилка обробки - + Open folder Відкрити теку - - + + All (*) усі (*) - - - - - - - + + + + + + + Speed: %1x Швидкість: %1x - + Stereo Стерео - + Left channel Лівий канал - + Right channel Правий канал - + Track: %1 Композиція: %1 - - + + Unable to adjust the subtitle Не вдалося скоригувати субтитри - - + + Subtitle %1: %2s Субтитри %1: %2s - - + + delayed затримка - - + + advanced додатково - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) Субтитри (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View Переглянути - + Film screenshot Знімок кадру - + Saved to Зберегти до - - + + The screenshot is saved Знімок вікна збережено - - + + Failed to save the screenshot Не вдалося зберегти знімок екрана - + Taking the screenshots, please wait... Роблю скріншоти, будь ласка зачекайте... - - - Cancel - Скасувати - - - - - Restart - - - - + Reading DVD files... Читаємо файли DVD… - + No matching online subtitles Немає відповідних інтернет-субтитрів - + 4K video may be stuck Відео 4K можуть відтворюватися нерівномірно - + OK Гаразд - - + + Order play Замовити програвання - - + + Shuffle play Відтворення у випадковому порядку - - + + Single play Відтворення один раз - - + + Single loop Циклічне відтворення композиції - - + + List loop Циклічне відтворення списку - + Buffering... Буферизація... - - + + Mute Вимкнути звук - - + + Volume: %1% Гучність: %1% - + Cannot open file or stream Не вдалося відкрити файл або потік - - + + Invalid file Неприпустимий файл - + Please insert a CD/DVD Будь ласка, вставте CD/DVD - + No video file found Не знайдено відеофайлів - + Please load the video first Будь ласка, спочатку завантажте відео - - + + Please exit smart dock Будь ласка, вийдіть зі смарт-панелі - + The CD/DVD has been ejected Компакт-диск/DVD виштовхнуто - + The action is not supported in this video Підтримки такої дії у цьому відео не передбачено - + Invalid file: %1 Неприпустимий файл: %1 - + Connection failed Не вдалося встановити з'єднання - + Miracast disconnected Miracast від'єднано @@ -1524,47 +1471,47 @@ and whether to restart it? dmr::Settings - + Order play Замовити програвання - + Shuffle play Відтворення у випадковому порядку - + Single play Відтворення один раз - + Single loop Циклічне відтворення композиції - + List loop Циклічне відтворення списку - + Auto Авто - + Open Відкрити - + Close Закрити - + %1/Movie%2(%3).jpg %1/Відео%2(%3).jpg @@ -1572,63 +1519,63 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause Відтворення/Пауза - - + + Previous Назад - - + + Next Далі - - - - + + + + Fullscreen На весь екран - - + + Playlist Плейлист - - + + Miracast Miracast - - + + Exit fullscreen Вийти з повноекранного режиму - - + + Pause Пауза - - - + + + Play Відтворити - + Volume Гучність diff --git a/translations/deepin-movie_vi.ts b/translations/deepin-movie_vi.ts index 609933492..d3ed27eb3 100644 --- a/translations/deepin-movie_vi.ts +++ b/translations/deepin-movie_vi.ts @@ -41,41 +41,32 @@ Please do not exit the Movie app during the process. QObject - - + + OK - - + + Invalid folder - - + + Open folder - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - - - - - + + Network disconnected - - + + You don't have permission to operate this folder @@ -291,26 +282,6 @@ and whether to restart it? Software decoding - - - Customize - - - - - Decode mode - - - - - Video out - - - - - Rendering engine - - Rewind @@ -348,17 +319,17 @@ and whether to restart it? - - + + - + Movie - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. @@ -715,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + All (*) - + Buffering... - + Open folder - + Stereo - + Left channel - + Right channel - - + + Parse failed - - + + Mute Câm - - + + Volume: %1% - + Track: %1 - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - - - - - - - + + + + + + + Speed: %1x - - + + Cannot play the disc - - + + Unable to adjust the subtitle - + View - + Film screenshot - + Taking the screenshots, please wait... - - - Cancel - Hủy - - - - - Restart - - - - + Reading DVD files... - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Please insert a CD/DVD - + The action is not supported in this video - + Connection failed - + Miracast disconnected - - + + Please exit smart dock - + The CD/DVD has been ejected - + Please load the video first - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Invalid file: %1 - + No matching online subtitles - - + + Cannot open file or stream - - + + Invalid file - + No video file found @@ -1111,7 +1070,7 @@ and whether to restart it? dmr::MpvProxy - + Internal @@ -1119,269 +1078,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully - - - - + + + + Load failed - - + + Cannot play the disc - - + + Parse failed - + Open folder - - + + All (*) - - - - - - - + + + + + + + Speed: %1x - + Stereo - + Left channel - + Right channel - + Track: %1 - - + + Unable to adjust the subtitle - - + + Subtitle %1: %2s - - + + delayed - - + + advanced - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) - + View - + Film screenshot - + Saved to - - + + The screenshot is saved - - + + Failed to save the screenshot - + Taking the screenshots, please wait... - - - Cancel - Hủy - - - - - Restart - - - - + Reading DVD files... - + No matching online subtitles - + 4K video may be stuck - + OK - - + + Order play - - + + Shuffle play - - + + Single play - - + + Single loop - - + + List loop - + Buffering... - - + + Mute Câm - - + + Volume: %1% - + Cannot open file or stream - - + + Invalid file - + Please insert a CD/DVD - + No video file found - + Please load the video first - - + + Please exit smart dock - + The CD/DVD has been ejected - + The action is not supported in this video - + Invalid file: %1 - + Connection failed - + Miracast disconnected @@ -1504,47 +1451,47 @@ and whether to restart it? dmr::Settings - + Order play - + Shuffle play - + Single play - + Single loop - + List loop - + Auto - + Open - + Close - + %1/Movie%2(%3).jpg @@ -1552,63 +1499,63 @@ and whether to restart it? dmr::ToolboxProxy - - - + + + Play - - + + Previous Trước - - + + Next Kế tiếp - - + + Playlist - - - - + + + + Fullscreen Đầy màn hình - + Volume - + Play/Pause Chạy/Tạm dừng - - + + Miracast - - + + Exit fullscreen Thoát toàn màn hình - - + + Pause Dừng diff --git a/translations/deepin-movie_zh_CN.ts b/translations/deepin-movie_zh_CN.ts index a13bbcfa1..70e73bdc8 100644 --- a/translations/deepin-movie_zh_CN.ts +++ b/translations/deepin-movie_zh_CN.ts @@ -42,35 +42,35 @@ Please do not exit the Movie app during the process. QObject - - - - - + + + + + Movie 影院 - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. 影院是一款支持多种视频格式本地播放和流媒体播放的视频播放器。 - + Settings 设置 - + Help 帮助 - + Display shortcuts 显示快捷键 @@ -322,62 +322,32 @@ Please do not exit the Movie app during the process. 软件解码 - - Customize - 自定义 - - - - Decode mode - 解码方式 - - - - Video out - 输出驱动 - - - - Rendering engine - 渲染引擎 - - - - + + You don't have permission to operate this folder 此文件夹没有操作权限 - - + + OK 确定 - - + + Invalid folder 此文件夹无效 - - + + Open folder 打开文件夹 - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - 自定义解码方式需要重启后才能生效, -是否重启? - - - - + + Network disconnected 网络已断开 @@ -716,283 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully 载入字幕成功 - - - - + + + + Load failed 载入字幕失败 - - + + Cannot play the disc 无法播放光盘内容 - - + + Parse failed 解析失败 - + Open folder 打开文件夹 - - - - - - - + + + + + + + Speed: %1x 播放速度:%1倍 - + Stereo 立体声 - + Left channel 左声道 - + Right channel 右声道 - + Track: %1 音轨:%1 - - + + Unable to adjust the subtitle 当前字幕不可调节 - - + + Subtitle %1: %2s 字幕%1:%2秒 - - + + delayed 延迟 - - + + advanced 提前 - + View 查看 - + Film screenshot 影片截图 - + Saved to 保存到 - - + + The screenshot is saved 截图已保存 - - + + Failed to save the screenshot 截图保存失败 - + Taking the screenshots, please wait... 正在截图,请稍候... - - - Cancel - 取消 - - - - - Restart - 重启 - - - - Professional mode is only for professionals to use - 专业模式仅供专业人员使用 - - - + Reading DVD files... 正在读取光盘文件... - + Invalid file: %1 无效文件:%1 - + Miracast disconnected 投屏已断开 - + No matching online subtitles 未找到匹配的在线字幕 - - + + All (*) 所有 (*) - + 4K video may be stuck 播放4K视频可能会出现卡顿 - - + OK 确定 - - During the adaptation process, there may be issues such as screen distortion, freezing, stuttering, torn images, -unsynchronized audio and video, and player crashes. Please use with caution. - 适配过程中可能出现花屏、卡死、卡顿、画面撕裂、音画不同步、 -播放器闪退等问题,请谨慎使用。 - - - - + + Order play 顺序播放 - - + + Shuffle play 随机播放 - - + + Single play 单个播放 - - + + Single loop 单个循环 - - + + List loop 列表循环 - + Buffering... 缓冲中... - - + + Mute 静音 - - + + Volume: %1% 音量:%1% - - + + Cannot open file or stream 无法打开文件或者流 - + The action is not supported in this video 当前视频不支持该功能 - + Connection failed 连接失败 - - + + Invalid file 无效文件 - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) 字幕文件 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD 请插入CD或DVD - + No video file found 没有找到视频文件 - + Please load the video first 请先载入影片 - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected CD/DVD已弹出 @@ -1000,24 +945,20 @@ unsynchronized audio and video, and player crashes. Please use with caution. dmr::MovieInfo - %1G - %1G + %1G - %1M - %1M + %1M - %1K - %1K + %1K - %1 - %1 + %1 @@ -1148,7 +1089,7 @@ unsynchronized audio and video, and player crashes. Please use with caution. dmr::MpvProxy - + Internal 内部 @@ -1156,282 +1097,257 @@ unsynchronized audio and video, and player crashes. Please use with caution. dmr::Platform_MainWindow - - - + + + Load successfully 载入字幕成功 - - - - + + + + Load failed 载入字幕失败 - - + + Cannot play the disc 无法播放光盘内容 - - + + Parse failed 解析失败 - + Open folder 打开文件夹 - - + + All (*) 所有 (*) - - - - - - - + + + + + + + Speed: %1x 播放速度:%1倍 - + Stereo 立体声 - + Left channel 左声道 - + Right channel 右声道 - + Track: %1 音轨:%1 - - + + Unable to adjust the subtitle 当前字幕不可调节 - - + + Subtitle %1: %2s 字幕%1:%2秒 - - + + delayed 延迟 - - + + advanced 提前 - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) 字幕文件 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View 查看 - + Film screenshot 影片截图 - + Saved to 保存到 - - + + The screenshot is saved 截图已保存 - - + + Failed to save the screenshot 截图保存失败 - + Taking the screenshots, please wait... 正在截图,请稍候... - - - Cancel - 取消 - - - - - Restart - 重启 - - - - Professional mode is only for professionals to use - 专业模式仅供专业人员使用 - - - + Reading DVD files... 正在读取光盘文件... - + No matching online subtitles 未找到匹配的在线字幕 - + 4K video may be stuck 播放4K视频可能会出现卡顿 - - + OK 确 定 - - During the adaptation process, there may be issues such as screen distortion, freezing, stuttering, torn images, -unsynchronized audio and video, and player crashes. Please use with caution. - 适配过程中可能出现花屏、卡死、卡顿、画面撕裂、音画不同步、 -播放器闪退等问题,请谨慎使用。 - - - - + + Order play 顺序播放 - - + + Shuffle play 随机播放 - - + + Single play 单个播放 - - + + Single loop 单个循环 - - + + List loop 列表循环 - + Buffering... 缓冲中... - - + + Mute 静音 - - + + Volume: %1% 音量:%1% - + Cannot open file or stream 无法打开文件或者流 - - + + Invalid file 无效文件 - + Please insert a CD/DVD 请插入CD或DVD - + No video file found 没有找到视频文件 - + Please load the video first 请先载入影片 - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected CD/DVD已弹出 - + The action is not supported in this video 当前视频不支持该功能 - + Invalid file: %1 无效文件:%1 - + Connection failed 连接失败 - + Miracast disconnected 投屏已断开 @@ -1554,47 +1470,47 @@ unsynchronized audio and video, and player crashes. Please use with caution. dmr::Settings - + Order play 顺序播放 - + Shuffle play 随机播放 - + Single play 单个播放 - + Single loop 单个循环 - + List loop 列表循环 - + Auto 自动 - + Open 打开 - + Close 关闭 - + %1/Movie%2(%3).jpg %1/影院%2(%3).jpg @@ -1602,65 +1518,65 @@ unsynchronized audio and video, and player crashes. Please use with caution. dmr::ToolboxProxy - + Play/Pause 播放/暂停 - - + + Previous 上一个 - - + + Next 下一个 - - - - + + + + Fullscreen 全屏 - - + + Playlist 播放列表 - - + + Miracast 投屏 - - + + Exit fullscreen 退出全屏 - - + + Pause 暂停 - - - + + + Play 播放 - + Volume - 音量 + 音量 diff --git a/translations/deepin-movie_zh_HK.ts b/translations/deepin-movie_zh_HK.ts index e5ab31721..f5d407e14 100644 --- a/translations/deepin-movie_zh_HK.ts +++ b/translations/deepin-movie_zh_HK.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie 電影 - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. 電影是一款支持多種影片格式本地播放和流媒體播放的影片播放器。 @@ -322,62 +322,32 @@ Please do not exit the Movie app during the process. 軟件解碼 - - Customize - 自订 - - - - Decode mode - 解码方式 - - - - Video out - 输出驱动 - - - - Rendering engine - 渲染引擎 - - - - + + You don't have permission to operate this folder 此文件夾沒有操作權限 - - + + OK 確定 - - + + Invalid folder 此文件夾無效 - - + + Open folder 開啟資料夾 - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - 自订译码方法要重新启动先可以生效, -与及系咪重新启动? - - - - + + Network disconnected 網絡已斷開 @@ -716,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully 載入字幕成功 - - - - + + + + Load failed 載入字幕失敗 - - + + Cannot play the disc 無法播放光盤內容 - - + + Parse failed 解析失敗 - + Open folder 開啟資料夾 - - - - - - - + + + + + + + Speed: %1x 播放速度:%1倍 - + Stereo 立體聲 - + Left channel 左聲道 - + Right channel 右聲道 - + Track: %1 音軌:%1 - - + + Unable to adjust the subtitle 當前字幕不可調節 - - + + Subtitle %1: %2s 字幕%1:%2秒 - - + + delayed 延遲 - - + + advanced 提前 - + View 檢視 - + Film screenshot 影片截圖 - + Saved to 保存到 - - + + The screenshot is saved 截圖已保存 - - + + Failed to save the screenshot 截圖保存失敗 - + Taking the screenshots, please wait... 正在截圖,請稍候... - - - Cancel - 取消 - - - - - Restart - 取消 - - - + Reading DVD files... 正在讀取光盤文件... - + Invalid file: %1 無效文件:%1 - + Miracast disconnected 投屏已斷開 - + No matching online subtitles 未找到匹配的在線字幕 - - + + All (*) 所有 (*) - + 4K video may be stuck 播放4K影片可能會出現卡頓 - + OK 確定 - - + + Order play 播放次序 - - + + Shuffle play 順序播放 - - + + Single play 單個播放 - - + + Single loop 單個循環 - - + + List loop 列表循環 - + Buffering... 緩衝中... - - + + Mute 靜音 - - + + Volume: %1% 音量:%1% - - + + Cannot open file or stream 無法打開文件或者流 - + The action is not supported in this video 當前影片不支持該功能 - + Connection failed 連接失敗 - - + + Invalid file 無效檔案 - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) 字幕文件 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD 請插入CD或DVD - + No video file found 沒有找到影片文件 - + Please load the video first 請先載入影片 - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected CD/DVD已彈出 @@ -1131,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal 內部 @@ -1139,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully 載入字幕成功 - - - - + + + + Load failed 載入字幕失敗 - - + + Cannot play the disc 無法播放光盤內容 - - + + Parse failed 解析失敗 - + Open folder 開啟資料夾 - - + + All (*) 所有 (*) - - - - - - - + + + + + + + Speed: %1x 播放速度:%1倍 - + Stereo 立體聲 - + Left channel 左聲道 - + Right channel 右聲道 - + Track: %1 音軌:%1 - - + + Unable to adjust the subtitle 當前字幕不可調節 - - + + Subtitle %1: %2s 字幕%1:%2秒 - - + + delayed 延遲 - - + + advanced 提前 - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) 字幕文件 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View 檢視 - + Film screenshot 影片截圖 - + Saved to 保存到 - - + + The screenshot is saved 截圖已保存 - - + + Failed to save the screenshot 截圖保存失敗 - + Taking the screenshots, please wait... 正在截圖,請稍候... - - - Cancel - 取消 - - - - - Restart - 重啓 - - - + Reading DVD files... 正在讀取光盤文件... - + No matching online subtitles 未找到匹配的在線字幕 - + 4K video may be stuck 播放4K影片可能會出現卡頓 - + OK 確 定 - - + + Order play 播放次序 - - + + Shuffle play 順序播放 - - + + Single play 單個播放 - - + + Single loop 單個循環 - - + + List loop 列表循環 - + Buffering... 緩衝中... - - + + Mute 靜音 - - + + Volume: %1% 音量:%1% - + Cannot open file or stream 無法打開文件或者流 - - + + Invalid file 無效檔案 - + Please insert a CD/DVD 請插入CD或DVD - + No video file found 沒有找到影片文件 - + Please load the video first 請先載入影片 - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected CD/DVD已彈出 - + The action is not supported in this video 當前影片不支持該功能 - + Invalid file: %1 無效文件:%1 - + Connection failed 連接失敗 - + Miracast disconnected 投屏已斷開 @@ -1524,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play 播放次序 - + Shuffle play 順序播放 - + Single play 單個播放 - + Single loop 單個循環 - + List loop 列表循環 - + Auto 自動 - + Open 打開 - + Close 關閉 - + %1/Movie%2(%3).jpg %1/影院%2(%3).jpg @@ -1572,65 +1518,65 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause 暫停/繼續 - - + + Previous 上一個 - - + + Next 下一個 - - - - + + + + Fullscreen 全螢幕 - - + + Playlist 播放清單 - - + + Miracast 投屏 - - + + Exit fullscreen 退出全螢幕 - - + + Pause 暫停 - - - + + + Play 播放 - + Volume - 音量 + 音量 diff --git a/translations/deepin-movie_zh_TW.ts b/translations/deepin-movie_zh_TW.ts index dafeddf70..b282cb1f9 100644 --- a/translations/deepin-movie_zh_TW.ts +++ b/translations/deepin-movie_zh_TW.ts @@ -42,17 +42,17 @@ Please do not exit the Movie app during the process. QObject - - + + - + Movie 電影 - + Movie is a full-featured video player, supporting playing local and streaming media in multiple video formats. 電影是一款支援多種影片格式本機播放和流媒體播放的影片播放器。 @@ -322,62 +322,32 @@ Please do not exit the Movie app during the process. 軟體解碼 - - Customize - 自定義 - - - - Decode mode - 解碼管道 - - - - Video out - 輸出驅動 - - - - Rendering engine - 渲染引擎 - - - - + + You don't have permission to operate this folder 無權更動資料夾 - - + + OK 確認 - - + + Invalid folder 無效資料夾 - - + + Open folder 開啟資料夾 - - - - - The custom decoding method needs to be restarted before it can take effect, -and whether to restart it? - 自定義解碼方法需要重新啟動才能生效, -以及是否重新啟動? - - - - + + Network disconnected 網路已斷開 @@ -716,270 +686,258 @@ and whether to restart it? dmr::MainWindow - - - + + + Load successfully 載入成功 - - - - + + + + Load failed 載入失敗 - - + + Cannot play the disc 無法播放光碟內容 - - + + Parse failed 解析失敗 - + Open folder 開啟資料夾 - - - - - - - + + + + + + + Speed: %1x 速度:%1 倍 - + Stereo 立體聲 - + Left channel 左聲道 - + Right channel 右聲道 - + Track: %1 音軌:%1 - - + + Unable to adjust the subtitle 目前字幕不可調節 - - + + Subtitle %1: %2s 字幕 %1:%2 秒 - - + + delayed 後退 - - + + advanced 前進 - + View 瀏覽 - + Film screenshot 影片截圖 - + Saved to 儲存到 - - + + The screenshot is saved 截圖已儲存 - - + + Failed to save the screenshot 無法儲存螢幕截圖 - + Taking the screenshots, please wait... 正在截圖,請稍候... - - - Cancel - 取消 - - - - - Restart - 重啓 - - - + Reading DVD files... 正在讀取光碟文件... - + Invalid file: %1 檔案無效:%1 - + Miracast disconnected 投屏已斷開 - + No matching online subtitles 未找到匹配的線上字幕 - - + + All (*) 所有 (*) - + 4K video may be stuck 播放4K影片可能會出現卡頓 - + OK 確認 - - + + Order play 順序播放 - - + + Shuffle play 隨機播放 - - + + Single play 單獨播放 - - + + Single loop 單獨循環 - - + + List loop 列表循環 - + Buffering... 正在緩衝… - - + + Mute 靜音 - - + + Volume: %1% 音量:%1% - - + + Cannot open file or stream 無法打開文件或者流 - + The action is not supported in this video 目前影片不支援該功能 - + Connection failed 連接失敗 - - + + Invalid file 無效檔案 - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) 字幕 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + Please insert a CD/DVD 請插入CD或DVD - + No video file found 沒有找到影片檔案 - + Please load the video first 播放4K影片可能會出現卡頓 - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected CD/DVD已彈出 @@ -1131,7 +1089,7 @@ and whether to restart it? dmr::MpvProxy - + Internal 內嵌 @@ -1139,269 +1097,257 @@ and whether to restart it? dmr::Platform_MainWindow - - - + + + Load successfully 載入成功 - - - - + + + + Load failed 載入失敗 - - + + Cannot play the disc 無法播放光碟內容 - - + + Parse failed 解析失敗 - + Open folder 開啟資料夾 - - + + All (*) 所有 (*) - - - - - - - + + + + + + + Speed: %1x 速度:%1 倍 - + Stereo 立體聲 - + Left channel 左聲道 - + Right channel 右聲道 - + Track: %1 音軌:%1 - - + + Unable to adjust the subtitle 目前字幕不可調節 - - + + Subtitle %1: %2s 字幕 %1:%2 秒 - - + + delayed 後退 - - + + advanced 前進 - + Subtitle (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) All (*) 字幕 (*.ass *.aqt *.jss *.gsub *.ssf *.srt *.sub *.ssa *.smi *.usf *.idx) - + View 瀏覽 - + Film screenshot 影片截圖 - + Saved to 儲存到 - - + + The screenshot is saved 截圖已儲存 - - + + Failed to save the screenshot 無法儲存螢幕截圖 - + Taking the screenshots, please wait... 正在截圖,請稍候... - - - Cancel - 取消 - - - - - Restart - 重啓 - - - + Reading DVD files... 正在讀取光碟文件... - + No matching online subtitles 未找到匹配的線上字幕 - + 4K video may be stuck 播放4K影片可能會出現卡頓 - + OK 確 定 - - + + Order play 順序播放 - - + + Shuffle play 隨機播放 - - + + Single play 單獨播放 - - + + Single loop 單獨循環 - - + + List loop 列表循環 - + Buffering... 正在緩衝… - - + + Mute 靜音 - - + + Volume: %1% 音量:%1% - + Cannot open file or stream 無法打開文件或者流 - - + + Invalid file 無效檔案 - + Please insert a CD/DVD 請插入CD或DVD - + No video file found 沒有找到影片檔案 - + Please load the video first 播放4K影片可能會出現卡頓 - - + + Please exit smart dock Please exit smart dock - + The CD/DVD has been ejected CD/DVD已彈出 - + The action is not supported in this video 目前影片不支援該功能 - + Invalid file: %1 檔案無效:%1 - + Connection failed 連接失敗 - + Miracast disconnected 投屏已斷開 @@ -1524,47 +1470,47 @@ and whether to restart it? dmr::Settings - + Order play 順序播放 - + Shuffle play 隨機播放 - + Single play 單獨播放 - + Single loop 單獨循環 - + List loop 列表循環 - + Auto 自動 - + Open 開啟 - + Close 關閉 - + %1/Movie%2(%3).jpg %1/電影截圖%2(%3).jpg @@ -1572,65 +1518,65 @@ and whether to restart it? dmr::ToolboxProxy - + Play/Pause 播放/暫停 - - + + Previous 上一個 - - + + Next 下一個 - - - - + + + + Fullscreen 全螢幕 - - + + Playlist 播放列表 - - + + Miracast 投屏 - - + + Exit fullscreen 退出全螢幕 - - + + Pause 暫停 - - - + + + Play 播放 - + Volume - 音量 + 音量