From cc1171513ab89705654dfc8959af0907ab741e6d Mon Sep 17 00:00:00 2001 From: cjee21 <77721854+cjee21@users.noreply.github.com> Date: Sun, 16 Feb 2025 01:50:35 +0800 Subject: [PATCH 1/4] Qt GUI: Implement translations --- Project/QMake/GUI/MediaInfoQt.pro | 39 ++ Source/GUI/Qt/about.cpp | 3 +- Source/GUI/Qt/about.ui | 16 +- Source/GUI/Qt/columneditsheet.cpp | 1 - Source/GUI/Qt/editcustom.cpp | 1 - Source/GUI/Qt/editsheet.cpp | 3 +- Source/GUI/Qt/export.cpp | 42 +- Source/GUI/Qt/mainwindow.cpp | 76 +- Source/GUI/Qt/mainwindow.h | 2 + Source/GUI/Qt/prefs.cpp | 16 +- Source/GUI/Qt/prefs.ui | 46 +- Source/GUI/Qt/sheetview.cpp | 3 +- Source/GUI/Qt/translate.cpp | 64 +- Source/GUI/Qt/translate.h | 6 +- Source/GUI/Qt/views.cpp | 52 +- Source/Resource/Resources.qrc | 78 +++ Source/Resource/Translations/ar.qm | 1 + Source/Resource/Translations/ar.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/be.qm | 1 + Source/Resource/Translations/be.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/bg.qm | 1 + Source/Resource/Translations/bg.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/ca.qm | 1 + Source/Resource/Translations/ca.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/cs.qm | 1 + Source/Resource/Translations/cs.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/da.qm | 1 + Source/Resource/Translations/da.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/de.qm | 1 + Source/Resource/Translations/de.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/en.qm | Bin 0 -> 13603 bytes Source/Resource/Translations/en.ts | 964 ++++++++++++++++++++++++++ Source/Resource/Translations/es.qm | 1 + Source/Resource/Translations/es.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/eu.qm | 1 + Source/Resource/Translations/eu.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/fa.qm | 1 + Source/Resource/Translations/fa.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/fr.qm | Bin 0 -> 6043 bytes Source/Resource/Translations/fr.ts | 960 +++++++++++++++++++++++++ Source/Resource/Translations/gl.qm | 1 + Source/Resource/Translations/gl.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/gr.qm | 1 + Source/Resource/Translations/gr.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/hr.qm | 1 + Source/Resource/Translations/hr.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/hu.qm | 1 + Source/Resource/Translations/hu.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/hy.qm | 1 + Source/Resource/Translations/hy.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/id.qm | 1 + Source/Resource/Translations/id.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/it.qm | 1 + Source/Resource/Translations/it.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/ja.qm | 1 + Source/Resource/Translations/ja.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/ka.qm | 1 + Source/Resource/Translations/ka.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/ko.qm | 1 + Source/Resource/Translations/ko.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/lt.qm | 1 + Source/Resource/Translations/lt.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/nl.qm | 1 + Source/Resource/Translations/nl.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/pl.qm | 1 + Source/Resource/Translations/pl.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/pt-BR.qm | 1 + Source/Resource/Translations/pt-BR.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/pt.qm | 1 + Source/Resource/Translations/pt.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/ro.qm | 1 + Source/Resource/Translations/ro.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/ru.qm | 1 + Source/Resource/Translations/ru.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/sk.qm | 1 + Source/Resource/Translations/sk.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/sq.qm | 1 + Source/Resource/Translations/sq.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/sv.qm | 1 + Source/Resource/Translations/sv.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/th.qm | 1 + Source/Resource/Translations/th.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/tr.qm | 1 + Source/Resource/Translations/tr.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/uk.qm | 1 + Source/Resource/Translations/uk.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/zh-CN.qm | 1 + Source/Resource/Translations/zh-CN.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/zh-HK.qm | 1 + Source/Resource/Translations/zh-HK.ts | 954 +++++++++++++++++++++++++ Source/Resource/Translations/zh-TW.qm | 1 + Source/Resource/Translations/zh-TW.ts | 954 +++++++++++++++++++++++++ 92 files changed, 36625 insertions(+), 127 deletions(-) create mode 100644 Source/Resource/Translations/ar.qm create mode 100644 Source/Resource/Translations/ar.ts create mode 100644 Source/Resource/Translations/be.qm create mode 100644 Source/Resource/Translations/be.ts create mode 100644 Source/Resource/Translations/bg.qm create mode 100644 Source/Resource/Translations/bg.ts create mode 100644 Source/Resource/Translations/ca.qm create mode 100644 Source/Resource/Translations/ca.ts create mode 100644 Source/Resource/Translations/cs.qm create mode 100644 Source/Resource/Translations/cs.ts create mode 100644 Source/Resource/Translations/da.qm create mode 100644 Source/Resource/Translations/da.ts create mode 100644 Source/Resource/Translations/de.qm create mode 100644 Source/Resource/Translations/de.ts create mode 100644 Source/Resource/Translations/en.qm create mode 100644 Source/Resource/Translations/en.ts create mode 100644 Source/Resource/Translations/es.qm create mode 100644 Source/Resource/Translations/es.ts create mode 100644 Source/Resource/Translations/eu.qm create mode 100644 Source/Resource/Translations/eu.ts create mode 100644 Source/Resource/Translations/fa.qm create mode 100644 Source/Resource/Translations/fa.ts create mode 100644 Source/Resource/Translations/fr.qm create mode 100644 Source/Resource/Translations/fr.ts create mode 100644 Source/Resource/Translations/gl.qm create mode 100644 Source/Resource/Translations/gl.ts create mode 100644 Source/Resource/Translations/gr.qm create mode 100644 Source/Resource/Translations/gr.ts create mode 100644 Source/Resource/Translations/hr.qm create mode 100644 Source/Resource/Translations/hr.ts create mode 100644 Source/Resource/Translations/hu.qm create mode 100644 Source/Resource/Translations/hu.ts create mode 100644 Source/Resource/Translations/hy.qm create mode 100644 Source/Resource/Translations/hy.ts create mode 100644 Source/Resource/Translations/id.qm create mode 100644 Source/Resource/Translations/id.ts create mode 100644 Source/Resource/Translations/it.qm create mode 100644 Source/Resource/Translations/it.ts create mode 100644 Source/Resource/Translations/ja.qm create mode 100644 Source/Resource/Translations/ja.ts create mode 100644 Source/Resource/Translations/ka.qm create mode 100644 Source/Resource/Translations/ka.ts create mode 100644 Source/Resource/Translations/ko.qm create mode 100644 Source/Resource/Translations/ko.ts create mode 100644 Source/Resource/Translations/lt.qm create mode 100644 Source/Resource/Translations/lt.ts create mode 100644 Source/Resource/Translations/nl.qm create mode 100644 Source/Resource/Translations/nl.ts create mode 100644 Source/Resource/Translations/pl.qm create mode 100644 Source/Resource/Translations/pl.ts create mode 100644 Source/Resource/Translations/pt-BR.qm create mode 100644 Source/Resource/Translations/pt-BR.ts create mode 100644 Source/Resource/Translations/pt.qm create mode 100644 Source/Resource/Translations/pt.ts create mode 100644 Source/Resource/Translations/ro.qm create mode 100644 Source/Resource/Translations/ro.ts create mode 100644 Source/Resource/Translations/ru.qm create mode 100644 Source/Resource/Translations/ru.ts create mode 100644 Source/Resource/Translations/sk.qm create mode 100644 Source/Resource/Translations/sk.ts create mode 100644 Source/Resource/Translations/sq.qm create mode 100644 Source/Resource/Translations/sq.ts create mode 100644 Source/Resource/Translations/sv.qm create mode 100644 Source/Resource/Translations/sv.ts create mode 100644 Source/Resource/Translations/th.qm create mode 100644 Source/Resource/Translations/th.ts create mode 100644 Source/Resource/Translations/tr.qm create mode 100644 Source/Resource/Translations/tr.ts create mode 100644 Source/Resource/Translations/uk.qm create mode 100644 Source/Resource/Translations/uk.ts create mode 100644 Source/Resource/Translations/zh-CN.qm create mode 100644 Source/Resource/Translations/zh-CN.ts create mode 100644 Source/Resource/Translations/zh-HK.qm create mode 100644 Source/Resource/Translations/zh-HK.ts create mode 100644 Source/Resource/Translations/zh-TW.qm create mode 100644 Source/Resource/Translations/zh-TW.ts diff --git a/Project/QMake/GUI/MediaInfoQt.pro b/Project/QMake/GUI/MediaInfoQt.pro index 5ebfc2203..f63ab2337 100644 --- a/Project/QMake/GUI/MediaInfoQt.pro +++ b/Project/QMake/GUI/MediaInfoQt.pro @@ -276,6 +276,45 @@ FORMS += ../../../Source/GUI/Qt/mainwindow.ui \ ../../../Source/GUI/Qt/editsheet.ui \ ../../../Source/GUI/Qt/editconfigtreetext.ui +TRANSLATIONS = ../../../Source/Resource/Translations/ar.ts \ + ../../../Source/Resource/Translations/be.ts \ + ../../../Source/Resource/Translations/bg.ts \ + ../../../Source/Resource/Translations/ca.ts \ + ../../../Source/Resource/Translations/cs.ts \ + ../../../Source/Resource/Translations/da.ts \ + ../../../Source/Resource/Translations/de.ts \ + ../../../Source/Resource/Translations/en.ts \ + ../../../Source/Resource/Translations/es.ts \ + ../../../Source/Resource/Translations/eu.ts \ + ../../../Source/Resource/Translations/fa.ts \ + ../../../Source/Resource/Translations/fr.ts \ + ../../../Source/Resource/Translations/gl.ts \ + ../../../Source/Resource/Translations/gr.ts \ + ../../../Source/Resource/Translations/hr.ts \ + ../../../Source/Resource/Translations/hu.ts \ + ../../../Source/Resource/Translations/hy.ts \ + ../../../Source/Resource/Translations/id.ts \ + ../../../Source/Resource/Translations/it.ts \ + ../../../Source/Resource/Translations/ja.ts \ + ../../../Source/Resource/Translations/ka.ts \ + ../../../Source/Resource/Translations/ko.ts \ + ../../../Source/Resource/Translations/lt.ts \ + ../../../Source/Resource/Translations/nl.ts \ + ../../../Source/Resource/Translations/pl.ts \ + ../../../Source/Resource/Translations/pt-BR.ts \ + ../../../Source/Resource/Translations/pt.ts \ + ../../../Source/Resource/Translations/ro.ts \ + ../../../Source/Resource/Translations/ru.ts \ + ../../../Source/Resource/Translations/sk.ts \ + ../../../Source/Resource/Translations/sq.ts \ + ../../../Source/Resource/Translations/sv.ts \ + ../../../Source/Resource/Translations/th.ts \ + ../../../Source/Resource/Translations/tr.ts \ + ../../../Source/Resource/Translations/uk.ts \ + ../../../Source/Resource/Translations/zh-CN.ts \ + ../../../Source/Resource/Translations/zh-HK.ts \ + ../../../Source/Resource/Translations/zh-TW.ts + RESOURCES += ../../../Source/Resource/Resources.qrc OBJECTS_DIR = _Automated diff --git a/Source/GUI/Qt/about.cpp b/Source/GUI/Qt/about.cpp index e3ba13dae..bdcde62e2 100644 --- a/Source/GUI/Qt/about.cpp +++ b/Source/GUI/Qt/about.cpp @@ -4,7 +4,6 @@ * be found in the License.html file in the root of the source tree. */ -#include "translate.h" #include "about.h" #include "ui_about.h" #include @@ -18,7 +17,7 @@ About::About(QWidget *parent) : ui->setupUi(this); #if !defined(_WIN32) || !defined(WINAPI_FAMILY) || (WINAPI_FAMILY!=WINAPI_FAMILY_APP) // Workaround render bug - setWindowTitle("About"); + setWindowTitle(tr("About")); #endif #if defined(_WIN32) && defined(WINAPI_FAMILY) && (WINAPI_FAMILY==WINAPI_FAMILY_APP) // Remove donate button diff --git a/Source/GUI/Qt/about.ui b/Source/GUI/Qt/about.ui index 3a2831bca..8e4b8df0e 100644 --- a/Source/GUI/Qt/about.ui +++ b/Source/GUI/Qt/about.ui @@ -37,7 +37,7 @@ - Qt::Vertical + Qt::Orientation::Vertical @@ -67,6 +67,12 @@ WindowsMedia (including WMV, WMA) Microsoft RIFF (including AVI, WAV) Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignTop + + + true + @@ -74,7 +80,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - Qt::Vertical + Qt::Orientation::Vertical @@ -110,7 +116,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) true - Qt::AlignCenter + Qt::AlignmentFlag::AlignCenter @@ -152,7 +158,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - Qt::Horizontal + Qt::Orientation::Horizontal @@ -170,7 +176,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) Translator : Zen - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter diff --git a/Source/GUI/Qt/columneditsheet.cpp b/Source/GUI/Qt/columneditsheet.cpp index 3a5a87165..b7238ade7 100644 --- a/Source/GUI/Qt/columneditsheet.cpp +++ b/Source/GUI/Qt/columneditsheet.cpp @@ -10,7 +10,6 @@ #include #include #include -#include "translate.h" #include using namespace ZenLib; diff --git a/Source/GUI/Qt/editcustom.cpp b/Source/GUI/Qt/editcustom.cpp index 5b08a304e..d7804ec5f 100644 --- a/Source/GUI/Qt/editcustom.cpp +++ b/Source/GUI/Qt/editcustom.cpp @@ -4,7 +4,6 @@ * be found in the License.html file in the root of the source tree. */ -#include "translate.h" #include "editcustom.h" #include "ui_editcustom.h" diff --git a/Source/GUI/Qt/editsheet.cpp b/Source/GUI/Qt/editsheet.cpp index 586a1641b..5b35a5e68 100644 --- a/Source/GUI/Qt/editsheet.cpp +++ b/Source/GUI/Qt/editsheet.cpp @@ -4,7 +4,6 @@ * be found in the License.html file in the root of the source tree. */ -#include "translate.h" #include "editsheet.h" #include "ui_editsheet.h" #include "sheet.h" @@ -107,7 +106,7 @@ void EditSheet::delCol(int i) { void EditSheet::addColumn() { column c; - c.name = Tr("CompleteName"); + c.name = tr("CompleteName"); c.width = 50; c.stream = Stream_General; c.key = "CompleteName"; diff --git a/Source/GUI/Qt/export.cpp b/Source/GUI/Qt/export.cpp index a11654efd..8088d39d9 100644 --- a/Source/GUI/Qt/export.cpp +++ b/Source/GUI/Qt/export.cpp @@ -5,12 +5,10 @@ */ #include "export.h" -#include "translate.h" #include "ui_export.h" #include #include #include "configtreetext.h" -#include "mainwindow.h" Export::Export(QString filename, int mode, QWidget *parent) : QDialog(parent), @@ -143,45 +141,45 @@ QString Export::extensionName(int mode) { QString Export::name(int mode) { switch(mode) { default: - case TEXT: return Tr("Text"); + case TEXT: return tr("Text"); break; - case HTML: return Tr("HTML"); + case HTML: return tr("HTML"); break; - case XML: return Tr("XML"); + case XML: return tr("XML"); break; - case JSON: return Tr("JSON"); + case JSON: return tr("JSON"); break; - case GRAPH: return Tr("Graph"); + case GRAPH: return tr("Graph"); break; - case PBCORE: return Tr("PBCore"); + case PBCORE: return tr("PBCore"); break; - case PBCORE2: return Tr("PBCore 2"); + case PBCORE2: return tr("PBCore 2"); break; - case MPEG7_Strict: return Tr("MPEG-7 (strict)"); + case MPEG7_Strict: return tr("MPEG-7 (strict)"); break; - case MPEG7_Relaxed: return Tr("MPEG-7 (relaxed)"); + case MPEG7_Relaxed: return tr("MPEG-7 (relaxed)"); break; - case MPEG7_Extended: return Tr("MPEG-7 (extended)"); + case MPEG7_Extended: return tr("MPEG-7 (extended)"); break; - case EBUCORE_1_5: return Tr("EBUCore 1.5"); + case EBUCORE_1_5: return tr("EBUCore 1.5"); break; - case EBUCORE_1_6: return Tr("EBUCore 1.6"); + case EBUCORE_1_6: return tr("EBUCore 1.6"); break; - case EBUCORE_1_8_ps: return Tr("EBUCore 1.8 parameter then segment"); + case EBUCORE_1_8_ps: return tr("EBUCore 1.8 parameter then segment"); break; - case EBUCORE_1_8_sp: return Tr("EBUCore 1.8 segment then parameter"); + case EBUCORE_1_8_sp: return tr("EBUCore 1.8 segment then parameter"); break; - case EBUCORE_1_8_ps_JSON: return Tr("EBUCore 1.8 parameter then segment (JSON output)"); + case EBUCORE_1_8_ps_JSON: return tr("EBUCore 1.8 parameter then segment (JSON output)"); break; - case EBUCORE_1_8_sp_JSON: return Tr("EBUCore 1.8 segment then parameter (JSON output)"); + case EBUCORE_1_8_sp_JSON: return tr("EBUCore 1.8 segment then parameter (JSON output)"); break; - case FIMS_1_1: return Tr("FIMS 1.1"); + case FIMS_1_1: return tr("FIMS 1.1"); break; - case FIMS_1_2: return Tr("FIMS 1.2"); + case FIMS_1_2: return tr("FIMS 1.2"); break; - case FIMS_1_3: return Tr("FIMS 1.3"); + case FIMS_1_3: return tr("FIMS 1.3"); break; - case NISO_Z39_87: return Tr("NISO Z39.87"); + case NISO_Z39_87: return tr("NISO Z39.87"); break; } } diff --git a/Source/GUI/Qt/mainwindow.cpp b/Source/GUI/Qt/mainwindow.cpp index b2135b220..2b98277f3 100644 --- a/Source/GUI/Qt/mainwindow.cpp +++ b/Source/GUI/Qt/mainwindow.cpp @@ -5,7 +5,6 @@ */ #include "mainwindow.h" -#include "translate.h" #include "ui_mainwindow.h" #include "easyviewwidget.h" @@ -34,6 +33,7 @@ #include #include #include +#include /* #include #include @@ -170,6 +170,7 @@ MainWindow::MainWindow(QStringList filesnames, int viewasked, QWidget *parent) : setWindowTitle("MediaInfo"); #endif + translator = new QTranslator(); settings = new QSettings("MediaArea.net", "MediaInfo"); defaultSettings(); applySettings(); @@ -213,7 +214,7 @@ MainWindow::MainWindow(QStringList filesnames, int viewasked, QWidget *parent) : connect(menuItemGroup,SIGNAL(triggered(QAction*)),this,SLOT(actionView_toggled(QAction*))); buttonView = new QToolButton(); - buttonView->setText("view"); + buttonView->setText(tr("view")); buttonView->setIcon(QIcon(":/icon/view.svg")); connect(buttonView, SIGNAL(clicked()), this, SLOT(buttonViewClicked())); ui->toolBar->addWidget(buttonView); @@ -293,7 +294,7 @@ void MainWindow::httpFinished() if (isNewer(wstring2QString(X("NewVersion")),QString(VERSION))) { qDebug() << "New version is available."; qDebug() << "latest is " << wstring2QString(X("NewVersion")).toStdString().c_str(); - ui->menuBar->addAction(Tr("Update to new version"),this,SLOT(updateToNewVersion())); + ui->menuBar->addAction(tr("Update to new version"),this,SLOT(updateToNewVersion())); } else { qDebug() << "No new version available."; qDebug() << "latest is " << wstring2QString(X("NewVersion")).toStdString().c_str(); @@ -321,26 +322,26 @@ void MainWindow::toolBarOptions(QPoint p) { return; #else QMenu menu("toolbar options",ui->toolBar); - QMenu *menuI = new QMenu(Tr("Icon size")); - QMenu *menuT = new QMenu(Tr("Text position")); + QMenu *menuI = new QMenu(tr("Icon size")); + QMenu *menuT = new QMenu(tr("Text position")); menu.addMenu(menuT); - QString textsT[NBNAMES] = {Tr("Icons only"),Tr("Text only"),Tr("Text under icons"),Tr("Text beside icons")}; + QString textsT[NBNAMES] = {tr("Icons only"),tr("Text only"),tr("Text under icons"),tr("Text beside icons")}; QAction* actionsT[NBNAMES+1]; Qt::ToolButtonStyle styles[NBNAMES] = {Qt::ToolButtonIconOnly,Qt::ToolButtonTextOnly,Qt::ToolButtonTextUnderIcon,Qt::ToolButtonTextBesideIcon}; for(int i=0;iaddAction(textsT[i]); } - actionsT[NBNAMES] = menuT->addAction(Tr("Default")); + actionsT[NBNAMES] = menuT->addAction(tr("Default")); menu.addMenu(menuI); - QString textsI[NBSIZES] = {Tr("Small"),Tr("Medium"),Tr("Big"),Tr("Huge")}; + QString textsI[NBSIZES] = {tr("Small"),tr("Medium"),tr("Big"),tr("Huge")}; QAction* actionsI[NBNAMES+1]; QSize sizes[NBSIZES+1] = {QSize(16,16),QSize(22,22),QSize(32,32),QSize(48,48)}; for(int i=0;iaddAction(textsI[i]+"("+QString::number(sizes[i].width())+"x"+QString::number(sizes[i].height())+")"); } - actionsI[NBSIZES] = menuI->addAction(Tr("Default")); + actionsI[NBSIZES] = menuI->addAction(tr("Default")); QAction* a = menu.exec(ui->toolBar->mapToGlobal(p)); if(a) { @@ -409,9 +410,28 @@ QDir MainWindow::getCommonDir(Core*C) { void MainWindow::changeEvent(QEvent *e) { QMainWindow::changeEvent(e); + QFile file; switch (e->type()) { case QEvent::LanguageChange: ui->retranslateUi(this); + // force refresh of text of view button on toolbar + buttonView->setText(tr("View")); + ui->toolBar->setToolButtonStyle(Qt::ToolButtonStyle(Qt::ToolButtonIconOnly)); + ui->toolBar->setToolButtonStyle(Qt::ToolButtonStyle(settings->value("iconStyle",Qt::ToolButtonIconOnly).toInt())); + // update texts of view menu items + for(int v=VIEW_EASY;vmenuView->actions().at(v)->setText(nameView((ViewMode)v)); + } + // set MediaInfoLib language + file.setFileName(":/languages/Plugin/Language/" + settings->value("language", "en").toString() + ".csv"); + if (file.open(QIODevice::ReadOnly | QIODevice::Text)) { + QTextStream in(&file); + QString fileContent = in.readAll(); + C->MI->Option_Static(__T("Language"), fileContent.toStdWString()); + file.close(); + } + // refresh titlebar and MediaInfoLib output + refreshDisplay(); break; default: break; @@ -449,7 +469,7 @@ void MainWindow::openFiles(QStringList fileNames) { void MainWindow::openTimerInit () { - progressDialog=new QProgressDialog(Tr("Opening files..."), Tr("Abort Opening"), 0, 10000, this); + progressDialog=new QProgressDialog(tr("Opening files..."), tr("Abort Opening"), 0, 10000, this); progressDialog->setWindowModality(Qt::WindowModal); progressDialog->setMinimumDuration(0); progressDialog->setWindowTitle("MediaInfo"); @@ -524,10 +544,10 @@ void MainWindow::refreshDisplay() { if(C->Count_Get()<=0) { #if defined(_WIN32) && defined(WINAPI_FAMILY) && WINAPI_FAMILY==WINAPI_FAMILY_APP //UWP Application - viewWidget = new QLabel(Tr("You must at least open 1 file.\nOpen a file or a directory.")); + viewWidget = new QLabel(tr("You must at least open 1 file.\nOpen a file or a directory.")); #else - viewWidget = new QLabel(Tr("You must at least open 1 file.\nOpen a file or a directory, or simply drag n drop files in the window.")); - setWindowTitle(Tr("MediaInfo")); + viewWidget = new QLabel(tr("You must at least open 1 file.\nOpen a file or a directory, or simply drag n drop files in the window.")); + setWindowTitle(tr("MediaInfo")); #endif ((QLabel*)viewWidget)->setAlignment(Qt::AlignCenter); } @@ -714,7 +734,7 @@ void MainWindow::refreshDisplay() { if(C->Count_Get()==1) setWindowTitle("MediaInfo - "+shortName(C,wstring2QString(C->Get(0, Stream_General, 0, __T("CompleteName"))))); else - setWindowTitle(QString("MediaInfo - %1 ").arg((int)C->Count_Get())+Tr("files","window title")); + setWindowTitle(QString("MediaInfo - %1 ").arg((int)C->Count_Get())+tr("files","window title")); #endif } setCentralWidget(viewWidget); @@ -724,8 +744,8 @@ QTreeWidget* MainWindow::showTreeView(bool completeDisplay) { QTreeWidget* treeWidget = new QTreeWidget(); //treeWidget->setHeaderHidden(true); treeWidget->setColumnCount(2); - QStringList headers = QStringList(Tr("key")); - headers.append(Tr("value")); + QStringList headers = QStringList(tr("key")); + headers.append(tr("value")); treeWidget->setHeaderLabels(headers); unsigned fileCount = (unsigned)C->Count_Get(); QDir dir = getCommonDir(C); @@ -890,14 +910,14 @@ void MainWindow::defaultSettings() { if(Sheet::getNbSheets()==0) { Sheet::add("example"); Sheet::setDefault(0); - Sheet::getSheet()->addColumn(Tr("File Name").toStdString().c_str(),300,Stream_General,"CompleteName"); - Sheet::getSheet()->addColumn(Tr("Format").toStdString().c_str(),100,Stream_General,"Format"); - Sheet::getSheet()->addColumn(Tr("Video Codec List").toStdString().c_str(),100,Stream_General,"Video_Codec_List"); - Sheet::getSheet()->addColumn(Tr("Audio Codec List").toStdString().c_str(),100,Stream_General,"Audio_Codec_List"); - Sheet::getSheet()->addColumn(Tr("Text Codec List").toStdString().c_str(),100,Stream_General,"Text_Codec_List"); - Sheet::getSheet()->addColumn(Tr("Video Format").toStdString().c_str(),100,Stream_Video,"Format"); - Sheet::getSheet()->addColumn(Tr("Audio Duration").toStdString().c_str(),100,Stream_Audio,"Duration"); - Sheet::getSheet()->addColumn(Tr("Text Width").toStdString().c_str(),100,Stream_Text,"Width"); + Sheet::getSheet()->addColumn(tr("File Name").toStdString().c_str(),300,Stream_General,"CompleteName"); + Sheet::getSheet()->addColumn(tr("Format").toStdString().c_str(),100,Stream_General,"Format"); + Sheet::getSheet()->addColumn(tr("Video Codec List").toStdString().c_str(),100,Stream_General,"Video_Codec_List"); + Sheet::getSheet()->addColumn(tr("Audio Codec List").toStdString().c_str(),100,Stream_General,"Audio_Codec_List"); + Sheet::getSheet()->addColumn(tr("Text Codec List").toStdString().c_str(),100,Stream_General,"Text_Codec_List"); + Sheet::getSheet()->addColumn(tr("Video Format").toStdString().c_str(),100,Stream_Video,"Format"); + Sheet::getSheet()->addColumn(tr("Audio Duration").toStdString().c_str(),100,Stream_Audio,"Duration"); + Sheet::getSheet()->addColumn(tr("Text Width").toStdString().c_str(),100,Stream_Text,"Width"); } ConfigTreeText::load(settings); if(ConfigTreeText::getNbConfigTreeTexts()==0) { @@ -922,6 +942,10 @@ void MainWindow::applySettings() { ui->toolBar->setToolButtonStyle(Qt::ToolButtonStyle(settings->value("iconStyle",Qt::ToolButtonIconOnly).toInt())); ui->toolBar->setIconSize(settings->value("iconSize",QSize(32,32)).toSize()); C->Menu_Option_Preferences_Option(__T("LegacyStreamDisplay"), settings->value("legacyStreamDisplay",false).toBool() ? __T("1") : __T("0")); + + qApp->removeTranslator(translator); + Q_UNUSED(translator->load(settings->value("language", "en").toString(), ":/languages/Translations")); + qApp->installTranslator(translator); } void MainWindow::dropEvent(QDropEvent *event) @@ -991,7 +1015,7 @@ void MainWindow::on_actionOpen_triggered() fileNames += Path; } #else - fileNames = QFileDialog::getOpenFileNames(this, Tr("Open File(s)"), getCommonDir(C).absolutePath()); + fileNames = QFileDialog::getOpenFileNames(this, tr("Open File(s)"), getCommonDir(C).absolutePath()); #endif openFiles(fileNames); @@ -1038,7 +1062,7 @@ void MainWindow::on_actionOpen_Folder_triggered() dirName = Path; #else - dirName = QFileDialog::getExistingDirectory(this,Tr("Open Folder"), getCommonDir(C).absolutePath()); + dirName = QFileDialog::getExistingDirectory(this,tr("Open Folder"), getCommonDir(C).absolutePath()); #endif openDir(dirName); diff --git a/Source/GUI/Qt/mainwindow.h b/Source/GUI/Qt/mainwindow.h index e05a490a7..25a42b0d9 100644 --- a/Source/GUI/Qt/mainwindow.h +++ b/Source/GUI/Qt/mainwindow.h @@ -21,6 +21,7 @@ #include #include #include +#include #ifdef NEW_VERSION #include #include @@ -67,6 +68,7 @@ class MainWindow : public QMainWindow { QTextBrowser* showCustomView(bool forcePlainText=false); QToolButton* buttonView; QMenu* menuView; + QTranslator* translator; Ui::MainWindow *ui; //Non-GUI Elements diff --git a/Source/GUI/Qt/prefs.cpp b/Source/GUI/Qt/prefs.cpp index 2f34fb844..c91732b18 100644 --- a/Source/GUI/Qt/prefs.cpp +++ b/Source/GUI/Qt/prefs.cpp @@ -5,9 +5,9 @@ */ #include "prefs.h" -#include "translate.h" #include "ui_prefs.h" #include +#include #include "views.h" #include "sheet.h" #include "configtreetext.h" @@ -15,6 +15,7 @@ #include "editsheet.h" #include "editconfigtreetext.h" #include "editcustom.h" +#include "translate.h" Preferences::Preferences(QSettings* settings, Core* C, QWidget *parent) : QDialog(parent), @@ -32,7 +33,7 @@ Preferences::Preferences(QSettings* settings, Core* C, QWidget *parent) : ui->customComboBox->setStyleSheet(style); ui->treeTextComboBox->setStyleSheet(style); #else - setWindowTitle("Preferences"); + setWindowTitle(tr("Preferences")); #endif ui->treeWidget->setColumnHidden(1,true); @@ -42,6 +43,14 @@ Preferences::Preferences(QSettings* settings, Core* C, QWidget *parent) : ui->comboBox_defaultview->addItem(nameView((ViewMode)v),v); } + QDir dir(":/languages/Translations"); + const QStringList fileNames = dir.entryList(QStringList() << "*.qm", QDir::Files); + for (const QString& fileName : fileNames) { + QString languageCode = fileName.left(fileName.lastIndexOf('.')); + ui->comboBox_language->addItem(nameLanguage(languageCode), languageCode); + } + ui->comboBox_language->setCurrentIndex(ui->comboBox_language->findData(settings->value("language", "en").toString())); + ui->showMenu->setChecked(settings->value("showMenu",true).toBool()); ui->showToolbar->setChecked(settings->value("showToolbar",true).toBool()); ui->closeAllBeforeOpen->setChecked(settings->value("closeBeforeOpen",true).toBool()); @@ -119,6 +128,7 @@ void Preferences::saveSettings() { settings->setValue("closeBeforeOpen",ui->closeAllBeforeOpen->isChecked()); settings->setValue("checkForNewVersion",ui->checkForNewVersion->isChecked()); settings->setValue("defaultView",ui->comboBox_defaultview->currentIndex()); + settings->setValue("language",ui->comboBox_language->itemData(ui->comboBox_language->currentIndex()).toString()); settings->setValue("rememberToolBarPosition",ui->rememberToolBarPosition->isChecked()); settings->setValue("rememberGeometry",ui->rememberGeometry->isChecked()); settings->setValue("shellExtension",ui->shellExtension->isChecked()); @@ -169,7 +179,7 @@ void Preferences::on_pushButton_editSheet_clicked() void Preferences::on_pushButton_newSheet_clicked() { Sheet* s = Sheet::add("newsheet"); - s->addColumn(Tr("File Name").toStdString().c_str(),300,Stream_General,"CompleteName"); + s->addColumn(tr("File Name").toStdString().c_str(),300,Stream_General,"CompleteName"); EditSheet es(s, C, this); if(es.exec() == QDialog::Accepted) { es.apply(); diff --git a/Source/GUI/Qt/prefs.ui b/Source/GUI/Qt/prefs.ui index 3fcd9d1b4..ccfb0defd 100644 --- a/Source/GUI/Qt/prefs.ui +++ b/Source/GUI/Qt/prefs.ui @@ -120,17 +120,7 @@ QLayout::SizeConstraint::SetFixedSize - - - - - 0 - 0 - - - - - + 25 @@ -144,20 +134,27 @@ - + Shell InfoTip - + Shell extension + + + + Check for new versions + + + @@ -165,14 +162,17 @@ - - - - Check for new versions + + + + + 0 + 0 + - + Qt::Orientation::Vertical @@ -185,6 +185,16 @@ + + + + Language + + + + + + diff --git a/Source/GUI/Qt/sheetview.cpp b/Source/GUI/Qt/sheetview.cpp index dfa23fd31..6f37e113b 100644 --- a/Source/GUI/Qt/sheetview.cpp +++ b/Source/GUI/Qt/sheetview.cpp @@ -5,7 +5,6 @@ */ #include "sheetview.h" -#include "translate.h" #include "ui_sheetview.h" #include "sheet.h" #include "mainwindow.h" @@ -96,7 +95,7 @@ void SheetView::changeEvent(QEvent *e) void SheetView::on_tableWidget_itemSelectionChanged() { ui->comboBox->clear(); - ui->comboBox->addItem(Tr("Summary"),QPoint(-1,-1)); + ui->comboBox->addItem(tr("Summary"),QPoint(-1,-1)); if(ui->tableWidget->selectedItems().isEmpty()) return; int filePos = ui->tableWidget->selectedItems().at(0)->data(Qt::UserRole).toInt(); diff --git a/Source/GUI/Qt/translate.cpp b/Source/GUI/Qt/translate.cpp index 0e1ab32ab..e819f4925 100644 --- a/Source/GUI/Qt/translate.cpp +++ b/Source/GUI/Qt/translate.cpp @@ -5,23 +5,55 @@ */ #include "translate.h" -#include +#include -#define UNREFERENCED_PARAMETER(P) (void)(P) +QString nameLanguage(const QString& code) { + // Create a QHash to store language codes and their corresponding language names + QHash languageMap = { + {"ar", "العربية (ar)"}, + {"be", "Беларуская (be)"}, + {"bg", "Български (bg)"}, + {"ca", "Català (ca)"}, + {"cs", "Czech (cs)"}, + {"da", "Dansk (da)"}, + {"de", "Deutsch (de)"}, + {"en", "English (en)"}, + {"es", "Español (es)"}, + {"eu", "Euskara (eu)"}, + {"fa", "Persian (فارسی) (fa)"}, + {"fr", "Français (fr)"}, + {"gl", "Galego (gl)"}, + {"gr", "Ελληνικά (gr)"}, + {"hu", "magyar (hu)"}, + {"id", "Bahasa Indonesia (id)"}, + {"it", "Italiano (it)"}, + {"ja", "日本語 (ja)"}, + {"ko", "한국어 (ko)"}, + {"lt", "Lithuanian (lt)"}, + {"nl", "Nederlands (nl)"}, + {"pl", "Polski (pl)"}, + {"pt", "Português (Portugal) (pt)"}, + {"pt-BR", "Português (Brasil) (pt-BR)"}, + {"ro", "Romana (ro)"}, + {"ru", "Русский (ru)"}, + {"sk", "Slovak (sk)"}, + {"sq", "Shqip (sq)"}, + {"sv", "Svenska (sv)"}, + {"th", "ไทย (th)"}, + {"tr", "Türkçe (tr)"}, + {"uk", "Українська (uk)"}, + {"zh-CN", "简体中文 (zh-CN)"}, + {"zh-HK", "香港正體字 (zh-HK)"}, + {"zh-TW", "華語 (台灣) (zh-TW)"}, + {"hr", "Hrvatski (hr)"}, + {"hy", "Հայերեն (hy)"}, + {"ka", "ქართული (ka)"} + }; -QString Tr(const char* string, const char * disambiguation, int n) { - UNREFERENCED_PARAMETER(disambiguation); - UNREFERENCED_PARAMETER(n); - - QStringList text = QString(string).split(" "); - /* TODO - for(int i=0;i -#include -QString Tr(const char* string, const char * disambiguation = 0, int n = -1); +#include + +QString nameLanguage(const QString& code); #endif // TRANSLATE_H diff --git a/Source/GUI/Qt/views.cpp b/Source/GUI/Qt/views.cpp index a71e1a951..ae0cd2a19 100644 --- a/Source/GUI/Qt/views.cpp +++ b/Source/GUI/Qt/views.cpp @@ -5,59 +5,59 @@ */ #include "views.h" -#include "translate.h" +#include QString nameView(ViewMode v) { switch(v) { - case VIEW_EASY: return Tr("Easy"); + case VIEW_EASY: return QObject::tr("Easy"); break; - case VIEW_SHEET: return Tr("Sheet"); + case VIEW_SHEET: return QObject::tr("Sheet"); break; - case VIEW_TREE: return Tr("Tree"); + case VIEW_TREE: return QObject::tr("Tree"); break; - case VIEW_TEXT: return Tr("Text"); + case VIEW_TEXT: return QObject::tr("Text"); break; - case VIEW_HTML: return Tr("HTML"); + case VIEW_HTML: return QObject::tr("HTML"); break; - case VIEW_XML: return Tr("XML"); + case VIEW_XML: return QObject::tr("XML"); break; - case VIEW_JSON: return Tr("JSON"); + case VIEW_JSON: return QObject::tr("JSON"); break; - case VIEW_GRAPH: return Tr("Graph"); + case VIEW_GRAPH: return QObject::tr("Graph"); break; - case VIEW_PBCORE: return Tr("PBCore 1.2"); + case VIEW_PBCORE: return QObject::tr("PBCore 1.2"); break; - case VIEW_PBCORE2: return Tr("PBCore 2.0"); + case VIEW_PBCORE2: return QObject::tr("PBCore 2.0"); break; - case VIEW_MPEG7_Strict: return Tr("MPEG-7 (strict)"); + case VIEW_MPEG7_Strict: return QObject::tr("MPEG-7 (strict)"); break; - case VIEW_MPEG7_Relaxed: return Tr("MPEG-7 (relaxed)"); + case VIEW_MPEG7_Relaxed: return QObject::tr("MPEG-7 (relaxed)"); break; - case VIEW_MPEG7_Extended: return Tr("MPEG-7 (extended)"); + case VIEW_MPEG7_Extended: return QObject::tr("MPEG-7 (extended)"); break; - case VIEW_EBUCORE_1_5: return Tr("EBUCore 1.5"); + case VIEW_EBUCORE_1_5: return QObject::tr("EBUCore 1.5"); break; - case VIEW_EBUCORE_1_6: return Tr("EBUCore 1.6"); + case VIEW_EBUCORE_1_6: return QObject::tr("EBUCore 1.6"); break; - case VIEW_EBUCORE_1_8_ps: return Tr("EBUCore 1.8 parameter then segment"); + case VIEW_EBUCORE_1_8_ps: return QObject::tr("EBUCore 1.8 parameter then segment"); break; - case VIEW_EBUCORE_1_8_sp: return Tr("EBUCore 1.8 segment then parameter"); + case VIEW_EBUCORE_1_8_sp: return QObject::tr("EBUCore 1.8 segment then parameter"); break; - case VIEW_EBUCORE_1_8_ps_JSON: return Tr("EBUCore 1.8 parameter then segment (JSON output)"); + case VIEW_EBUCORE_1_8_ps_JSON: return QObject::tr("EBUCore 1.8 parameter then segment (JSON output)"); break; - case VIEW_EBUCORE_1_8_sp_JSON: return Tr("EBUCore 1.8 segment then parameter (JSON output)"); + case VIEW_EBUCORE_1_8_sp_JSON: return QObject::tr("EBUCore 1.8 segment then parameter (JSON output)"); break; - case VIEW_FIMS_1_1: return Tr("FIMS 1.1"); + case VIEW_FIMS_1_1: return QObject::tr("FIMS 1.1"); break; - case VIEW_FIMS_1_2: return Tr("FIMS 1.2"); + case VIEW_FIMS_1_2: return QObject::tr("FIMS 1.2"); break; - case VIEW_FIMS_1_3: return Tr("FIMS 1.3"); + case VIEW_FIMS_1_3: return QObject::tr("FIMS 1.3"); break; - case VIEW_NISO_Z39_87: return Tr("NISO Z39.87"); + case VIEW_NISO_Z39_87: return QObject::tr("NISO Z39.87"); break; - case VIEW_CUSTOM: return Tr("Custom"); + case VIEW_CUSTOM: return QObject::tr("Custom"); break; - default: return Tr("Unknown view"); + default: return QObject::tr("Unknown view"); break; } } diff --git a/Source/Resource/Resources.qrc b/Source/Resource/Resources.qrc index 0a824bc91..55373de96 100644 --- a/Source/Resource/Resources.qrc +++ b/Source/Resource/Resources.qrc @@ -11,4 +11,82 @@ Image/Menu/K20/View2.svg Image/Menu/K20/Help_About.svg + + Plugin/Language/ar.csv + Plugin/Language/be.csv + Plugin/Language/bg.csv + Plugin/Language/ca.csv + Plugin/Language/cs.csv + Plugin/Language/da.csv + Plugin/Language/de.csv + Plugin/Language/en.csv + Plugin/Language/es.csv + Plugin/Language/eu.csv + Plugin/Language/fa.csv + Plugin/Language/fr.csv + Plugin/Language/gl.csv + Plugin/Language/gr.csv + Plugin/Language/hr.csv + Plugin/Language/hu.csv + Plugin/Language/hy.csv + Plugin/Language/id.csv + Plugin/Language/it.csv + Plugin/Language/ja.csv + Plugin/Language/ka.csv + Plugin/Language/ko.csv + Plugin/Language/lt.csv + Plugin/Language/nl.csv + Plugin/Language/pl.csv + Plugin/Language/pt.csv + Plugin/Language/pt-BR.csv + Plugin/Language/ro.csv + Plugin/Language/ru.csv + Plugin/Language/sk.csv + Plugin/Language/sq.csv + Plugin/Language/sv.csv + Plugin/Language/th.csv + Plugin/Language/tr.csv + Plugin/Language/uk.csv + Plugin/Language/zh-CN.csv + Plugin/Language/zh-HK.csv + Plugin/Language/zh-TW.csv + Translations/ar.qm + Translations/be.qm + Translations/bg.qm + Translations/ca.qm + Translations/cs.qm + Translations/da.qm + Translations/de.qm + Translations/en.qm + Translations/es.qm + Translations/eu.qm + Translations/fa.qm + Translations/fr.qm + Translations/gl.qm + Translations/gr.qm + Translations/hr.qm + Translations/hu.qm + Translations/hy.qm + Translations/id.qm + Translations/it.qm + Translations/ja.qm + Translations/ka.qm + Translations/ko.qm + Translations/lt.qm + Translations/nl.qm + Translations/pl.qm + Translations/pt.qm + Translations/pt-BR.qm + Translations/ro.qm + Translations/ru.qm + Translations/sk.qm + Translations/sq.qm + Translations/sv.qm + Translations/th.qm + Translations/tr.qm + Translations/uk.qm + Translations/zh-CN.qm + Translations/zh-HK.qm + Translations/zh-TW.qm + diff --git a/Source/Resource/Translations/ar.qm b/Source/Resource/Translations/ar.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/ar.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/be.qm b/Source/Resource/Translations/be.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/be.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/bg.qm b/Source/Resource/Translations/bg.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/bg.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/ca.qm b/Source/Resource/Translations/ca.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/ca.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/cs.qm b/Source/Resource/Translations/cs.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/cs.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/da.qm b/Source/Resource/Translations/da.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/da.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/de.qm b/Source/Resource/Translations/de.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/de.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/en.qm b/Source/Resource/Translations/en.qm new file mode 100644 index 0000000000000000000000000000000000000000..a5fdf6494e2b909dbcf4b1a3364ded0663f0419c GIT binary patch literal 13603 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 q(+ + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +MediaInfo provides easy access to technical and tag information about video and audio files. +Except the Mac App Store graphical user interface, it is open-source software, which means that it is free of charge to the end user and developers have freedom to study, to improve and to redistribute the program (BSD license) + + + + Go to website + Go to website + + + + Check for new version + Check for new version + + + + Donate + Donate + + + + Write mail to author + Write mail to author + + + + Translator : Zen + Translator : Zen + + + + OK + OK + + + + About + About + + + + EditCustom + + + Form + Form + + + + name + + + + + index + + + + + Insert : + Insert : + + + + Insert + Insert + + + + EditSheet + + + Dialog + Dialog + + + + Name : + Name : + + + + 0 + + + + + + + + + + + Adapt columns to content + Adapt columns to content + + + + CompleteName + + + + + Export + + + Choose your desired export format + Choose your desired export format + + + + Format: + Format: + + + + Profile: + Profile: + + + + Advanced mode + Advanced mode + + + + Append to the existing file + Append to the existing file + + + + + Text + Text + + + + + Graph + Graph + + + + HTML + HTML + + + + XML + XML + + + + JSON + JSON + + + + PBCore + PBCore + + + + PBCore 2 + PBCore 2 + + + + MPEG-7 (strict) + MPEG-7 (strict) + + + + MPEG-7 (relaxed) + MPEG-7 (relaxed) + + + + MPEG-7 (extended) + MPEG-7 (extended) + + + + EBUCore 1.5 + EBUCore 1.5 + + + + EBUCore 1.6 + EBUCore 1.6 + + + + EBUCore 1.8 parameter then segment + EBUCore 1.8 parameter then segment + + + + EBUCore 1.8 segment then parameter + EBUCore 1.8 segment then parameter + + + + EBUCore 1.8 parameter then segment (JSON output) + EBUCore 1.8 parameter then segment (JSON output) + + + + EBUCore 1.8 segment then parameter (JSON output) + EBUCore 1.8 segment then parameter (JSON output) + + + + FIMS 1.1 + FIMS 1.1 + + + + FIMS 1.2 + FIMS 1.2 + + + + FIMS 1.3 + FIMS 1.3 + + + + NISO Z39.87 + FIMS 1.3 + + + + Save File + Save File + + + + %1 files (*.%2) + %1 files (*.%2) + + + + MainWindow + + + + View + View + + + + Help + Help + + + + Options + Options + + + + File + File + + + + toolBar + Toolbar + + + + + Open File(s) + Open File(s) + + + + Ctrl+O + + + + + About + About + + + + F1 + + + + + + Open Folder + Open Folder + + + + Quit + Quit + + + + Ctrl+Q + + + + + Known formats + Known formats + + + + Known codecs + Known codecs + + + + Known parameters + Known parameters + + + + English + + + + + Français + + + + + Preferences + Preferences + + + + Ctrl+P + + + + + Export + Export + + + + Export in a customized format + Export in a customized format + + + + Advanced Mode + Advanced mode + + + + Full parse + Full parse + + + + reset columns sizes + Reset columns sizes + + + + adapt columns to content + Adapt columns to content + + + + Close All + Close All + + + + Ctrl+Shift+W + + + + Trace + Trace + + + + view + + + + + Update to new version + Update to new version + + + + Icon size + Icon size + + + + Text position + Text position + + + + Icons only + Icons only + + + + Text only + Text only + + + + Text under icons + Text under icons + + + + Text beside icons + Text beside icons + + + + + Default + Default + + + + Small + Small + + + + Medium + Medium + + + + Big + Big + + + + Huge + Huge + + + + Opening files... + Opening files... + + + + Abort Opening + Abort Opening + + + + You must at least open 1 file. +Open a file or a directory. + You must at least open 1 file. +Open a file or a directory. + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + You must at least open 1 file. +Open a file or a directory, or simply drag and drop files in the window. + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + File Name + + + + Format + Format + + + + Video Codec List + Video Codec List + + + + Audio Codec List + Audio Codec List + + + + Text Codec List + Text Codec List + + + + Video Format + Video Format + + + + Audio Duration + Audio Duration + + + + Text Width + Text Width + + + + Preferences + + + name + + + + + widget index + + + + + Setup + Setup + + + + 0 + + + + + Advanced + Advanced + + + + 1 + + + + + Customize + Customize + + + + Sheet + Sheet + + + + 2 + + + + + Tree & Text + Tree & Text + + + + 3 + + + + + Custom + Custom + + + + 4 + + + + + Graph + Graph + + + + 5 + + + + + Open each item in a separate instance + Open each item in a separate instance + + + + Shell InfoTip + + + + + Shell extension + Shell extension + + + + Check for new versions + Check for new versions + + + + Default View + Default View + + + + Language + Language + + + + Remember its position + Remember its position + + + + Remember Window Geometry + Remember Window Geometry + + + + Add creation date to text output + Add creation date to text output + + + + Close all before open + Close all before open + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + Show menu + Show menu + + + + Show toolbar + Show toolbar + + + + When content is detected + When content is detected + + + + When content or a command is detected + When content or a command is detected + + + + Even when no content or command is detected + Even when no content or command is detected + + + + Handling of 608/708 streams: + Handling of 608/708 streams: + + + + Add version to text output + Add version to text output + + + + Enable FFmpeg plugin + Enable FFmpeg plugin + + + + Choose your desired custom sheet + Choose your desired custom sheet + + + + + + Delete + Delete + + + + + + Edit + Edit + + + + + + New + New + + + + Select your desired configuration + Select your desired configuration + + + + Choose your desired custom text + Choose your desired custom text + + + + ADM: Show ChannelFormats + ADM: Show ChannelFormats + + + + ADM: Show TrackUIDs + ADM: Show TrackUIDs + + + + Preferences + Preferences + + + + File Name + File Name + + + + QObject + + + Easy + Easy + + + + Sheet + Sheet + + + + Tree + Tree + + + + Text + Text + + + + HTML + HTML + + + + XML + XML + + + + JSON + JSON + + + + Graph + Graph + + + + PBCore 1.2 + PBCore 2 + + + + PBCore 2.0 + PBCore 2 + + + + MPEG-7 (strict) + MPEG-7 (strict) + + + + MPEG-7 (relaxed) + MPEG-7 (relaxed) + + + + MPEG-7 (extended) + MPEG-7 (extended) + + + + EBUCore 1.5 + EBUCore 1.5 + + + + EBUCore 1.6 + EBUCore 1.6 + + + + EBUCore 1.8 parameter then segment + EBUCore 1.8 parameter then segment + + + + EBUCore 1.8 segment then parameter + EBUCore 1.8 segment then parameter + + + + EBUCore 1.8 parameter then segment (JSON output) + EBUCore 1.8 parameter then segment (JSON output) + + + + EBUCore 1.8 segment then parameter (JSON output) + EBUCore 1.8 segment then parameter (JSON output) + + + + FIMS 1.1 + FIMS 1.1 + + + + FIMS 1.2 + FIMS 1.2 + + + + FIMS 1.3 + FIMS 1.3 + + + + NISO Z39.87 + NISO Z39.87 + + + + Custom + Custom + + + + Unknown view + Unknown view + + + + SheetView + + + Frame + Frame + + + + filename + + + + + Web + Web + + + + no selection + + + + + Summary + Summary + + + + editConfigTreeText + + + Dialog + Dialog + + + + Page 1 + Page 1 + + + + Page 2 + Page 2 + + + diff --git a/Source/Resource/Translations/es.qm b/Source/Resource/Translations/es.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/es.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/eu.qm b/Source/Resource/Translations/eu.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/eu.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/fa.qm b/Source/Resource/Translations/fa.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/fa.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/fr.qm b/Source/Resource/Translations/fr.qm new file mode 100644 index 0000000000000000000000000000000000000000..5f99165c4bfe4734d08db448a02828f11f7cba14 GIT binary patch literal 6043 zcmcIoTWlOx8U7uw*Y?pD%Lz;($K0xsSt|PDguRusufT~$^%HvLo0ZqE=UCg5-$k8|D2uK z+oVmA&}w%s=ltJ)zns1AT4CSo?|uKN-+X-N$FXKero0Rz1G0+X_>%ix! zLyDUV0UhkiK?)ofa>y1OK|d-gTe8 z4z$s^U*90=|0bRLGxqo2)YpN(wtdh40``Am$4}q>2=w^ej<*j!4tbZ`e>CwFP~UC8 z@!Ag{-{r)))qfJ*^?c&lnOBI6TZtF0JVdlx>g%4T6EDp@hy7O*Z)`jXJ*Sgr@%c+VjgS^xJj4 zw{z&*xc;s8#=}2@Tt|9u{k#G@zS{fND=g1BeeGZD>%X{6)b~W6cmIpfGu3zfW*^bc zXLfz|O~}#xCkw{@E+}Y_ZjhiddF0~PB_B@(l3iG$B)%P)RkspAhw5D$6D`sTZG*(3 zBEAxL0)!TRE9Br=;Mc|d2JUTq_zmBCYL|;ufu{?g@F}Qcws&e>=Ff|w>j_70iVf-c zmg_Vz-$yfKg49#6%#bApXe4uT+I7r8Hqo7c(9F2ox@h zp2brEbSCkRBDoQ#owKe8T(K!veXE&adki7KHfWe8$e<}@@GS^pf&IE-H-fjL*psGl zeA0AC-KFVBgAf^|x=ASrqs7cohR)CeP>oh$K?{-L4G;TSdF5ajLf}cMgOw7L3-HXo z;T1MR9#S#I!=RPwEt{R!+0**1P~O!PY(~DzE0jEFn4^g=^W4B&Ugd~kWF0sBCIfsn zuZw%F4?C)W2y>yMLB|m(j8+EDHul(b5bL39YVQEk-lPPqlYYo^h z+LATvY~zjg0-XHsqLI1)ff`5k<>Ba;l!1gcqi1 zG)$v5Co2n6H9TfVjqIu8vlI1iSEi=*+jRZg>6K|=It7u7mJio2&j%Gp`XYNcGisc! zSo!lTf^kNgwo=A8YdHmX(^n7mbZ4_GW8!QUR9PzzDcxcq&dkru)bGix%wtbxWz@*I z6{m2>bzlgsw=YIAQ=b|W)62Ork;zQq=YD(vkV>USn+jusmgr>Y3)-=CvT0q=GCXR+ zyA}Aa7MDj62M@AWBih}|p6U3u8K8h46%Weh(tUt_1q6-`oqvB&k$Di<9Q!KXBdme5 z9!jbx!J}Ma%}TKDdQFn`)2x!LF6Sfqj#mgU0nwlTgen#>m z+w&Daa7)%BP+F%%oD6*!CF;6SBz9s31tN}so0Vq01=idExY?B;noaLCgn=f&Zj+T}Q&`_-txNH}A)R3_;VHE!o0x zFgrC&wT8su9H3LMJXeE~Qke7jc4)gb8f;*eWPn*N4lso*<3Uju1#VQ5MgYlUP~)he z-qti;DoaPOpGJID(3*qtKn$=R6n(&}=_3N`(O|A!kgCKqWAy=xr;qA<6w!4qmAS>l zDmDm9dFY!(eA!C6_tjk1bIOxN=}F{eEPWrHhGBSKYfPyG+K8$z%|iAgq>7Qv)Jz)* znpm;qW{mmU?#58esm?y+5aTK05!~~;np3zw3wYdxJUTxoTHM2vTIfoR5$14RhEbFB*2rPx$sKq|&V^sWDkhuGGk7aFY+T3>rF&OFu=k}Uh zgRy6IrDzM!{iubpy}PdeC8t!!j+Oa#^uUa)-mU3j>{y7A*6Il5`0US#zy~NUH}x}5 z@3btMI5UW_cDAT>XX9rJSualNTy@sKuGas%7EEWYVy?xDzZ%t6owDk=? literal 0 HcmV?d00001 diff --git a/Source/Resource/Translations/fr.ts b/Source/Resource/Translations/fr.ts new file mode 100644 index 000000000..909bd4c58 --- /dev/null +++ b/Source/Resource/Translations/fr.ts @@ -0,0 +1,960 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +MediaInfo fournit des informations techniques ainsi que les tags concernant vos fichiers Audio et Vidéo. +Excepté l'interface graphique de l'App Store Mac, c'est un logiciel libre, ce qui signifie qu'il est gratuit pour l'utilisateur final et que les développeurs ont la liberté de l'étudier, de l'améliorer et de le redistribuer (licence BSD) + + + + Go to website + Visiter la page Internet de MediaInfo + + + + Check for new version + Vérifier si une nouvelle version existe + + + + Donate + Faire un don + + + + Write mail to author + Écrire à l'auteur + + + + Translator : Zen + Traducteur : Zen + + + + OK + OK + + + + About + À propos de + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + Texte + + + + + Graph + Graphique + + + + HTML + HTML + + + + XML + XML + + + + JSON + JSON + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + Affichage + + + + Help + Aide + + + + Options + Options + + + + File + Fichier + + + + toolBar + Barre d'outils + + + + + Open File(s) + Ouvrir le(s) fichier(s) + + + + Ctrl+O + + + + + About + À propos de + + + + F1 + + + + + + Open Folder + Ouvrir le dossier + + + + Quit + Quitter + + + + Ctrl+Q + + + + + Known formats + Formats connus + + + + Known codecs + Codecs connus + + + + Known parameters + Paramètres connus + + + + English + + + + + Français + + + + + Preferences + Préférences + + + + Ctrl+P + + + + + Export + Exporter + + + + Export in a customized format + Exporter dans un format personnalisé + + + + Advanced Mode + Mode avancé + + + + Full parse + Analyse complète + + + + reset columns sizes + Réinitialiser la taille des colonnes + + + + adapt columns to content + Adapter les colonnes au contenu + + + + Close All + Fermer tout + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + Vous devez ouvrir au moins 1 fichier. +Ouvrir un fichier ou un répertoire. + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + Vous devez ouvrir au moins 1 fichier. +Ouvrez un fichier ou un répertoire, ou faites simplement glisser et déposez les fichiers dans la fenêtre. + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + Configuration + + + + 0 + + + + + Advanced + Avancé + + + + 1 + + + + + Customize + Personnaliser + + + + Sheet + Tableau + + + + 2 + + + + + Tree & Text + Arbre & Texte + + + + 3 + + + + + Custom + Personnalisée + + + + 4 + + + + + Graph + Graphique + + + + 5 + + + + + Open each item in a separate instance + Ouvrir chaque élément dans une instance distincte + + + + Shell InfoTip + + + + + Shell extension + Extension du Shell + + + + Check for new versions + Vérifiez les nouvelles versions + + + + Default View + Affichage par défaut + + + + Language + Langue + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + Préférences + + + + File Name + + + + + QObject + + + Easy + Facile + + + + Sheet + Tableau + + + + Tree + Arbre + + + + Text + Texte + + + + HTML + HTML + + + + XML + XML + + + + JSON + JSON + + + + Graph + Graphique + + + + PBCore 1.2 + PBCore 2 + + + + PBCore 2.0 + PBCore 2 + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + Personnalisée + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/gl.qm b/Source/Resource/Translations/gl.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/gl.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/gr.qm b/Source/Resource/Translations/gr.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/gr.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/hr.qm b/Source/Resource/Translations/hr.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/hr.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/hu.qm b/Source/Resource/Translations/hu.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/hu.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/hy.qm b/Source/Resource/Translations/hy.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/hy.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/id.qm b/Source/Resource/Translations/id.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/id.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/it.qm b/Source/Resource/Translations/it.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/it.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/ja.qm b/Source/Resource/Translations/ja.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/ja.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/ka.qm b/Source/Resource/Translations/ka.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/ka.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/ko.qm b/Source/Resource/Translations/ko.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/ko.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/lt.qm b/Source/Resource/Translations/lt.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/lt.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/nl.qm b/Source/Resource/Translations/nl.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/nl.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/pl.qm b/Source/Resource/Translations/pl.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/pl.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/pt-BR.qm b/Source/Resource/Translations/pt-BR.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/pt-BR.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/pt.qm b/Source/Resource/Translations/pt.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/pt.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/ro.qm b/Source/Resource/Translations/ro.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/ro.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/ru.qm b/Source/Resource/Translations/ru.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/ru.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/sk.qm b/Source/Resource/Translations/sk.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/sk.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/sq.qm b/Source/Resource/Translations/sq.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/sq.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/sv.qm b/Source/Resource/Translations/sv.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/sv.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/th.qm b/Source/Resource/Translations/th.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/th.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/tr.qm b/Source/Resource/Translations/tr.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/tr.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/uk.qm b/Source/Resource/Translations/uk.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/uk.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/zh-CN.qm b/Source/Resource/Translations/zh-CN.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/zh-CN.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/zh-HK.qm b/Source/Resource/Translations/zh-HK.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/zh-HK.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + diff --git a/Source/Resource/Translations/zh-TW.qm b/Source/Resource/Translations/zh-TW.qm new file mode 100644 index 000000000..be651eede --- /dev/null +++ b/Source/Resource/Translations/zh-TW.qm @@ -0,0 +1 @@ + + + + + About + + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + +Supply very detailled information +about a multimedia file: +Matroska, OGG (including OGM) +MPEG1 (including VCD) +MPEG2 (including DVD and SVCD) +MPEG4 (including Itunes M4A) +Quicktime +RealMedia +WindowsMedia (including WMV, WMA) +Microsoft RIFF (including AVI, WAV) +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + + + + + Go to website + + + + + Check for new version + + + + + Donate + + + + + Write mail to author + + + + + Translator : Zen + + + + + OK + + + + + About + + + + + EditCustom + + + Form + + + + + name + + + + + index + + + + + Insert : + + + + + Insert + + + + + EditSheet + + + Dialog + + + + + Name : + + + + + 0 + + + + + + + + + + + Adapt columns to content + + + + + CompleteName + + + + + Export + + + Choose your desired export format + + + + + Format: + + + + + Profile: + + + + + Advanced mode + + + + + Append to the existing file + + + + + + Text + + + + + + Graph + + + + + HTML + + + + + XML + + + + + JSON + + + + + PBCore + + + + + PBCore 2 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Save File + + + + + %1 files (*.%2) + + + + + MainWindow + + + + View + + + + + Help + + + + + Options + + + + + File + + + + + toolBar + + + + + + Open File(s) + + + + + Ctrl+O + + + + + About + + + + + F1 + + + + + + Open Folder + + + + + Quit + + + + + Ctrl+Q + + + + + Known formats + + + + + Known codecs + + + + + Known parameters + + + + + English + + + + + Français + + + + + Preferences + + + + + Ctrl+P + + + + + Export + + + + + Export in a customized format + + + + + Advanced Mode + + + + + Full parse + + + + + reset columns sizes + + + + + adapt columns to content + + + + + Close All + + + + + Ctrl+Shift+W + + + + + view + + + + + Update to new version + + + + + Icon size + + + + + Text position + + + + + Icons only + + + + + Text only + + + + + Text under icons + + + + + Text beside icons + + + + + + Default + + + + + Small + + + + + Medium + + + + + Big + + + + + Huge + + + + + Opening files... + + + + + Abort Opening + + + + + You must at least open 1 file. +Open a file or a directory. + + + + + You must at least open 1 file. +Open a file or a directory, or simply drag n drop files in the window. + + + + + MediaInfo + + + + + files + window title + + + + + key + + + + + value + + + + + File Name + + + + + Format + + + + + Video Codec List + + + + + Audio Codec List + + + + + Text Codec List + + + + + Video Format + + + + + Audio Duration + + + + + Text Width + + + + + Preferences + + + name + + + + + widget index + + + + + Setup + + + + + 0 + + + + + Advanced + + + + + 1 + + + + + Customize + + + + + Sheet + + + + + 2 + + + + + Tree & Text + + + + + 3 + + + + + Custom + + + + + 4 + + + + + Graph + + + + + 5 + + + + + Open each item in a separate instance + + + + + Shell InfoTip + + + + + Shell extension + + + + + Check for new versions + + + + + Default View + + + + + Language + + + + + Remember its position + + + + + Remember Window Geometry + + + + + Add creation date to text output + + + + + Close all before open + + + + + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + + + + + Show menu + + + + + Show toolbar + + + + + When content is detected + + + + + When content or a command is detected + + + + + Even when no content or command is detected + + + + + Handling of 608/708 streams: + + + + + Add version to text output + + + + + Enable FFmpeg plugin + + + + + Choose your desired custom sheet + + + + + + + Delete + + + + + + + Edit + + + + + + + New + + + + + Select your desired configuration + + + + + Choose your desired custom text + + + + + ADM: Show ChannelFormats + + + + + ADM: Show TrackUIDs + + + + + Preferences + + + + + File Name + + + + + QObject + + + Easy + + + + + Sheet + + + + + Tree + + + + + Text + + + + + HTML + + + + + XML + + + + + JSON + + + + + Graph + + + + + PBCore 1.2 + + + + + PBCore 2.0 + + + + + MPEG-7 (strict) + + + + + MPEG-7 (relaxed) + + + + + MPEG-7 (extended) + + + + + EBUCore 1.5 + + + + + EBUCore 1.6 + + + + + EBUCore 1.8 parameter then segment + + + + + EBUCore 1.8 segment then parameter + + + + + EBUCore 1.8 parameter then segment (JSON output) + + + + + EBUCore 1.8 segment then parameter (JSON output) + + + + + FIMS 1.1 + + + + + FIMS 1.2 + + + + + FIMS 1.3 + + + + + NISO Z39.87 + + + + + Custom + + + + + Unknown view + + + + + SheetView + + + Frame + + + + + filename + + + + + Web + + + + + no selection + + + + + Summary + + + + + editConfigTreeText + + + Dialog + + + + + Page 1 + + + + + Page 2 + + + + From 4ab95646e3266498905112b7b87cdd338f833be5 Mon Sep 17 00:00:00 2001 From: cjee21 <77721854+cjee21@users.noreply.github.com> Date: Sun, 16 Feb 2025 14:12:56 +0800 Subject: [PATCH 2/4] Update MediaInfo-Qt_Checks.yml --- .github/workflows/MediaInfo-Qt_Checks.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/MediaInfo-Qt_Checks.yml b/.github/workflows/MediaInfo-Qt_Checks.yml index eef1ead9c..dc9099e9f 100644 --- a/.github/workflows/MediaInfo-Qt_Checks.yml +++ b/.github/workflows/MediaInfo-Qt_Checks.yml @@ -5,10 +5,13 @@ on: paths: - 'Project/QMake/GUI/**' - 'Source/GUI/Qt/**' + - 'Source/Resource/**' + pull_request: paths: - 'Project/QMake/GUI/**' - 'Source/GUI/Qt/**' + - 'Source/Resource/**' jobs: From 9006948e389e78a2a31dab91082f7863f93c7bbf Mon Sep 17 00:00:00 2001 From: cjee21 <77721854+cjee21@users.noreply.github.com> Date: Sun, 16 Feb 2025 16:37:26 +0800 Subject: [PATCH 3/4] Qt GUI: Add monospaced font customization --- Source/GUI/Qt/mainwindow.cpp | 16 ++- Source/GUI/Qt/prefs.cpp | 19 +++ Source/GUI/Qt/prefs.ui | 123 +++++++++++++---- Source/GUI/Qt/sheetview.cpp | 12 +- Source/GUI/Qt/sheetview.h | 2 +- Source/Resource/Translations/ar.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/be.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/bg.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/ca.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/cs.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/da.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/de.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/en.qm | Bin 13603 -> 13788 bytes Source/Resource/Translations/en.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/es.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/eu.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/fa.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/fr.qm | Bin 6043 -> 6274 bytes Source/Resource/Translations/fr.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/gl.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/gr.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/hr.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/hu.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/hy.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/id.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/it.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/ja.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/ka.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/ko.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/lt.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/nl.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/pl.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/pt-BR.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/pt.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/ro.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/ru.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/sk.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/sq.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/sv.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/th.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/tr.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/uk.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/zh-CN.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/zh-HK.ts | 191 +++++++++++++++++--------- Source/Resource/Translations/zh-TW.ts | 191 +++++++++++++++++--------- 45 files changed, 4812 insertions(+), 2618 deletions(-) diff --git a/Source/GUI/Qt/mainwindow.cpp b/Source/GUI/Qt/mainwindow.cpp index 2b98277f3..ad94dd457 100644 --- a/Source/GUI/Qt/mainwindow.cpp +++ b/Source/GUI/Qt/mainwindow.cpp @@ -34,6 +34,7 @@ #include #include #include +#include /* #include #include @@ -517,9 +518,16 @@ void MainWindow::openDir(QString dirName) { } void MainWindow::refreshDisplay() { - QStringList fonts = { "Cascadia Mono", "Mono" }; - QFont font(fonts); - font.setStyleHint(QFont::TypeWriter); + QFontDatabase fontDatabase; + QFont font; + QFont setMonoFont; setMonoFont.fromString(settings->value("monoFont", "").toString()); + if (!settings->value("monoFont", "").toString().isEmpty() && fontDatabase.families().contains(setMonoFont.family())) { + font = setMonoFont; + } else { + QStringList preferredMonoFonts = { "Cascadia Mono", "Mono" }; + font.setFamilies(preferredMonoFonts); + font.setStyleHint(QFont::TypeWriter); + } ui->actionAdapt_columns_to_content->setVisible(false); ui->actionReset_field_sizes->setVisible(false); @@ -717,7 +725,7 @@ void MainWindow::refreshDisplay() { break; case VIEW_SHEET: C->Menu_View_Sheet(); - viewWidget = new SheetView(C,this); + viewWidget = new SheetView(C,this,&font); ui->actionReset_field_sizes->setVisible(true); if(!Sheet::getSheet()->getAdaptColumns()) ui->actionAdapt_columns_to_content->setVisible(true); diff --git a/Source/GUI/Qt/prefs.cpp b/Source/GUI/Qt/prefs.cpp index c91732b18..cf120f22f 100644 --- a/Source/GUI/Qt/prefs.cpp +++ b/Source/GUI/Qt/prefs.cpp @@ -51,6 +51,22 @@ Preferences::Preferences(QSettings* settings, Core* C, QWidget *parent) : } ui->comboBox_language->setCurrentIndex(ui->comboBox_language->findData(settings->value("language", "en").toString())); + QFontDatabase fontDatabase; + QFont setMonoFont; setMonoFont.fromString(settings->value("monoFont", "").toString()); + if (!settings->value("monoFont", "").toString().isEmpty() && fontDatabase.families().contains(setMonoFont.family())) { + ui->comboBox_font->setCurrentFont(QFont(setMonoFont)); + ui->comboBox_fontSize->setCurrentText(QString::number(setMonoFont.pointSize())); + } else { + QStringList preferredMonoFonts = { "Cascadia Mono", "Mono" }; + for (const QString &fontName : preferredMonoFonts) { + if (fontDatabase.families().contains(fontName)) { + ui->comboBox_font->setCurrentFont(QFont(fontName)); + ui->comboBox_fontSize->setCurrentText(QString::number(QFont().pointSize())); + break; + } + } + } + ui->showMenu->setChecked(settings->value("showMenu",true).toBool()); ui->showToolbar->setChecked(settings->value("showToolbar",true).toBool()); ui->closeAllBeforeOpen->setChecked(settings->value("closeBeforeOpen",true).toBool()); @@ -146,6 +162,9 @@ void Preferences::saveSettings() { ConfigTreeText::save(settings); Custom::setDefault(ui->customComboBox->itemData(ui->customComboBox->currentIndex()).toInt()); Custom::save(settings); + QFont monoFont = ui->comboBox_font->currentFont(); + monoFont.setPointSize(ui->comboBox_fontSize->currentText().toInt()); + settings->setValue("monoFont",monoFont.toString()); } void Preferences::changeEvent(QEvent *e) diff --git a/Source/GUI/Qt/prefs.ui b/Source/GUI/Qt/prefs.ui index ccfb0defd..621955d0a 100644 --- a/Source/GUI/Qt/prefs.ui +++ b/Source/GUI/Qt/prefs.ui @@ -120,7 +120,30 @@ QLayout::SizeConstraint::SetFixedSize - + + + + + + + Monospaced font + + + + + + + Qt::Orientation::Vertical + + + + 20 + 40 + + + + + 25 @@ -134,31 +157,41 @@ - - + + - Shell InfoTip + Default View - + Shell extension - + Check for new versions - - + + + + false + + + QFontComboBox::FontFilter::MonospacedFonts + + + + + - Default View + Language @@ -172,28 +205,68 @@ - - - - Qt::Orientation::Vertical - - - - 20 - 40 - + + + + Shell InfoTip - + - - + + - Language + Monospaced font size - - + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + diff --git a/Source/GUI/Qt/sheetview.cpp b/Source/GUI/Qt/sheetview.cpp index 6f37e113b..bcf461310 100644 --- a/Source/GUI/Qt/sheetview.cpp +++ b/Source/GUI/Qt/sheetview.cpp @@ -18,7 +18,7 @@ using namespace ZenLib; #define QString2wstring(_DATA) \ Ztring().From_UTF8(_DATA.toUtf8()) -SheetView::SheetView(Core *C, QWidget *parent) : +SheetView::SheetView(Core *C, QWidget *parent, QFont* monoFont) : QFrame(parent), ui(new Ui::SheetView) { @@ -34,9 +34,13 @@ SheetView::SheetView(Core *C, QWidget *parent) : refreshDisplay(); ui->tableWidget->selectRow(0); - QStringList fonts = { "Cascadia Mono", "Mono" }; - QFont font(fonts); - font.setStyleHint(QFont::TypeWriter); + QFont font; + if (monoFont) + font = *monoFont; + else { + font.setFamily("Mono"); + font.setStyleHint(QFont::TypeWriter); + } ui->label->setFont(font); } diff --git a/Source/GUI/Qt/sheetview.h b/Source/GUI/Qt/sheetview.h index 665afa492..2912302ed 100644 --- a/Source/GUI/Qt/sheetview.h +++ b/Source/GUI/Qt/sheetview.h @@ -18,7 +18,7 @@ namespace Ui { class SheetView : public QFrame { Q_OBJECT public: - SheetView(Core* C, QWidget *parent = 0); + SheetView(Core* C, QWidget *parent = 0, QFont* monoFont = nullptr); ~SheetView(); protected: diff --git a/Source/Resource/Translations/ar.ts b/Source/Resource/Translations/ar.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/ar.ts +++ b/Source/Resource/Translations/ar.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/be.ts b/Source/Resource/Translations/be.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/be.ts +++ b/Source/Resource/Translations/be.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/bg.ts b/Source/Resource/Translations/bg.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/bg.ts +++ b/Source/Resource/Translations/bg.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/ca.ts b/Source/Resource/Translations/ca.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/ca.ts +++ b/Source/Resource/Translations/ca.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/cs.ts b/Source/Resource/Translations/cs.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/cs.ts +++ b/Source/Resource/Translations/cs.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/da.ts b/Source/Resource/Translations/da.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/da.ts +++ b/Source/Resource/Translations/da.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/de.ts b/Source/Resource/Translations/de.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/de.ts +++ b/Source/Resource/Translations/de.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/en.qm b/Source/Resource/Translations/en.qm index a5fdf6494e2b909dbcf4b1a3364ded0663f0419c..89a46800a44b8eef2b29132d48537520fe581c2a 100644 GIT binary patch delta 721 zcmaLUT}V@590u^`oU@(Tbem*KT19T0tca4nFEyKY{V`6$lfrEK4&&()B8neR~`cX>g<}k z^%0r}yMU50uJa97*+N8W0Lo|4y0H#a&7k$;Gx8-@-NxCF0vvdUE?*v~e2SrOn}EFr zcSl@+rGL&~5~@VsILit4<6DxY?iFB|;re!^ zeDF4aytEn~r|fgm`tvEEEFtaQIRorTbG-}fvtSlo!%QctPOnb0Fc1NBZf+o~Sw1mC zDH+X^0UBN9WDzlJ4P4cBZXc$47PU8%_i5-SuBx&HQEgQ3$(bwEp4u(vjMQrBlAMcD zin~Rg&GZ4r7I}WYnVuzi^CXp6^pop7N-opcYPsG%=9Z3$HEpa-3XA^JY*Mo6eU18C zr!E67nXO57;XQjRB|0jt2JdbXa9lDZLv{2gVn%~*8mM?|+&4(KwSF;HhL(Wh4X$#8 zq!SkZ;wqhFf%XNt%7n3LdKA!4a;smnNsVf%4w}B_=^{mYX;$DvVMnuCQENjJQs|+T zMlaeCMI13Wkofbqzlhp{Ov}`i>Pe-0+oSQABa!N1LB-tQ`Tt%@Nh68ti2qI5|8Gja OBhA)amcqDasN^>pe7dgy delta 572 zcmXBRUr19?90&04z31-E)ZJCmupwLQ&)w$T?lhv7#q6PnC=v@{Y>+{jx}u_lz^7;y zjMandC?g6iOl1fgIvOjmB#a1QJw^}_f<#mlQXmx356;tv!|(9>{m%D%xG;Tw+$GiW zZimPF6gbre*jt3=7jhAZUV>690>+tqA|Rc}Uw6pi(R{(xXeME)Jps%c`4@qthMw#& z&^#gZd=!RtB-mk~Z5GMZWx)Rz$*(JbZU{{isaP1;@d?9`64jl^{jLLU0}sc2KwyY> zOAe>LChhE=09wyU_ec5x%WbJR@QccC`DIC$!#{aJa_`q!Yu9_gHY1E2WTnnY0425* zzX$jh+48Gtpk7+w zQJ#?F&S>2-^lmrMVYS>$&(YBD!pJRNmd&G)O*M0k(u=%Q3mT=mbwMqhr7rrMI-9u) zXuazEd=H&dYW*06*ziXfyhB!Lw|&Ck8y;YL<@PE+&Em3IMainWindow - + View View @@ -292,7 +292,7 @@ Except the Mac App Store graphical user interface, it is open-source software, w - + Open File(s) Open File(s) @@ -313,7 +313,7 @@ Except the Mac App Store graphical user interface, it is open-source software, w - + Open Folder Open Folder @@ -407,153 +407,153 @@ Except the Mac App Store graphical user interface, it is open-source software, w Trace - + view - + Update to new version Update to new version - + Icon size Icon size - + Text position Text position - + Icons only Icons only - + Text only Text only - + Text under icons Text under icons - + Text beside icons Text beside icons - - + + Default Default - + Small Small - + Medium Medium - + Big Big - + Huge Huge - + Opening files... Opening files... - + Abort Opening Abort Opening - + You must at least open 1 file. Open a file or a directory. You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. You must at least open 1 file. Open a file or a directory, or simply drag and drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name File Name - + Format Format - + Video Codec List Video Codec List - + Audio Codec List Audio Codec List - + Text Codec List Text Codec List - + Video Format Video Format - + Audio Duration Audio Duration - + Text Width Text Width @@ -636,143 +636,198 @@ Open a file or a directory, or simply drag and drop files in the window. - + Open each item in a separate instance Open each item in a separate instance - + Shell InfoTip - + Shell extension Shell extension - + Check for new versions Check for new versions - + Default View Default View - + + Monospaced font + Monospaced font + + + Language Language - + + Monospaced font size + Monospaced font size + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position Remember its position - + Remember Window Geometry Remember Window Geometry - + Add creation date to text output Add creation date to text output - + Close all before open Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu Show menu - + Show toolbar Show toolbar - + When content is detected When content is detected - + When content or a command is detected When content or a command is detected - + Even when no content or command is detected Even when no content or command is detected - + Handling of 608/708 streams: Handling of 608/708 streams: - + Add version to text output Add version to text output - + Enable FFmpeg plugin Enable FFmpeg plugin - + Choose your desired custom sheet Choose your desired custom sheet - - - + + + Delete Delete - - - + + + Edit Edit - - - + + + New New - + Select your desired configuration Select your desired configuration - + Choose your desired custom text Choose your desired custom text - + ADM: Show ChannelFormats ADM: Show ChannelFormats - + ADM: Show TrackUIDs ADM: Show TrackUIDs @@ -782,7 +837,7 @@ Open a file or a directory, or simply drag and drop files in the window.Preferences - + File Name File Name @@ -938,7 +993,7 @@ Open a file or a directory, or simply drag and drop files in the window. - + Summary Summary diff --git a/Source/Resource/Translations/es.ts b/Source/Resource/Translations/es.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/es.ts +++ b/Source/Resource/Translations/es.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/eu.ts b/Source/Resource/Translations/eu.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/eu.ts +++ b/Source/Resource/Translations/eu.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/fa.ts b/Source/Resource/Translations/fa.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/fa.ts +++ b/Source/Resource/Translations/fa.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/fr.qm b/Source/Resource/Translations/fr.qm index 5f99165c4bfe4734d08db448a02828f11f7cba14..bc8ec749936cfcb070d5ca3b0c9f42167e48ce21 100644 GIT binary patch delta 403 zcmbQO-()yJj`77rc`+_AF9wz!D;XF>)=ab)lM>}-V0mM}z`$9~!1BY6fq`8NLW>$t z%opeU#=yE`D+7a=!o+@k!y62drw=eN2&XYbzCHq^mqKXKXLREdR^{VmU&6p3xP0<;Mr9_k{LOzD zR||R>Fa$8rT5Lj4Spua5xfa}ZkO1LN%CI0gnbWv1QtBpDbO zqnYlhw*bu#nfP8zN^m*L61PJP3|u!^)~t?YU=T=!(84n(%QLD;iR@x)D%-@sAkxA% volk~=frE{0^=dz$X2!|!jE0kEFuF1c`AvS#sLUifV>1uaYQfEYB43yRj`KKa diff --git a/Source/Resource/Translations/fr.ts b/Source/Resource/Translations/fr.ts index 909bd4c58..c9f874c23 100644 --- a/Source/Resource/Translations/fr.ts +++ b/Source/Resource/Translations/fr.ts @@ -266,7 +266,7 @@ Excepté l'interface graphique de l'App Store Mac, c'est un logic MainWindow - + View Affichage @@ -292,7 +292,7 @@ Excepté l'interface graphique de l'App Store Mac, c'est un logic - + Open File(s) Ouvrir le(s) fichier(s) @@ -313,7 +313,7 @@ Excepté l'interface graphique de l'App Store Mac, c'est un logic - + Open Folder Ouvrir le dossier @@ -403,153 +403,153 @@ Excepté l'interface graphique de l'App Store Mac, c'est un logic - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. Vous devez ouvrir au moins 1 fichier. Ouvrir un fichier ou un répertoire. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. Vous devez ouvrir au moins 1 fichier. Ouvrez un fichier ou un répertoire, ou faites simplement glisser et déposez les fichiers dans la fenêtre. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -632,143 +632,198 @@ Ouvrez un fichier ou un répertoire, ou faites simplement glisser et déposez le - + Open each item in a separate instance Ouvrir chaque élément dans une instance distincte - + Shell InfoTip - + Shell extension Extension du Shell - + Check for new versions Vérifiez les nouvelles versions - + Default View Affichage par défaut - + + Monospaced font + Police à espacement fixe + + + Language Langue - + + Monospaced font size + Taille de police à espacement fixe + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -778,7 +833,7 @@ Ouvrez un fichier ou un répertoire, ou faites simplement glisser et déposez le Préférences - + File Name @@ -934,7 +989,7 @@ Ouvrez un fichier ou un répertoire, ou faites simplement glisser et déposez le - + Summary diff --git a/Source/Resource/Translations/gl.ts b/Source/Resource/Translations/gl.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/gl.ts +++ b/Source/Resource/Translations/gl.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/gr.ts b/Source/Resource/Translations/gr.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/gr.ts +++ b/Source/Resource/Translations/gr.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/hr.ts b/Source/Resource/Translations/hr.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/hr.ts +++ b/Source/Resource/Translations/hr.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/hu.ts b/Source/Resource/Translations/hu.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/hu.ts +++ b/Source/Resource/Translations/hu.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/hy.ts b/Source/Resource/Translations/hy.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/hy.ts +++ b/Source/Resource/Translations/hy.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/id.ts b/Source/Resource/Translations/id.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/id.ts +++ b/Source/Resource/Translations/id.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/it.ts b/Source/Resource/Translations/it.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/it.ts +++ b/Source/Resource/Translations/it.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/ja.ts b/Source/Resource/Translations/ja.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/ja.ts +++ b/Source/Resource/Translations/ja.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/ka.ts b/Source/Resource/Translations/ka.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/ka.ts +++ b/Source/Resource/Translations/ka.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/ko.ts b/Source/Resource/Translations/ko.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/ko.ts +++ b/Source/Resource/Translations/ko.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/lt.ts b/Source/Resource/Translations/lt.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/lt.ts +++ b/Source/Resource/Translations/lt.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/nl.ts b/Source/Resource/Translations/nl.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/nl.ts +++ b/Source/Resource/Translations/nl.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/pl.ts b/Source/Resource/Translations/pl.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/pl.ts +++ b/Source/Resource/Translations/pl.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/pt-BR.ts b/Source/Resource/Translations/pt-BR.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/pt-BR.ts +++ b/Source/Resource/Translations/pt-BR.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/pt.ts b/Source/Resource/Translations/pt.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/pt.ts +++ b/Source/Resource/Translations/pt.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/ro.ts b/Source/Resource/Translations/ro.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/ro.ts +++ b/Source/Resource/Translations/ro.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/ru.ts b/Source/Resource/Translations/ru.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/ru.ts +++ b/Source/Resource/Translations/ru.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/sk.ts b/Source/Resource/Translations/sk.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/sk.ts +++ b/Source/Resource/Translations/sk.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/sq.ts b/Source/Resource/Translations/sq.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/sq.ts +++ b/Source/Resource/Translations/sq.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/sv.ts b/Source/Resource/Translations/sv.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/sv.ts +++ b/Source/Resource/Translations/sv.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/th.ts b/Source/Resource/Translations/th.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/th.ts +++ b/Source/Resource/Translations/th.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/tr.ts b/Source/Resource/Translations/tr.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/tr.ts +++ b/Source/Resource/Translations/tr.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/uk.ts b/Source/Resource/Translations/uk.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/uk.ts +++ b/Source/Resource/Translations/uk.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/zh-CN.ts b/Source/Resource/Translations/zh-CN.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/zh-CN.ts +++ b/Source/Resource/Translations/zh-CN.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/zh-HK.ts b/Source/Resource/Translations/zh-HK.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/zh-HK.ts +++ b/Source/Resource/Translations/zh-HK.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary diff --git a/Source/Resource/Translations/zh-TW.ts b/Source/Resource/Translations/zh-TW.ts index a7961fb21..7e258c080 100644 --- a/Source/Resource/Translations/zh-TW.ts +++ b/Source/Resource/Translations/zh-TW.ts @@ -262,7 +262,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) MainWindow - + View @@ -288,7 +288,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open File(s) @@ -309,7 +309,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + Open Folder @@ -399,151 +399,151 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + view - + Update to new version - + Icon size - + Text position - + Icons only - + Text only - + Text under icons - + Text beside icons - - + + Default - + Small - + Medium - + Big - + Huge - + Opening files... - + Abort Opening - + You must at least open 1 file. Open a file or a directory. - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + MediaInfo - + files window title - + key - + value - + File Name - + Format - + Video Codec List - + Audio Codec List - + Text Codec List - + Video Format - + Audio Duration - + Text Width @@ -626,143 +626,198 @@ Open a file or a directory, or simply drag n drop files in the window. - + Open each item in a separate instance - + Shell InfoTip - + Shell extension - + Check for new versions - + Default View - + + Monospaced font + + + + Language - + + Monospaced font size + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + Remember its position - + Remember Window Geometry - + Add creation date to text output - + Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + Show menu - + Show toolbar - + When content is detected - + When content or a command is detected - + Even when no content or command is detected - + Handling of 608/708 streams: - + Add version to text output - + Enable FFmpeg plugin - + Choose your desired custom sheet - - - + + + Delete - - - + + + Edit - - - + + + New - + Select your desired configuration - + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs @@ -772,7 +827,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + File Name @@ -928,7 +983,7 @@ Open a file or a directory, or simply drag n drop files in the window. - + Summary From 5224098cdae2fd80c0ed4db0f2971857011af95b Mon Sep 17 00:00:00 2001 From: cjee21 <77721854+cjee21@users.noreply.github.com> Date: Mon, 17 Feb 2025 14:19:59 +0800 Subject: [PATCH 4/4] Qt GUI: Update translations --- .../GUI/Qt/Qt_Translations_Updater/README.md | 31 + .../update_Qt_translations.cmd | 58 ++ .../update_Qt_translations.py | 105 ++ Source/GUI/Qt/about.ui | 63 +- Source/GUI/Qt/export.cpp | 2 +- Source/GUI/Qt/export.ui | 14 +- Source/GUI/Qt/mainwindow.cpp | 2 +- Source/GUI/Qt/mainwindow.ui | 10 +- Source/GUI/Qt/prefs.ui | 196 ++-- Source/Resource/Translations/ar.qm | Bin 16 -> 6179 bytes Source/Resource/Translations/ar.ts | 894 ++++++++--------- Source/Resource/Translations/be.qm | Bin 16 -> 6823 bytes Source/Resource/Translations/be.ts | 891 ++++++++--------- Source/Resource/Translations/bg.qm | Bin 16 -> 5406 bytes Source/Resource/Translations/bg.ts | 888 ++++++++--------- Source/Resource/Translations/ca.qm | Bin 16 -> 6526 bytes Source/Resource/Translations/ca.ts | 889 ++++++++--------- Source/Resource/Translations/cs.qm | Bin 16 -> 6468 bytes Source/Resource/Translations/cs.ts | 880 ++++++++--------- Source/Resource/Translations/da.qm | Bin 16 -> 6388 bytes Source/Resource/Translations/da.ts | 893 ++++++++--------- Source/Resource/Translations/de.qm | Bin 16 -> 6910 bytes Source/Resource/Translations/de.ts | 894 ++++++++--------- Source/Resource/Translations/en.qm | Bin 13788 -> 6494 bytes Source/Resource/Translations/en.ts | 775 ++++++++------- Source/Resource/Translations/es.qm | Bin 16 -> 6690 bytes Source/Resource/Translations/es.ts | 889 ++++++++--------- Source/Resource/Translations/eu.qm | Bin 16 -> 6720 bytes Source/Resource/Translations/eu.ts | 889 ++++++++--------- Source/Resource/Translations/fa.qm | Bin 16 -> 6159 bytes Source/Resource/Translations/fa.ts | 882 ++++++++--------- Source/Resource/Translations/fr.qm | Bin 6274 -> 7020 bytes Source/Resource/Translations/fr.ts | 833 ++++++++-------- Source/Resource/Translations/gl.qm | Bin 16 -> 6506 bytes Source/Resource/Translations/gl.ts | 894 ++++++++--------- Source/Resource/Translations/gr.qm | Bin 16 -> 7155 bytes Source/Resource/Translations/gr.ts | 894 ++++++++--------- Source/Resource/Translations/hr.qm | Bin 16 -> 6863 bytes Source/Resource/Translations/hr.ts | 894 ++++++++--------- Source/Resource/Translations/hu.qm | Bin 16 -> 6503 bytes Source/Resource/Translations/hu.ts | 894 ++++++++--------- Source/Resource/Translations/hy.qm | Bin 16 -> 6250 bytes Source/Resource/Translations/hy.ts | 895 +++++++++--------- Source/Resource/Translations/id.qm | Bin 16 -> 6873 bytes Source/Resource/Translations/id.ts | 889 ++++++++--------- Source/Resource/Translations/it.qm | Bin 16 -> 6872 bytes Source/Resource/Translations/it.ts | 889 ++++++++--------- Source/Resource/Translations/ja.qm | Bin 16 -> 5315 bytes Source/Resource/Translations/ja.ts | 889 ++++++++--------- Source/Resource/Translations/ka.qm | Bin 16 -> 6704 bytes Source/Resource/Translations/ka.ts | 880 ++++++++--------- Source/Resource/Translations/ko.qm | Bin 16 -> 5501 bytes Source/Resource/Translations/ko.ts | 894 ++++++++--------- Source/Resource/Translations/lt.qm | Bin 16 -> 6752 bytes Source/Resource/Translations/lt.ts | 894 ++++++++--------- Source/Resource/Translations/nl.qm | Bin 16 -> 6588 bytes Source/Resource/Translations/nl.ts | 894 ++++++++--------- Source/Resource/Translations/pl.qm | Bin 16 -> 6582 bytes Source/Resource/Translations/pl.ts | 894 ++++++++--------- Source/Resource/Translations/pt-BR.qm | Bin 16 -> 6495 bytes Source/Resource/Translations/pt-BR.ts | 894 ++++++++--------- Source/Resource/Translations/pt.qm | Bin 16 -> 7300 bytes Source/Resource/Translations/pt.ts | 894 ++++++++--------- Source/Resource/Translations/ro.qm | Bin 16 -> 6045 bytes Source/Resource/Translations/ro.ts | 889 ++++++++--------- Source/Resource/Translations/ru.qm | Bin 16 -> 6879 bytes Source/Resource/Translations/ru.ts | 891 ++++++++--------- Source/Resource/Translations/sk.qm | Bin 16 -> 6512 bytes Source/Resource/Translations/sk.ts | 880 ++++++++--------- Source/Resource/Translations/sq.qm | Bin 16 -> 6638 bytes Source/Resource/Translations/sq.ts | 894 ++++++++--------- Source/Resource/Translations/sv.qm | Bin 16 -> 6518 bytes Source/Resource/Translations/sv.ts | 889 ++++++++--------- Source/Resource/Translations/th.qm | Bin 16 -> 6321 bytes Source/Resource/Translations/th.ts | 894 ++++++++--------- Source/Resource/Translations/tr.qm | Bin 16 -> 6627 bytes Source/Resource/Translations/tr.ts | 889 ++++++++--------- Source/Resource/Translations/uk.qm | Bin 16 -> 6823 bytes Source/Resource/Translations/uk.ts | 894 ++++++++--------- Source/Resource/Translations/zh-CN.qm | Bin 16 -> 4880 bytes Source/Resource/Translations/zh-CN.ts | 889 ++++++++--------- Source/Resource/Translations/zh-HK.qm | Bin 16 -> 4900 bytes Source/Resource/Translations/zh-HK.ts | 890 ++++++++--------- Source/Resource/Translations/zh-TW.qm | Bin 16 -> 5198 bytes Source/Resource/Translations/zh-TW.ts | 893 ++++++++--------- 85 files changed, 17292 insertions(+), 16860 deletions(-) create mode 100644 Source/GUI/Qt/Qt_Translations_Updater/README.md create mode 100644 Source/GUI/Qt/Qt_Translations_Updater/update_Qt_translations.cmd create mode 100644 Source/GUI/Qt/Qt_Translations_Updater/update_Qt_translations.py diff --git a/Source/GUI/Qt/Qt_Translations_Updater/README.md b/Source/GUI/Qt/Qt_Translations_Updater/README.md new file mode 100644 index 000000000..7d8b396b8 --- /dev/null +++ b/Source/GUI/Qt/Qt_Translations_Updater/README.md @@ -0,0 +1,31 @@ +# Translation Update Script + +This folder contains scripts to automate the process of updating Qt `.ts` translation files and generating `.qm` files for MediaInfo's Qt GUI. The process involves using `lupdate` to update the `.ts` files, a Python script to apply custom translations from MediaInfo's `Languages` CSV file, and `lrelease` to generate the final `.qm` files. + +## Prerequisites + +1. **Qt Tools**: Ensure you have `lupdate` and `lrelease` installed and available in your system's PATH. +2. **Python**: Ensure you have Python installed and available in your system's PATH. + +## Files + +### `update_Qt_translations.cmd` + +This Windows Command Script automates the process of updating `.ts` files and generating `.qm` files. + +### `update_Qt_translations.py` + +This Python script updates the `.ts` files with translations from the CSV file and handles special cases. + +## Usage + +1. **Run the Windows Command Script**: + - Double-click `update_Qt_translations.cmd` or execute it from the command line. + - The script will: + - Run `lupdate` to update the `.ts` files. + - Use `update_Qt_translations.py` to apply custom translations from `Languages.csv`. + - Run `lrelease` to generate the `.qm` files. + +2. **Verify the Output**: + - Check the `Source\Resource\Translations` folder to ensure that the `.ts` files have been generated/updated. + - Verify that the `.qm` files have been generated/updated in the same directory as above. diff --git a/Source/GUI/Qt/Qt_Translations_Updater/update_Qt_translations.cmd b/Source/GUI/Qt/Qt_Translations_Updater/update_Qt_translations.cmd new file mode 100644 index 000000000..9ee720896 --- /dev/null +++ b/Source/GUI/Qt/Qt_Translations_Updater/update_Qt_translations.cmd @@ -0,0 +1,58 @@ +@echo off +setlocal + +REM Enable ANSI escape sequences +setlocal enableextensions +setlocal enabledelayedexpansion + +REM ANSI escape codes for colors +set GREEN= +set YELLOW= +set RED= +set RESET= + +REM Set paths +set PROJECT_FILE=%~dp0\..\..\..\..\Project\QMake\GUI\MediaInfoQt.pro +set TS_FILES_FOLDER=%~dp0\..\..\..\Resource\Translations +set CSV_FILE=%~dp0\..\..\..\Resource\Language.csv +set PYTHON_SCRIPT=%~dp0\update_Qt_translations.py + +REM Step 1: Run lupdate to update .ts files +echo. +echo !YELLOW!Running lupdate...!RESET! +lupdate -noobsolete %PROJECT_FILE% +if %errorlevel% neq 0 ( + echo. + echo !RED!lupdate failed!%RESET% + exit /b %errorlevel% +) +echo. +echo !GREEN!lupdate completed successfully!%RESET% +echo. + +REM Step 2: Run the Python script to update .ts files +echo !YELLOW!Updating .ts files with translations...!RESET! +python %PYTHON_SCRIPT% %TS_FILES_FOLDER% %CSV_FILE% +if %errorlevel% neq 0 ( + echo. + echo !RED!Python script failed!%RESET% + exit /b %errorlevel% +) +echo. +echo !GREEN!.ts files updated successfully!%RESET% +echo. + +REM Step 3: Run lrelease to generate .qm files +echo !YELLOW!Running lrelease...!RESET! +lrelease %PROJECT_FILE% +if %errorlevel% neq 0 ( + echo. + echo !RED!lrelease failed!%RESET% + exit /b %errorlevel% +) +echo. +echo !GREEN!lrelease completed successfully!%RESET% +echo. + +echo !GREEN!All steps completed successfully!%RESET! +endlocal diff --git a/Source/GUI/Qt/Qt_Translations_Updater/update_Qt_translations.py b/Source/GUI/Qt/Qt_Translations_Updater/update_Qt_translations.py new file mode 100644 index 000000000..111722ea5 --- /dev/null +++ b/Source/GUI/Qt/Qt_Translations_Updater/update_Qt_translations.py @@ -0,0 +1,105 @@ +# Update Qt translations .ts files with translations from MediaInfo's Languages.csv +# Script generated with Qwen2.5-Coder-32B-Instruct + +import os +import csv +import xml.etree.ElementTree as ET +import sys + +def load_translations(csv_file): + translations = {} + with open(csv_file, mode='r', encoding='utf-8') as file: + reader = csv.DictReader(file, delimiter=';') + for row in reader: + source = row[' Language_ISO639'] + translations[source] = {lang: row[lang] for lang in row if lang != ' Language_ISO639'} + return translations + +def clean_translation(translation): + if translation is not None: + return translation.replace('\\r\\n', '\n') + return translation + +def update_ts_file(ts_file, translations, lang_code): + tree = ET.parse(ts_file) + root = tree.getroot() + + # Update the TS tag with language and sourcelanguage attributes + root.set('language', lang_code.replace('-', '_')) + root.set('sourcelanguage', 'en') + + for context in root.findall('context'): + for message in context.findall('message'): + source = message.find('source').text + translation_tag = message.find('translation') + + if source in translations: + lang_translation = translations[source].get(lang_code, '') + if not lang_translation: + lang_translation = translations[source].get('en', '') + + lang_translation = clean_translation(lang_translation) + + if translation_tag is None: + translation_tag = ET.SubElement(message, 'translation') + translation_tag.text = lang_translation + + # Remove type="unfinished" if present + if 'type' in translation_tag.attrib and translation_tag.attrib['type'] == 'unfinished': + del translation_tag.attrib['type'] + elif source == 'MediaInfo v%1\nCopyright (C) 2002-2025 MediaArea.net SARL\n': + # Special case handling for Copyright + copyright_translation = translations['Copyright'].get(lang_code, '') + if not copyright_translation: + copyright_translation = translations['Copyright'].get('en', '') + + copyright_translation = clean_translation(copyright_translation) + + if translation_tag is None: + translation_tag = ET.SubElement(message, 'translation') + + # Replace only the word "Copyright" with the translated version + translation_text = source.replace('Copyright', copyright_translation) + translation_tag.text = translation_text + + # Remove type="unfinished" if present + if 'type' in translation_tag.attrib and translation_tag.attrib['type'] == 'unfinished': + del translation_tag.attrib['type'] + elif source == 'Translator : Zen': + # Special case handling for Translator + translator_translation = translations['Translator'].get(lang_code, '') + if not translator_translation: + translator_translation = translations['Translator'].get('en', '') + + author_name = translations[' Author_Name'].get(lang_code, 'Zen') + author_name = clean_translation(author_name) + + if translation_tag is None: + translation_tag = ET.SubElement(message, 'translation') + + # Replace "Translator" and "Zen" with the translated versions + translation_text = f'{translator_translation} : {author_name}' + translation_tag.text = translation_text + + # Remove type="unfinished" if present + if 'type' in translation_tag.attrib and translation_tag.attrib['type'] == 'unfinished': + del translation_tag.attrib['type'] + + tree.write(ts_file, encoding='utf-8', xml_declaration=True) + +def process_ts_files(folder, csv_file): + translations = load_translations(csv_file) + for filename in os.listdir(folder): + if filename.endswith('.ts'): + lang_code = filename[:-3] # Remove '.ts' extension + ts_file = os.path.join(folder, filename) + update_ts_file(ts_file, translations, lang_code) + +if __name__ == '__main__': + if len(sys.argv) != 3: + print("Usage: python update_translations.py ") + sys.exit(1) + + ts_files_folder = sys.argv[1] + csv_file_path = sys.argv[2] + process_ts_files(ts_files_folder, csv_file_path) diff --git a/Source/GUI/Qt/about.ui b/Source/GUI/Qt/about.ui index 8e4b8df0e..af020b9eb 100644 --- a/Source/GUI/Qt/about.ui +++ b/Source/GUI/Qt/about.ui @@ -15,7 +15,7 @@ - + @@ -50,30 +50,39 @@ - - - MediaInfo v%1 + + + + + + 0 + 0 + + + + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - - - Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignTop - - - true - - + + + + Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignTop + + + + + + + MediaInfo_About + + + Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignTop + + + true + + + + @@ -128,14 +137,14 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - Go to website + Go to WebSite - Check for new version + CheckNewVersion @@ -149,7 +158,7 @@ Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - Write mail to author + WriteMe diff --git a/Source/GUI/Qt/export.cpp b/Source/GUI/Qt/export.cpp index 8088d39d9..724ca024a 100644 --- a/Source/GUI/Qt/export.cpp +++ b/Source/GUI/Qt/export.cpp @@ -22,7 +22,7 @@ Export::Export(QString filename, int mode, QWidget *parent) : ui->comboBoxConfig->setStyleSheet(style); ui->comboBoxMode->setStyleSheet(style); #else - setWindowTitle("Export"); + setWindowTitle(tr("Export")); #endif for(int i=0;i - Choose your desired export format + Choose export format @@ -25,7 +25,7 @@ - Format: + Format @@ -46,7 +46,7 @@ - Profile: + Profile @@ -72,14 +72,14 @@ - Append to the existing file + File_Append - Qt::Vertical + Qt::Orientation::Vertical @@ -95,10 +95,10 @@ - Qt::Horizontal + Qt::Orientation::Horizontal - QDialogButtonBox::Cancel|QDialogButtonBox::Ok + QDialogButtonBox::StandardButton::Cancel|QDialogButtonBox::StandardButton::Ok diff --git a/Source/GUI/Qt/mainwindow.cpp b/Source/GUI/Qt/mainwindow.cpp index ad94dd457..4bcb17978 100644 --- a/Source/GUI/Qt/mainwindow.cpp +++ b/Source/GUI/Qt/mainwindow.cpp @@ -215,7 +215,7 @@ MainWindow::MainWindow(QStringList filesnames, int viewasked, QWidget *parent) : connect(menuItemGroup,SIGNAL(triggered(QAction*)),this,SLOT(actionView_toggled(QAction*))); buttonView = new QToolButton(); - buttonView->setText(tr("view")); + buttonView->setText("view"); buttonView->setIcon(QIcon(":/icon/view.svg")); connect(buttonView, SIGNAL(clicked()), this, SLOT(buttonViewClicked())); ui->toolBar->addWidget(buttonView); diff --git a/Source/GUI/Qt/mainwindow.ui b/Source/GUI/Qt/mainwindow.ui index 3a6326a90..e5d26c8f7 100644 --- a/Source/GUI/Qt/mainwindow.ui +++ b/Source/GUI/Qt/mainwindow.ui @@ -161,7 +161,7 @@ - Quit + Exit Ctrl+Q @@ -224,7 +224,7 @@ true - Advanced Mode + Advanced mode @@ -232,17 +232,17 @@ true - Full parse + FullParsing - reset columns sizes + Reset columns sizes - adapt columns to content + Adapt columns to content diff --git a/Source/GUI/Qt/prefs.ui b/Source/GUI/Qt/prefs.ui index 621955d0a..c3c2cba13 100644 --- a/Source/GUI/Qt/prefs.ui +++ b/Source/GUI/Qt/prefs.ui @@ -120,65 +120,7 @@ QLayout::SizeConstraint::SetFixedSize - - - - - - - Monospaced font - - - - - - - Qt::Orientation::Vertical - - - - 20 - 40 - - - - - - - - 25 - - - - - Open each item in a separate instance - - - - - - - - - Default View - - - - - - - Shell extension - - - - - - - Check for new versions - - - - + false @@ -188,38 +130,7 @@ - - - - Language - - - - - - - - 0 - 0 - - - - - - - - Shell InfoTip - - - - - - - Monospaced font size - - - - + @@ -268,6 +179,95 @@ + + + + Monospaced font + + + + + + + Output format + + + + + + + Language + + + + + + + + + + Monospaced font size + + + + + + + Qt::Orientation::Vertical + + + + 20 + 40 + + + + + + + + + 0 + 0 + + + + + + + + Newest version + + + + + + + Shell extension + + + + + + + 25 + + + + + Open each item in a separate instance + + + + + + + + + Shell InfoTip + + + @@ -350,21 +350,21 @@ - 1 + 0 - When content is detected + DisplayCaptions_Content - When content or a command is detected + DisplayCaptions_Command - Even when no content or command is detected + DisplayCaptions_Stream @@ -378,7 +378,7 @@ - Handling of 608/708 streams: + DisplayCaptions @@ -415,7 +415,7 @@ - Choose your desired custom sheet + Choose custom sheet @@ -531,7 +531,7 @@ - Choose your desired custom text + Choose custom text diff --git a/Source/Resource/Translations/ar.qm b/Source/Resource/Translations/ar.qm index be651eede2edc9cb0da5c140b31664afee169fa8..121e787e1e644a2dea8160c86643227764bcec3f 100644 GIT binary patch literal 6179 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 literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/ar.ts b/Source/Resource/Translations/ar.ts index 7e258c080..af156555b 100644 --- a/Source/Resource/Translations/ar.ts +++ b/Source/Resource/Translations/ar.ts @@ -1,1009 +1,1019 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +حقوق (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + تقديم معلومات مفصلة +حول ملف الوسائط المتعددة : +Matroska، OGG (including OGM) +MPEG1 (بما في ذلك VCD) +MPEG2 (بما في ذلك DVD و SVCD) +MPEG4 (بما في ذلك Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia ((بما في ذلك WMV، WMA) +Microsoft RIFF ((بما في ذلك AVI, WAV) +امتدادات الصوت فقط (AC3، DTS، AAC، AU، AIFF...) - - Go to website - + + Go to WebSite + زيارة الموقع - - Check for new version - + + CheckNewVersion + التحقق من وجود نسخة جديدة - + Donate - + تبرع - - Write mail to author - + + WriteMe + كتابة البريد للمؤلف - + Translator : Zen - + مترجم : Zen - + OK - + موافق - + About - + حول البرنامج EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + الاسم الكامل Export - - Choose your desired export format - + + Choose export format + اختيار صيغة تصدير الماف - - Format: - + + Format + شكل - - Profile: - + + Profile + - + Advanced mode - + الوضع المتقدم - - Append to the existing file - + + File_Append + إضافة إلى ملف موجود (تأكد من أن إعدادات متطابقة) - - + + Export + تصدير + + + + Text - + نص - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + رؤية - + Help - + ساعدة - + Options - + خيارات - + File - + ملف - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + حول البرنامج - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + خروج - + Ctrl+Q - + - + Known formats - + الامتدلدات المعروفة - + Known codecs - + الترميزات المعروفة - + Known parameters - + الاعدادات المعروفة - + English - + - + Français - + - + Preferences - + تفضيلات - + Ctrl+P - + - + Export - + تصدير - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + الوضع المتقدم - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + شكل - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + الإعداد - + 0 - + - + Advanced - + متقدم - + 1 - + - + Customize - + تعديل - + Sheet - + الجدول - + 2 - + - + Tree & Text - + شجرة والنصوص - + 3 - + - + Custom - + معدل - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + الامتداد المخرج - - 11 - + + Language + لغة - - 12 - + + Monospaced font size + - - 14 - + + Newest version + تحقق من الإصدارات الجديدة (يتطلب اتصال إنترنت) - - 16 - + + Shell extension + ملحق Shell (اضافة قائمة 'MediaInfo ' عند النقر الأيمن على الملف) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + ماحق InfoTip ( عرض مزيد من التفاصيل عند تحريك الماوس فوق الملف) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + إغلاق كافة قبل الفتح - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + اظهار القائمة - + Show toolbar - + عرض شريط الأدوات - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + اختيار الجدول مخصص - - - + + + Delete - + حذف - - - + + + Edit - + تغيير - - - + + + New - + جديد - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + اختيار نص مخصص - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + تفضيلات - + File Name - + QObject - + Easy - + - + Sheet - + الجدول - + Tree - + شجرة - + Text - + نص - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + معدل - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + النت - + no selection - + - + Summary - + ملخص editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/be.qm b/Source/Resource/Translations/be.qm index be651eede2edc9cb0da5c140b31664afee169fa8..fa65c98fca54a6cdfa10557d87558515cd01dd46 100644 GIT binary patch literal 6823 zcmbtYYit}>6+W@A*X#8&wi8Dolu6q_B9dn9*h%d8k@c=0sl9d*JL{%W62`j|dz0On z)jsUFNc}^9l!vN{LP07&T1tf=;RjJ0B2l1}ltLf`B!mK`NHjl*0Ey-gD1z_YyF0U< z9lME;<(=2L=Y79(&h5XN*mC_J-}vf{?c09xnOA=F{S_ zwSJoD)McVAZ6tmuh&B$AxQVO(B8lJbAgZe;@yBgMwXdpc#{m*|f_VQOs=4$b-d|VO zj_0W6>KjBISE=SE_|^w$(|`&7F?y)^b)vRbdSvgnh#J34V=rEVI;5_(|Dvg97r|#m zT{r$(T{{|Rt~x^05Tld7dJF4cq?3Qcy0+h`YsVS-!rk8xHSML>?!+Nar}sitM4QJp zyp%f)`)*YEBR?Z*j#q8h6GSZ&RXgwH@qE4NFQ0k_bT3rD+zEZ@_tkH`^D6B5Q}y+8 zu*dg|*!%7c&|empcE1MtJ>t^EQ;>62T{qtnSH|(4UKTf(z5@Ca>gvBG{_q0$)=sKx z-Ts<|&$q+Z|E_uC2jJWAfv<{QhyAyGpY>G}1>W?1Ee<}Lt9%zPP7!Tt^j$kO2R#;Q zlP^6D{s(GbFxDIb4kl|32GNDVgw7PrC!VkqU^=Kh-K<|!?i|(a;z4F3RWYgRKssbz8kjJH;!3a z-qPlb`I%$|o2MyC1|=v-IvpXC&XPqMEzu6@qyW@9Er!AFFqrn?+5`5=g-{Z7J1I=N zaP6WX{<>(7yz3&+mGKQx7BX~t4EznsssGWeHQ@Yg8Z z9l-BV8o^WNnzS(lCIVXKTB7b+lR82%P{S%v%;3IqZTFgMlQc^O8Q7eZ)s4`yj>qse zNpaYg$2E<>2M}^jgH&0B0yKxOCKAx1Wq86##@IsFb99X(5F<#f~GL zNAb57pAfhlDe~ca_EZFXmgouA9~i+g2qI@Vc3N4q5mn|2*p{ zP86?7k6m`EH`}Rx#tU@>0zF|9S4~f>PH-BwH$JBbrzg@w^g%fPN9ZXyJ1J9Z1NW-g`Yt*q9kJ!!as=^^oPNEkx8GpML-60|YFfzR5xETARo z#;A6vI#`5C-g7bRhG|=PL)c1ZQbyjG($jKf-AE#tpIJ1FyoBFvSREAOFpl@%0DB#G zQL!Iy`fV&GY|0ap58NLGd@bli_`1NiIVU_-R30Gy{>mU9(cPnvT{Ghr?NUy0}D(}dk<0FHF* z!4&1~l&y^zXZ1o#>g-+DKN>MQ`A!F|D&RXLltbwKtecZ+^85SK=9=Ba0Ms#R&%(uC~g@& z3joZcGxSoeRU!cIQ0^pnuR08Br!#qUlMlSE{%F=XYh(?;rsvuw$YhE8fI{%D6NXsQ zSoTu#aTLP{cCP}Zpe&rK-BL9p3PwHBfB|lbkRM@MM248MaY!L=EM!X>Z=7ASB@~JF zX)}w~vKC&{P18szjFB3bTcCRN2i9O#A`>?#C(sB)Y$Mwoxu}lu^Cyl(yhTn{B06`E zz+LVlxu$TnVze&d@o)*d@C|hbly>#8#cQENLW`rr<;ZFYH2&PY=K*mVCX|dCQYy^v zcj@8`AydU#a6huQvg{=_qTG+vR$J;YLM}%j+YW!JE_1$A=*t_9>oRAVN)aA2I*}$Z zJUfj=Td@+y3%R_N)^gk&crx7T!O&eOT30h;pL+6|6&+BfkGGl(qf#)8upWamOGOtg zF{rwWbfZxFnCQp50qKYdF@k%$l#A20V>X3T+*|0Wls0bwNes&0%_d$*#@;6}%?r;e{gT6GatInrFf#5m{Jg^uu zZ4u;K;Mq+0lBB{Tg$t6aJB1D8TK|# z%X(8b{#1B(z2>Bx*i(nia=26@?0$(-aY2+6kU-LBpDGL2(KOmy)nt&AFi_RJ9UsU8g2a>>J?#6c#>5n@xKA z?&q?hRAaT1Ry;1+Cwp*)BZ^ZrjORYV<1(wn#;Ej@gBb2HkmEf!r~{(plGRGHQ&%7L zIF4iEae#^N^tnvtqqaWq9E1*i@`$tKGRNd*WipDnVV2HTD-uSXCAi~RRM^hAI@xWe z4YS~xLVV;}3Z;`29A4gp2(8ViK{Co)R%%|)dh*(e63y))_`pU^6T3mPxzx{Q4MY2+ zR+?`sth&$sp!V4G{5d18PDIwn&sC)B%;c-+K6*EDeTf!lntm+ zT}TtTi*4H4nF1<#c7@3iTl9`Rz(@q~i|vS8Z`m1$LJS literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/be.ts b/Source/Resource/Translations/be.ts index 7e258c080..4dd875564 100644 --- a/Source/Resource/Translations/be.ts +++ b/Source/Resource/Translations/be.ts @@ -1,1009 +1,1016 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Аўтарскае права (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + MediaInfo дазваляе атрымаць доступ да падрабязнай інфармацыі +пра мультымедыя-файлы Matroska, OGG (уключаючы OGM) +MPEG1 (уключаючы VCD), MPEG2 (уключаючы DVD і SVCD), MPEG4 (уключаючы iTunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (уключаючы WMV, WMA) +Microsoft RIFF (уключаючы AVI, WAV, DivX) +гукавыя фарматы (AC3, DTS, SSC, AU, AIFF) - - Go to website - + + Go to WebSite + Перайсці на сайт - - Check for new version - + + CheckNewVersion + Праверыць наяўнасць новай версіі - + Donate - + Ахвяраваць - - Write mail to author - + + WriteMe + Напісаць аўтару - + Translator : Zen - + Перакладчык : Dzmitry Zubialevich - + OK - + OK - + About - + Пра праграму EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Поўнае імя Export - - Choose your desired export format - + + Choose export format + Выберыце фармат вываду - - Format: - + + Format + Фармат - - Profile: - + + Profile + - + Advanced mode - + Пашыраны рэжым + + + + File_Append + Дадаць да існуючага файла (Папярэджанне: пераканайцеся ў адпаведнасці параметраў) - - Append to the existing file - + + Export + Экспарт - - + + Text - + Тэкст - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Прагляд - + Help - + Даведка - + Options - + Параметры - + File - + Файл - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Пра праграму - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Выхад - + Ctrl+Q - + - + Known formats - + Вядомыя фарматы - + Known codecs - + Вядомыя кодэкі - + Known parameters - + Вядомыя параметры - + English - + - + Français - + - + Preferences - + Параметры - + Ctrl+P - + - + Export - + Экспарт - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Пашыраны рэжым - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Фармат - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Наладжванне - + 0 - + - + Advanced - + Дадаткова - + 1 - + - + Customize - + Дапасаваць - + Sheet - + Табліца - + 2 - + - + Tree & Text - + Дрэва і тэкст - + 3 - + - + Custom - + Выбарачна - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Фармат вываду - - 11 - + + Language + Мова - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Правяраць наяўнасць новых версій (патрабуецца падключэнне да інтэрнэту) - - 16 - + + Shell extension + Пашырэнне ў правадніку (пункт у кантэкстным меню правадніка Windows пры націску правай кнопкі мышы) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Усплывальная падказка (паказваць інфармацыю пры размяшчэнні паказальніка мышы над файлам у правадніку Windows) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Дадаць дату стварэння ў тэкставы вывад - + Close all before open - + Закрываць усё перад адкрыццём новых файлаў - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Паказваць меню - + Show toolbar - + Паказваць панэль - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Дадаць версію ў тэкставы вывад - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Выбраць табліцу - - - + + + Delete - + Выдаліць - - - + + + Edit - + Змяніць - - - + + + New - + Новы - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Выбраць тэкст - + ADM: Show ChannelFormats - + ADM: паказваць элементы ChannelFormat - + ADM: Show TrackUIDs - + ADM: паказваць элементы TrackUID - + Preferences - + Параметры - + File Name - + QObject - + Easy - + - + Sheet - + Табліца - + Tree - + Дрэва - + Text - + Тэкст - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Выбарачна - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Сайт - + no selection - + - + Summary - + Зводка editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/bg.qm b/Source/Resource/Translations/bg.qm index be651eede2edc9cb0da5c140b31664afee169fa8..999e7f6ec362d4e4f67c387a6fcc367ba8edf0c8 100644 GIT binary patch literal 5406 zcmbtYYiwIr9segje#Cia=@vzyyKC1jlj!1jN#mrg8^_M8&0|}#Mw=+zjeTOfwePj; z>!clshsK98_%H<9K5R&P3aRZE)^$uU#wZAtABB2j~|h5WjP7a%^8; zvPQ_dKKEXq|L^~P93Or&)${(}pMUy;yZV0g*o!~>@H<4*xSF28cZA4$h^XPuM9c3H zwSAfBV;CXuF7w-_Ye~BLXE9lxU+iT|ydh+HkiGokls~;u7?*`q7H4=4PZg{Tr zS?K9)3?zO+)O@A!E-oLCdf)P< zzuFBs{^Py!J>WL=`5NhU$UETsoX-P!qrPX8!0A}`UA(w}^?>i%$raf9V}JI!F93h9 z|3%&beg6{ZXxIgu&j;@Q?rFULbztGOo3Q7DO>f`)8|3_HF#5+5!<$6~&>qk5`Jo6#p4bZebU3j@Ng82LTnlujp3SvPP(G&ST5>D zDW_XzQ5(}924g+@rPb1Re!w8KS0!I8YA$f%$ZAH%Rc*ZnKT;mc}TQiG! zU8YbqqaL>F6JR!X3(r&&-p=lZG^4OmHzXLueOQF5(yw_co8zZqg#tHHPTCgGDt#1% zZ^~7|AWb8xbt+IsZS_tU^+Lu88=x6lMmEf;eQaiVe$Kfq$o9al!gdptjm!LOoo)VC z2@1~ZSz{$@q|A-~%i&I(HcB9C*Pv^ea%3st{0Y9Mmvd4+CrwZW${{E;qV}`Nvsu^8 zJ94&@Q((*C6+Xhn!n)3_pXgsFK@UwyopZ?T0`xCZ2{qE7wBpq~RnFxe&{4aMv>VGH zay*IziLzNm!)AD{;I>(ml_;`E6j@{rGHMLZLoni0RdHxJZkQW}mPC3cOKvc`>tL$F zx(cY(2C@^-6-jimT7m9_Xydq0cpzeRW9qQc3VIRc$3i!A6D`PgqcT7nHmc0wUo2SY ze6IVu&^$vTBfu((tRAZpzxjb8U*koNV&zKP2H{10yC1ax{Xp?!C$fCQO}G$xQUZA@ zD)|y+&;vJc7ss6rpNr0wLp+#>f;`?>R8o*VvBdnCwv;h9w0K5044$)VhLo#XPMMec zUHL4_YLcWg^e}pGq6+=C3OYJU^321t33uRe0H^TLCIc=4rE^y66pLAu}D@%i`-4vWJF3sag-zGC#|EyxLzq%b;2E^6%-3D^DQa!PGp&}nPo+=({YJk^0I^o zfiwtI!gmTg#qOm1PASHBI2fP8l$Y1-*`-c^&^7|>n2lj^!#&(iV9*sAF6zpL(%6u7 z#a-{6>3q9W=OqiJDDUdpuFZfDO=(bubtNR27=T@=`k{dVZ>%C9L`|H+CyyG)DUGKB z-j;EPP*Hy9o;38;9M`6%@&%sO3b}GR>z*0g4~BI<3t-Y6K^9hGEik7W>9U@7k7b{I zo>YQ)aCmgpagWTfQ92;c3Srm>=RsK-#PnW!3~d7lFIijV*A=f%ma<9McnGy{7D!cN zg%YQAQTB(bvA#~@oiz12V!Ljri9qr7E^(_Yr>Z)V4kf6wjC(04XfoxWGKpv6fPt`vFHVjHTH@5x(s8gX^R$H87*a##N!`BhE zpd@LMlSiH#Wmi@DYltHtwapjb1QLfdaZswXw-yO#nPzTPFS=s(;&^ooVT2w6fka=a zKfE+A7dhAVYg=cSI<0otL;MdeuAb&e`y{%3mep+C=KNK&?^fcZhG5$hn`5Ukm+~4D z<`KrN+1Z5&S=6yXHY>dxsX96Pm&&O9#dCrPKF7= - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +ЗапазенаМарка (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + Медиа Инфо_За - - Check for new version - + + Go to WebSite + Към Уебсайта - + + CheckNewVersion + ПровериНоваВерсия + + + Donate - + Дари - - Write mail to author - + + WriteMe + ПишетеМи - + Translator : Zen - + Преводач : ERa - + OK - + Да - + About - + За EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + ЦялосноИме Export - - Choose your desired export format - + + Choose export format + Избери формат за експортиране - - Format: - + + Format + Формат - - Profile: - + + Profile + - + Advanced mode - + Разширен режим + + + + File_Append + ФайлДобавка - - Append to the existing file - + + Export + Експортиране - - + + Text - + Текст - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Преглед - + Help - + Помощ - + Options - + Опций - + File - + Файл - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + За - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Излез - + Ctrl+Q - + - + Known formats - + Познати Формати - + Known codecs - + Познати кодеци - + Known parameters - + Познати Параметри - + English - + - + Français - + - + Preferences - + Настройки - + Ctrl+P - + - + Export - + Експортиране - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Разширен режим - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Формат - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Настрой - + 0 - + - + Advanced - + Разширен - + 1 - + - + Customize - + Нагласи - + Sheet - + Формуляр - + 2 - + - + Tree & Text - + Дърво и Текст - + 3 - + - + Custom - + Потребителски - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Изходящ Формат - - 11 - + + Language + Език - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Най-новата версия - - 16 - + + Shell extension + Шел екстенция - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Шел ИнфоИнфо - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Затвори всичко преди да отвориш - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Показ меню - + Show toolbar - + Показ инструментибар - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Избери потребителски формуляр - - - + + + Delete - + Премахни - - - + + + Edit - + Преработи - - - + + + New - + Нов - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Избери потребителски текст - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Настройки - + File Name - + QObject - + Easy - + - + Sheet - + Формуляр - + Tree - + Дърво - + Text - + Текст - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Потребителски - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Уеб - + no selection - + - + Summary - + Обобщение editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/ca.qm b/Source/Resource/Translations/ca.qm index be651eede2edc9cb0da5c140b31664afee169fa8..d596516266e75ee6050f20ef65a434aa51864562 100644 GIT binary patch literal 6526 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 P;EK2o>@-d_H#PkiEbA2E literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/ca.ts b/Source/Resource/Translations/ca.ts index 7e258c080..7c4ad21ff 100644 --- a/Source/Resource/Translations/ca.ts +++ b/Source/Resource/Translations/ca.ts @@ -1,1009 +1,1010 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +Drets d'autor (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + MediaInfo proporciona informació tècnica d'arxius de vídeo i àudio. +Excepte la interfaç gràfica a la Mac App Store, és de codi obert, el que significa que és gratuït per als usuaris i els desenvolupadors tenen accés lliure per a estudiar-lo, millorar-lo i redistribuir-lo (llicència BSD) - - Check for new version - + + Go to WebSite + Vés al lloc web - + + CheckNewVersion + Cercar una nova versió + + + Donate - + Donació - - Write mail to author - + + WriteMe + Escriu un correu a l'autor - + Translator : Zen - + Traductor : Sergi Medina - + OK - + D'acord - + About - + Quant a... EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Nom complet Export - - Choose your desired export format - + + Choose export format + Tria el format a exportar - - Format: - + + Format + Format - - Profile: - + + Profile + - + Advanced mode - + Mode avançat + + + + File_Append + Annexar a l'arxiu existent (atenció: tingues cura. Han de ser els mateixos paràmetres) - - Append to the existing file - + + Export + Exporta - - + + Text - + Text - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Visualitza - + Help - + Ajuda - + Options - + Opcions - + File - + Arxiu - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Quant a... - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Surt - + Ctrl+Q - + - + Known formats - + Formats coneguts - + Known codecs - + Còdecs coneguts - + Known parameters - + Paràmetres coneguts - + English - + - + Français - + - + Preferences - + Preferències - + Ctrl+P - + - + Export - + Exporta - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Mode avançat - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Format - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Configura - + 0 - + - + Advanced - + Avançat - + 1 - + - + Customize - + Personalitza - + Sheet - + Fulla - + 2 - + - + Tree & Text - + Arbre i text - + 3 - + - + Custom - + Personalitzat - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Format de sortida - - 11 - + + Language + Idioma - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Cerca actualitzacions (requereix connexió a Internet) - - 16 - + + Shell extension + Extensió Explorer (a Windows, clic dret a un arxiu mostrarà la opció MediaInfo) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Consells Explorer (a Windows, mou el ratolí sobre un arxiu per mostrar info) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Tanca tot abans d'obrir - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Mostra el menú - + Show toolbar - + Mostra la barra d'eines - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Tria les etiquetes desitjades - - - + + + Delete - + Esborra - - - + + + Edit - + Edita - - - + + + New - + Nou - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Tria el text personal - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Preferències - + File Name - + QObject - + Easy - + - + Sheet - + Fulla - + Tree - + Arbre - + Text - + Text - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Personalitzat - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Resum editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/cs.qm b/Source/Resource/Translations/cs.qm index be651eede2edc9cb0da5c140b31664afee169fa8..74cfd0a0888413922922d28bdd48788a73919827 100644 GIT binary patch literal 6468 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 EUlxB41ONa4 literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/cs.ts b/Source/Resource/Translations/cs.ts index 7e258c080..bccdc1588 100644 --- a/Source/Resource/Translations/cs.ts +++ b/Source/Resource/Translations/cs.ts @@ -1,14 +1,20 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Supply very detailled information about a multimedia file: Matroska, OGG (including OGM) MPEG1 (including VCD) @@ -18,992 +24,996 @@ Quicktime RealMedia WindowsMedia (including WMV, WMA) Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Web programu - - Check for new version - + + CheckNewVersion + Zkontrolovat novou verzi - + Donate - + Zaslat finanční dar - - Write mail to author - + + WriteMe + Napiš autorovi - + Translator : Zen - + Přeložil : Heavy - + OK - + OK - + About - + O programu EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Celý název a cesta Export - - Choose your desired export format - + + Choose export format + Vyberte požadovaný exportní formát - - Format: - + + Format + Formát - - Profile: - + + Profile + - + Advanced mode - + Více detailů + + + + File_Append + Append to the existing file (Warning : be careful to have the same parameters) - - Append to the existing file - + + Export + Exportovat - - + + Text - + Text - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Zobrazit - + Help - + Nápověda - + Options - + Nastavení - + File - + Soubor - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + O programu - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Konec - + Ctrl+Q - + - + Known formats - + Známé formáty - + Known codecs - + Známé kodeky - + Known parameters - + Známé parametry - + English - + - + Français - + - + Preferences - + Předvolby - + Ctrl+P - + - + Export - + Exportovat - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Více detailů - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formát - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Hlavní - + 0 - + - + Advanced - + Pokročilé - + 1 - + - + Customize - + Přizpůsobit - + Sheet - + List - + 2 - + - + Tree & Text - + Tree & Text - + 3 - + - + Custom - + Vlastní - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Zobrazit jako - - 11 - + + Language + Jazyk - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Při spuštění kontrolovat nové verze - - 16 - + + Shell extension + Integrovat do kontextového menu Průzkumníka (pravé tlačítko myši) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Integrovat do kontextového menu (při najetí myši na soubor) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Zavřít vše před otevřením nového - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Zobrazit menu - + Show toolbar - + Zobrazit nástrojovou lištu - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Vyberte požadovaný formát zobrazení - - - + + + Delete - + Odstranit - - - + + + Edit - + Upravit - - - + + + New - + Nový - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Vyberte vlastní nastavení textu - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Předvolby - + File Name - + QObject - + Easy - + - + Sheet - + List - + Tree - + Strom - + Text - + Text - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Vlastní - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Summary editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/da.qm b/Source/Resource/Translations/da.qm index be651eede2edc9cb0da5c140b31664afee169fa8..b6d7ed6fa89aaedc2850818795dd66a5aaa9bf13 100644 GIT binary patch literal 6388 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 - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Leverer meget detaljeret information +om en multimediefil: +Matroska, Ogg (inklusive OGM) +MPEG1 (inklusive VCD) +MPEG2 (inklusive DVD og SVCD) +MPEG4 (inklusive Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (inklusive WMV, WMA)\r\Microsoft RIFF (inklusive AVI, WAV) +Rene lydformater (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Gå til websted - - Check for new version - + + CheckNewVersion + Tjek for ny version - + Donate - + Donér - - Write mail to author - + + WriteMe + Skriv e-mail til programmøren - + Translator : Zen - + Oversætter : Joergen - + OK - + OK - + About - + Om EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Fulde navn Export - - Choose your desired export format - + + Choose export format + Vælg det ønskede eksportformat - - Format: - + + Format + Format - - Profile: - + + Profile + - + Advanced mode - + Avanceret tilstand + + + + File_Append + Tilføj til eksisterende fil (Advarsel: vær opmærksom på at have sammeparametre) - - Append to the existing file - + + Export + Eksporter - - + + Text - + Tekst - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Vis - + Help - + Hjælp - + Options - + Indstillinger - + File - + Fil - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Om - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Afslut - + Ctrl+Q - + - + Known formats - + Kendte formater - + Known codecs - + Kendte codecs - + Known parameters - + Kendte parametre - + English - + - + Français - + - + Preferences - + Præferencer - + Ctrl+P - + - + Export - + Eksporter - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Avanceret tilstand - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Format - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Opsætning - + 0 - + - + Advanced - + Avanceret - + 1 - + - + Customize - + Tilpas - + Sheet - + Ark - + 2 - + - + Tree & Text - + Træstruktur & tekst - + 3 - + - + Custom - + Tilpas - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Output-format - - 11 - + + Language + Sprog - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Tjek for nyeste version (kræver internetforbindelse) - - 16 - + + Shell extension + Shell-udvidelse ( højreklik viser MediaInfo i stifinder) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Shell-infotip (bevæg musen over filen i stifinder og info vises) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Luk alle før åbning - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Vis menu - + Show toolbar - + Vis værktøjslinje - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Vælg tilpasset ark - - - + + + Delete - + Slet - - - + + + Edit - + Rediger - - - + + + New - + Ny - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Vælg den ønskede tilpassede tekst - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Præferencer - + File Name - + QObject - + Easy - + - + Sheet - + Ark - + Tree - + Træstruktur - + Text - + Tekst - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Tilpas - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Sammendrag editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/de.qm b/Source/Resource/Translations/de.qm index be651eede2edc9cb0da5c140b31664afee169fa8..2fd1b787af548bccd09b4a5e74dc63596bb4a23a 100644 GIT binary patch literal 6910 zcmb_gYit}>6+X7d>-G9c;>1x@qG_6>4$8wZZ4+Exn_W9`s02z$R0xz5kSd@Q1VsFR3Zz2%DYk+ge)a;;AFyEo<2#`^6v1|GuL3(2ReUn?H`cyuaOV_sRX=F zMV@=)66DN8zW=BT|9v8IaokMKVvpQIe}s=&{o<*5sE>`A}xcJ3E&)9=rn|<+p&(&Fg_!+Q~nyE zJMqj{F$x+1Rd-2iGTjX9dxRz_;#ur{36VC92`gjk3tRU@Vs>%aF|#>WABt_)M}~(- zc8&~>+^Nf5QAZfNEaB=i(Ibc`EDMhyxC|Bk=GzJ~u~<0&k*%$iG<+P6q648v#C!?`o8AoPg=4UbwtIo!=LPj;QpVxa&oMhjOGs|)SyyJ` zs)yMGzz5A$d0K08=|C)J+a;k3$w1H8PQj3cq?YCSI%t)0YC$S{*{ii=UxKmO5S>+Ee2BCNv&sp$MGffN_y>-q!X5j#11t!iMP} z4p@RFy?xrjWMZ;;TN2VPk?U_uilrvctkeob5{7BbnO53f{6BWsrFN zC=^BL=XEX~dB=3oMGqQC#ceHTy=qUw_F>nkTv3~-x(+)cBOHO`8i>>@GZwp&vxy(n z+N>!Sg9IK1K^&)*8JSao$dK5+#x3 zJx-NNu3gYe+&}~hlnWGy+W=;CGm&^-68lhKR^2MBsTYks8z|X5mE)*-t^zo{3LY8A z#B#Cnz8O>{;K1WI_2WeC!Ce>2bC+V|^ZL9%P7=C}njOe~vrJ1X8o={;C??Guh|`bA zv}AHGL9kk3Iu(`qpsXcLq0)=t?X8L~wPc~V;07^}**;VQHNfyN#VrmWGM?SOA8j@f8AHJ0RncyH`G#>Q=+Q%g}gC2&5Z=4i@||U&$Ff`4te4LIy_> zPs{j)VDUULFlHI^d7+Pw7m6aQ7xU$;8GJ@oZdaSU){EN4H$}I<=-zQVa1|nd7f!`PV+}>9=&s$vjwolbIc;-32Q+A&PVU+^|o;w5^ zpFEBYr>`3WbxR=Ew)69b6Nt49NsxnrYZlk9vb;`HSH9bTT$a{iwb$*t`5CL*9&S=xt7=@gZ^Mnu=NU|6gR$xB=r+lF z^%6|awT - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Liefert sehr detaillierte Informationen +über Multimedia-Dateien: +Matroska, OGG (einschließlich OGM) +MPEG1 (einschließlich VCD) +MPEG2 (einschließlich DVD and SVCD) +MPEG4 (einschließlich Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (einschließlich WMV, WMA) +Microsoft RIFF (einschließlich AVI, WAV) +Audio-Formate (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Zur Webseite gehen - - Check for new version - + + CheckNewVersion + Auf neue Version überprüfen - + Donate - + MediaInfo unterstützen - - Write mail to author - + + WriteMe + Mail an den Autor - + Translator : Zen - + Übersetzer : scholly - + OK - + OK - + About - + Über EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Vollständiger Name Export - - Choose your desired export format - + + Choose export format + Gewünschtes Exportformat auswählen - - Format: - + + Format + Format - - Profile: - + + Profile + - + Advanced mode - + Erweiterter Modus + + + + File_Append + An eine existierende Datei anhängen (Warnung! Auf gleiche Parameter achten!) - - Append to the existing file - + + Export + Exportieren - - + + Text - + Text - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Ansicht - + Help - + Hilfe - + Options - + Optionen - + File - + Datei - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Über - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Beenden - + Ctrl+Q - + - + Known formats - + Bekannte Formate - + Known codecs - + Bekannte Codecs - + Known parameters - + Bekannte Parameter - + English - + - + Français - + - + Preferences - + Voreinstellungen - + Ctrl+P - + - + Export - + Exportieren - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Erweiterter Modus - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Format - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Setup - + 0 - + - + Advanced - + Erweitert - + 1 - + - + Customize - + Anpassen - + Sheet - + Tabelle - + 2 - + - + Tree & Text - + Baumstruktur & Text - + 3 - + - + Custom - + Benutzerdefiniert - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Ausgabeformat - - 11 - + + Language + Sprache - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Auf neuere Version überprüfen (benötigt Internet-Verbindung) - - 16 - + + Shell extension + Shell-Erweiterung (bei Rechtsklick im Explorer erscheint ein Media Info Eintrag...) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Shell InfoTip (bewege den Mauszeiger im Explorer über eine Datei und Infos werden angezeigt) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Vor dem Öffnen alle anderen schließen - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Menü anzeigen - + Show toolbar - + Toolbar anzeigen - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Gewünschte benutzerdefinierte Tabelle auswählen - - - + + + Delete - + Löschen - - - + + + Edit - + Bearbeiten - - - + + + New - + Neu - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Gewünschtes benutzerdefiniertes Textformat auswählen - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Voreinstellungen - + File Name - + QObject - + Easy - + - + Sheet - + Tabelle - + Tree - + Baumstruktur - + Text - + Text - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Benutzerdefiniert - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Internet - + no selection - + - + Summary - + Zusammenfassung editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/en.qm b/Source/Resource/Translations/en.qm index 89a46800a44b8eef2b29132d48537520fe581c2a..ec8e99596bd136b7d76429549a9e0429716a668b 100644 GIT binary patch delta 1843 zcma)6Yitx%6h1qh-JNcCyM67nR%y1BN7ojxKol@wmOcOji`vqL9|fno)9$ppGt16w zDbiSs{wU%P^nyn42LwonB_#3^NiJyu@MS~<>fRz@K z_}x_4_es3`1d(@%V`UeKH=ZKOe}>!#?!d1*R&FEr@uR>QB=-g2`VLZPp$`0QR24iz zR5DagHM8~-`A^W2cSni;+19(AV#7%QO>%6p=-ALj>d0#%D%e4*zdZqfBeeQD?v-3~ ztQ?^?$IlZ5_Rzi?aU{Gnd{XPH~;(?J)Si!NO{o=8u@YA4p zp?@3VU5=HK;zb5r&uzy_qwb!~W$5-+_tB5<&=C16Jpvs8<2jypkuN z`4lIlJGR6u-1?!47M=_~cj^4>0(r&5*p<{s2Bj%ODN@P87bcw)c+`o6{zfC6NvW0^Q_}YR{N{vawI)@S zed1rr(t+jPvc{xgm?}FLsA566I^by@$QW6N{s&A5JRJjWEp-4n3w#Y<4?GL-b=f)N z_K8Z}lmnA6m>BqIvSO`w94|g{_lI zy`B~$n^r7l7020F=~Q-GtYTZr7O|UtiLI(EVpl?QWr><;0Q{^8WU+ZbW4q-L>S|!e zH~S6pHZmHlkTq{!hP z!oRv$Rn7C>(tEudtm*ZZ+*|)ubCcCgoz3n}UmOfJX=Wy+Y-m(6mS*T|Q?<;JGuq0_ zAM~4RAyZn>+0_~HJ2Mtk{Kv6wsk+5ps}8Y0roCJ)KYYK{%Bo7*KJT42%+61r#n#o% zV=qM_u3q-}Gm#;y=L$J)v6Hlu9{Z3 zUqyFN5C|1i(n?@jXl9P>3OrUASedgjIV;@lNX9w)o{X~Xb!&!>+Y<4CHEar5By7Xl zfQKi`*fjZwg)wm4CUCYMqZ5AQW<7jqoIW^Y+>=8*A2{cX=eRe5FJeYD`?c`P9KIVt zVI<&QJ`m1CC$Kl|ccstsT7bak!q6tM=N&PMM%9LtWF*Crv VY-nX?=WJx(&u#Y(;{^&X*FQ#t#{U2S literal 13788 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 Iw{G4409(N7nE(I) diff --git a/Source/Resource/Translations/en.ts b/Source/Resource/Translations/en.ts index de3c6f285..56c154b68 100644 --- a/Source/Resource/Translations/en.ts +++ b/Source/Resource/Translations/en.ts @@ -1,62 +1,54 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -MediaInfo provides easy access to technical and tag information about video and audio files. + + + + + MediaInfo_About + MediaInfo provides easy access to technical and tag information about video and audio files. Except the Mac App Store graphical user interface, it is open-source software, which means that it is free of charge to the end user and developers have freedom to study, to improve and to redistribute the program (BSD license) - - Go to website + + Go to WebSite Go to website - - Check for new version + + CheckNewVersion Check for new version - + Donate Donate - - Write mail to author + + WriteMe Write mail to author - + Translator : Zen Translator : Zen - + OK OK - + About About @@ -64,936 +56,935 @@ Except the Mac App Store graphical user interface, it is open-source software, w EditCustom - + Form - Form + - + name - + - + index - + - + Insert : - Insert : + - + Insert - Insert + EditSheet - + Dialog - Dialog + - + Name : - Name : + - + 0 - + - + + - + - + Adapt columns to content - Adapt columns to content + - + CompleteName - + Complete name Export - - Choose your desired export format + + Choose export format Choose your desired export format - - Format: - Format: + + Format + Format - - Profile: - Profile: + + Profile + - + Advanced mode Advanced mode - - Append to the existing file - Append to the existing file + + File_Append + Append to the existing file (Warning : be careful to have the same parameters) - - + + Export + Export + + + + Text Text - - + + Graph Graph - + HTML HTML - + XML - XML + - + JSON - JSON + - + PBCore - PBCore + - + PBCore 2 - PBCore 2 + - + MPEG-7 (strict) - MPEG-7 (strict) + - + MPEG-7 (relaxed) - MPEG-7 (relaxed) + - + MPEG-7 (extended) - MPEG-7 (extended) + - + EBUCore 1.5 - EBUCore 1.5 + - + EBUCore 1.6 - EBUCore 1.6 + - + EBUCore 1.8 parameter then segment - EBUCore 1.8 parameter then segment + - + EBUCore 1.8 segment then parameter - EBUCore 1.8 segment then parameter + - + EBUCore 1.8 parameter then segment (JSON output) - EBUCore 1.8 parameter then segment (JSON output) + - + EBUCore 1.8 segment then parameter (JSON output) - EBUCore 1.8 segment then parameter (JSON output) + - + FIMS 1.1 - FIMS 1.1 + - + FIMS 1.2 - FIMS 1.2 + - + FIMS 1.3 - FIMS 1.3 + - + NISO Z39.87 - FIMS 1.3 + - + Save File - Save File + - + %1 files (*.%2) - %1 files (*.%2) + MainWindow - - + + View View - + Help Help - + Options Options - + File File - + toolBar - Toolbar + - - + + Open File(s) - Open File(s) + - + Ctrl+O - + - + About About - + F1 - + - - + + Open Folder - Open Folder + - - Quit - Quit + + Exit + Exit - + Ctrl+Q - + - + Known formats Known formats - + Known codecs Known codecs - + Known parameters Known parameters - + English - + - + Français - + - + Preferences Preferences - + Ctrl+P - + - + Export Export - + Export in a customized format - Export in a customized format + - - Advanced Mode + + Advanced mode Advanced mode - - Full parse - Full parse + + FullParsing + Full parsing - - reset columns sizes - Reset columns sizes + + Reset columns sizes + - - adapt columns to content - Adapt columns to content + + Adapt columns to content + - + Close All - Close All + - + Ctrl+Shift+W - + + Trace - Trace - - - - view - + - + Update to new version - Update to new version + - + Icon size - Icon size + - + Text position - Text position + - + Icons only - Icons only + - + Text only - Text only + - + Text under icons - Text under icons + - + Text beside icons - Text beside icons + - - + + Default Default - + Small - Small + - + Medium - Medium + - + Big - Big + - + Huge - Huge + - + Opening files... - Opening files... + - + Abort Opening - Abort Opening + - + You must at least open 1 file. Open a file or a directory. - You must at least open 1 file. -Open a file or a directory. + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - You must at least open 1 file. -Open a file or a directory, or simply drag and drop files in the window. + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - File Name + - + Format Format - + Video Codec List - Video Codec List + - + Audio Codec List - Audio Codec List + - + Text Codec List - Text Codec List + - + Video Format - Video Format + - + Audio Duration - Audio Duration + - + Text Width - Text Width + Preferences - + name - + - + widget index - + - + Setup Setup - + 0 - + - + Advanced Advanced - + 1 - + - + Customize Customize - + Sheet Sheet - + 2 - + - + Tree & Text Tree & Text - + 3 - + - + Custom Custom - + 4 - + - + Graph Graph - + 5 - + - - Open each item in a separate instance - Open each item in a separate instance + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - Shell extension + + 10 + - - Check for new versions - Check for new versions + + 11 + - - Default View - Default View + + 12 + - - Monospaced font - Monospaced font + + 14 + - - Language - Language + + 16 + - - Monospaced font size - Monospaced font size + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Output format - - 11 - + + Language + Language - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Check for new versions (requires Internet connection) - - 16 - + + Shell extension + Explorer extension (in Windows Explorer, right click on a file, there will be a MediaInfo option) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Explorer Tooltip (in Windows Explorer, move the mouse over the file, info will be displayed) - + Remember its position - Remember its position + - + Remember Window Geometry - Remember Window Geometry + - + Add creation date to text output Add creation date to text output - + Close all before open Close all before open - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) + - + Show menu Show menu - + Show toolbar Show toolbar - - When content is detected + + DisplayCaptions_Content When content is detected - - When content or a command is detected + + DisplayCaptions_Command When content or a command is detected - - Even when no content or command is detected + + DisplayCaptions_Stream Even when no content or command is detected - - Handling of 608/708 streams: + + DisplayCaptions Handling of 608/708 streams: - + Add version to text output Add version to text output - + Enable FFmpeg plugin Enable FFmpeg plugin - - Choose your desired custom sheet + + Choose custom sheet Choose your desired custom sheet - - - + + + Delete Delete - - - + + + Edit Edit - - - + + + New New - + Select your desired configuration - Select your desired configuration + - - Choose your desired custom text + + Choose custom text Choose your desired custom text - + ADM: Show ChannelFormats ADM: Show ChannelFormats - + ADM: Show TrackUIDs ADM: Show TrackUIDs - + Preferences Preferences - + File Name - File Name + QObject - + Easy - Easy + - + Sheet Sheet - + Tree Tree - + Text Text - + HTML HTML - + XML - XML + - + JSON - JSON + - + Graph Graph - + PBCore 1.2 - PBCore 2 + - + PBCore 2.0 - PBCore 2 + - + MPEG-7 (strict) - MPEG-7 (strict) + - + MPEG-7 (relaxed) - MPEG-7 (relaxed) + - + MPEG-7 (extended) - MPEG-7 (extended) + - + EBUCore 1.5 - EBUCore 1.5 + - + EBUCore 1.6 - EBUCore 1.6 + - + EBUCore 1.8 parameter then segment - EBUCore 1.8 parameter then segment + - + EBUCore 1.8 segment then parameter - EBUCore 1.8 segment then parameter + - + EBUCore 1.8 parameter then segment (JSON output) - EBUCore 1.8 parameter then segment (JSON output) + - + EBUCore 1.8 segment then parameter (JSON output) - EBUCore 1.8 segment then parameter (JSON output) + - + FIMS 1.1 - FIMS 1.1 + - + FIMS 1.2 - FIMS 1.2 + - + FIMS 1.3 - FIMS 1.3 + - + NISO Z39.87 - NISO Z39.87 + - + Custom Custom - + Unknown view - Unknown view + SheetView - + Frame - Frame + - + filename - + - + Web Web - + no selection - + - + Summary Summary @@ -1001,19 +992,19 @@ Open a file or a directory, or simply drag and drop files in the window. editConfigTreeText - + Dialog - Dialog + - + Page 1 - Page 1 + - + Page 2 - Page 2 + - + \ No newline at end of file diff --git a/Source/Resource/Translations/es.qm b/Source/Resource/Translations/es.qm index be651eede2edc9cb0da5c140b31664afee169fa8..62c464e8c6e33c917e58075ed74a1eae47669e18 100644 GIT binary patch literal 6690 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 Uhpzo>-GUF+bzlzztGTJ^zs|2T6#xJL literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/es.ts b/Source/Resource/Translations/es.ts index 7e258c080..102609d2e 100644 --- a/Source/Resource/Translations/es.ts +++ b/Source/Resource/Translations/es.ts @@ -1,1009 +1,1010 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +Derechos de copia (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + MediaInfo muestra información detallada de archivos multimedia: +Excepto la interfaz gráfica de la Mac App Store, es software libre, lo que significa que es gratis para los usuarios y los desarrolladores tienen libertad para estudiar, mejorar y redistribuir el programa (licencia BSD) - - Check for new version - + + Go to WebSite + Ir al sitio web - + + CheckNewVersion + Comprobar si hay actualizaciones + + + Donate - + Donación - - Write mail to author - + + WriteMe + Escribir un mail al autor - + Translator : Zen - + Traductor : Sergi Medina - + OK - + Aceptar - + About - + Acerca de EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Nombre completo Export - - Choose your desired export format - + + Choose export format + Elige tu formato de exportación - - Format: - + + Format + Formato - - Profile: - + + Profile + - + Advanced mode - + Modo avanzado + + + + File_Append + Añadir a un archivo existente (advertencia: asegúrate de tener los mismos parámetros) - - Append to the existing file - + + Export + Exportar - - + + Text - + Texto - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Ver - + Help - + Ayuda - + Options - + Opciones - + File - + Archivo - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Acerca de - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Salir - + Ctrl+Q - + - + Known formats - + Formatos conocidos - + Known codecs - + Códecs conocidos - + Known parameters - + Parámetros conocidos - + English - + - + Français - + - + Preferences - + Preferencias - + Ctrl+P - + - + Export - + Exportar - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Modo avanzado - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formato - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Configurar - + 0 - + - + Advanced - + Avanzado - + 1 - + - + Customize - + Personalizar - + Sheet - + Hoja - + 2 - + - + Tree & Text - + Árbol de texto - + 3 - + - + Custom - + Personalizado - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Formato de salida - - 11 - + + Language + Idioma - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Buscar nuevas versiones (requiere conexión a Internet) - - 16 - + + Shell extension + Extensión explorador (opción en el clic derecho de archivo en el explorador de Windows) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Ayuda explorador (en el explorador de Windows, mueve el ratón sobre el archivo y la info se mostrará) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Cerrar todo antes de abrir - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Mostrar menú - + Show toolbar - + Mostrar barra de herramientas - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Elige tu hoja personalizada - - - + + + Delete - + Eliminar - - - + + + Edit - + Editar - - - + + + New - + Nuevo - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Elige tu texto personalizado - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Preferencias - + File Name - + QObject - + Easy - + - + Sheet - + Hoja - + Tree - + Árbol - + Text - + Texto - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Personalizado - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Sumario editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/eu.qm b/Source/Resource/Translations/eu.qm index be651eede2edc9cb0da5c140b31664afee169fa8..f39e4132b7a3f17d24cb8a555c3419f6a8dedc15 100644 GIT binary patch literal 6720 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 literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/eu.ts b/Source/Resource/Translations/eu.ts index 7e258c080..f7da759c0 100644 --- a/Source/Resource/Translations/eu.ts +++ b/Source/Resource/Translations/eu.ts @@ -1,1009 +1,1010 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +Copyrighta (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + MediaInfo-k sarbide erraza eskaintzen du bideo eta audio agirien argibide teknikoetara eta etiketara. +Software askea da, honek esanahi du dohainekoa dela erabiltzaileentzat eta garatzaileek askatasuna dutela ikertzeko, hobetzeko eta programa birbanatzeko (BSD baimena) - - Check for new version - + + Go to WebSite + Joan webgunera - + + CheckNewVersion + Egiaztatu bertsio berririk dagoen + + + Donate - + Eman dirulaguntza bat - - Write mail to author - + + WriteMe + Idatzi post@ egileari - + Translator : Zen - + Itzultzailea : Xabier Aramendi - + OK - + Ongi - + About - + Honi buruz EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Izen osoa Export - - Choose your desired export format - + + Choose export format + Hautatu gogoko duzun esportazio heuskarria - - Format: - + + Format + Heuskarria - - Profile: - + + Profile + - + Advanced mode - + Modu aurreratua + + + + File_Append + Gehitu dagoen agiriari (Kontuz : zaindu parametroak berdinak izatea) - - Append to the existing file - + + Export + Esportatu - - + + Text - + Idazkia - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Ikusi - + Help - + Laguntza - + Options - + Aukerak - + File - + Agiria - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Honi buruz - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Irten - + Ctrl+Q - + - + Known formats - + Ezagutu heuskarriak - + Known codecs - + Ezagutu kodekak - + Known parameters - + Ezagutu parametroak - + English - + - + Français - + - + Preferences - + Hobespenak - + Ctrl+P - + - + Export - + Esportatu - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Modu aurreratua - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Heuskarria - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Ezarpena - + 0 - + - + Advanced - + Aurreratua - + 1 - + - + Customize - + Norbereratu - + Sheet - + Orria - + 2 - + - + Tree & Text - + Zuhaitza eta Idazkia - + 3 - + - + Custom - + Egilea - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Irteera heuskarria - - 11 - + + Language + Hizkuntza - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Egiaztatu bertsio berririk dagoen (beharrezkoa Internet elkarketa) - - 16 - + + Shell extension + Explorer hedapena (Windows Explorer, eskuin klikatu agiri bat, MediaInfo aukera bat egongo da) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Explorer Tresnaburua (Explorerrean, mugitu sagua agiriaren gainean, argibideak erakutsiko dira) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Itxi dena ireki aurretik - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Erakutsi menua - + Show toolbar - + Erakutsi tresnabarra - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Hautatu gogoko duzun egile orria - - - + + + Delete - + Ezabatu - - - + + + Edit - + Editatu - - - + + + New - + Berria - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Hautatu gogoko duzun egile idazkia - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Hobespenak - + File Name - + QObject - + Easy - + - + Sheet - + Orria - + Tree - + Zuhaitza - + Text - + Idazkia - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Egilea - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Webgunea - + no selection - + - + Summary - + Laburpena editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/fa.qm b/Source/Resource/Translations/fa.qm index be651eede2edc9cb0da5c140b31664afee169fa8..9cd3123f2d38ab1816b6eb02e973f480459737f0 100644 GIT binary patch literal 6159 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 literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/fa.ts b/Source/Resource/Translations/fa.ts index 7e258c080..6a82528ff 100644 --- a/Source/Resource/Translations/fa.ts +++ b/Source/Resource/Translations/fa.ts @@ -1,15 +1,21 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: + + MediaInfo v%1 +کپی رایت (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + اطلاعات جزیی +درباره فایل مولتی مدیا: Matroska, OGG (including OGM) MPEG1 (including VCD) MPEG2 (including DVD and SVCD) @@ -18,992 +24,996 @@ Quicktime RealMedia WindowsMedia (including WMV, WMA) Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + وب سایت - - Check for new version - + + CheckNewVersion + کنترل نسخه جدید - + Donate - + کمک مالی - - Write mail to author - + + WriteMe + نوشته برای نویسنده - + Translator : Zen - + مترجم : Martik Panosian - + OK - + موافق - + About - + درباره EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + نام کامل Export - - Choose your desired export format - + + Choose export format + فرمت خروجی را انتخاب کنید - - Format: - + + Format + فرمت - - Profile: - + + Profile + - + Advanced mode - + حالت پیشرفته + + + + File_Append + هشدار : از پارامترهای یکسان استفاده نکنید - - Append to the existing file - + + Export + خارج سازی - - + + Text - + استریم متن - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + نمایش - + Help - + راهنمایی - + Options - + تنظیمات - + File - + فایل - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + درباره - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + خروج - + Ctrl+Q - + - + Known formats - + فرمت مشخص - + Known codecs - + کدک مشخص - + Known parameters - + پارامتر مشخص - + English - + - + Français - + - + Preferences - + تنظیمات - + Ctrl+P - + - + Export - + خارج سازی - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + حالت پیشرفته - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + فرمت - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + نصب - + 0 - + - + Advanced - + پیشرفته - + 1 - + - + Customize - + شخصی سازی - + Sheet - + ورقه - + 2 - + - + Tree & Text - + درختی ومتنی - + 3 - + - + Custom - + دیگر - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + فرمت خروجی - - 11 - + + Language + زبان - - 12 - + + Monospaced font size + - - 14 - + + Newest version + کنترل برای نسخه جدید نیاز به اینترنت - - 16 - + + Shell extension + Shell extension (in Explorer, right click there will be a MediaInfo option) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Shell InfoTip (in Explorer, move the mouse over the file, info will be displayed) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + قبل از باز کردن ببند - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + نمایش منو - + Show toolbar - + نمایش نوارابزار - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + ورقه موردنظر را انتخاب کنید - - - + + + Delete - + حذف - - - + + + Edit - + ویرایش - - - + + + New - + جدید - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + متن موردنظر را انتخاب کنید - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + تنظیمات - + File Name - + QObject - + Easy - + - + Sheet - + ورقه - + Tree - + درختی - + Text - + استریم متن - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + دیگر - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + وب - + no selection - + - + Summary - + خلاصه editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/fr.qm b/Source/Resource/Translations/fr.qm index bc8ec749936cfcb070d5ca3b0c9f42167e48ce21..80d30505d1c8ea098ae83507b85caa203316227b 100644 GIT binary patch literal 7020 zcmbtYYm8K98Gd(nc6N65%Camg!REAtQ*%X8H?9AEO12c2R zGiMg4iT+R{t^8=b)Wn)tMS?-Wm~!uaedaZ;Qn4 z*X!V8(t7!M(0Ni?Z-H*d7iHCl^PoQ}_w-!CdQslD>DwaR!?Ne;s}M)@8k>;GGYg=9 zL$7^L>vi>OGTV|A>AWnD-nb&tzf&Il8}Rx+t=GZL^5pGbiS(?Hb8n@<@0z@xXcigx zbJH`$k3+{5&9US!M0)o%-)p9!*L$0X-|_JOyUlM7eO6@ko|bQJhP?8pmMbrR3;OJA zdG$E-iT)_E>Do=epN(92@EqV*L@t~^3OO(BInjoYf0`FUESCRzaUw||c?tC1)NAbXoo~EE zc@F7y<-fb1`ksaTkM(@yH=hCB&-J{NNFr|5+9L1i1f&ee6)~hBt~mI0q=?V+&U5#H4ldu;mtQCtt^SP{zdsnyW~X8Knh5pFlL}H zqqtenq28us6s>)rMNwR=7M_$9@H>HjY2cYchHMejjip2ogA#?;XfVC9ojVoHHq;F;9BY}{m6ZWjebk7=si#Qg}5n2 zC589oXyQwri+Iajh94>GAmp0_=+j>gp0yw8`82}Sfzjf!8(~Lk1<+XnOjd@lU-A7s zIB?g1TU*kwB0Cg^?B3Df)=G0 zX+s{8InX05LxvSDeUvYIY8Skal=Xi2_xRy|EG&0LWJ>n?z|B+pYl9vvX28e<`w|!g zhTD#vBV_C2_RhFwzL+&V$2GPaN38l}b)Q@Z1&Xf& z;Q3hitras-AiZd=lt zH%nP1aXn_YJPcSCGrB#9yU6ZSb|}KKLbZ|0IC%KQ%9kuc_tWC_2zT{;JpzlLPVJ`= zfIO%{(qM1~&g&R2WwQrObXfUJ80#1)sh|y{+-qeEVW4YNGsE~!smRy$IuC;uedNyl zdFN!_NFl|fieW_7R)_f=$#iKlI(>xFxvv}p^~W(xs9sI2V7f@19=gpi!Maf_*eR5I z8DFEese*^@G!$n5Lb%8`^Y}6!=sFcxqvN1!&0DU8v>S@w2jkECosH^GeZG;ywskU0 z(1Soq;v^fwI#o?TmrY$(wH+AcbdaIaJJTRr-fXQ8e3pZW-Ekh0_NL^!7azY+KW1aN5tqi!Kx~5J%vM(9V=m;3qW`Et4q;c@6V5R3^ z0bWw?s&l!9WtL{KVNa&J)Y=?pB+_Xkg$|j%Hqsa?*zkKud;0VS zN| zsVZ$p$CSB3sTs&RVODSK#@aO%`*Bru8XVmRu}VmKyb`dr?!I=>q{U`4RDcn5A9^&Y z95jYE&-y&VqlEUskcTkYZj(*&ey%>%o}^tYWX;oKW{^}H#M+^XG?P^tgeunzy1;SX zgk9dV^5LPk9SQue z%H+%d)QRS+PudK-N@@2s_Zbe<>o@Hof#pJ7)?1zqDsyHK#u1JYp*W++9ki)k&So5G zXm?H~B}}awu)|xKaeO$hSd#H&>))L>=dzYDKAtOB8KaObW$f^?vAkBc!C#%Y2cg+A z5GCk#Vh7B8retQqzYzks%qeBu-JdwtTYhN{U2|}cxS=R@-z5mE1i|a6|(-N)AhEDv8Q0yfNpKZNa5|9oQLQHMcbV2RXEQ_5c6? literal 6274 zcmcIoTWlOx8U7uwcb&1bNt4(LQK$}~ZfxN!_O^KmC1`EOb}nltS=VV=6&UZHwTH~k zY-eWexD^N$Br50&lm;PqX-HI|L%arl z^K62s?}yZL*Af?}UnMebC9Yh4oM@ZW*PYeG%d?lT|7zmx)$c>kspM&SAFk`k zr`RTaL&>N8pA!vyH~IAHRa_rS{vZuI^d^&+FV8`qo2j=_Dd62s{o(vKh_-h1&Rqq+ zd;H#W7cM})%I1r&KtAK^#-Ts?xPI37*2x;=NgC(BdN1(*YrOoO*Fk@&uiX20&_C7p z>pb+_dc8lj=Q&*e)_>!PUqZeE{kMJvy3}j^@4U)#ozd4FL+LH4i{STSdiygAMCoVK z-or0J?@apoTWO*#FKqq7O~|$R&lZgDf|3U51_`Q?M=t)m2ox@hp2t%ObSCkRGPx0_EiMvGaX9G#-$Ks7pr1uaB|H$3cT<&}eB z2!SW14pu5qF2FPUhF91OMM%XIPk>gcw`_J^XHV<5LU~tHuo?NTs8EWaVU8w#%ySiQ zd6grEk#*egn;h`jye{swKJ2IxBFu%31|3GEFj^Hj8`xvhKCFkXDuV;B3UK#uUsc$l zbO_}-MGh-f+!ui2VyAX2(~jb85tytaOR7W4#;#@XDdNXb%zQ0cQk0s45tt8KgKe@5 znZk_FD=a5dhR9mNK+!NKPB`|9)~N>Wyq|-Vy&>ysY%#W@Mq;{9JI*Y&Alpjk8YgkJ zPRT3mPo~hJt~Fr4XiGM%vw=6-3%ttuHP%c-$A*$i+l}RIP7j^mY*F?i+mK^=33xiq zh7~RQ$fc5!k_zs)wkom!j{rc)AyX!*hB zV%p)~w=L7Qr|rOO`eWN`x3JY`Qx42jv_?oX|A#DXkmV?eVYL+?qiU>v2j73Q~k1;ZIT{oVcPvj zC(pa@#E4wW(UGH+8U(gmPgoO$fJ<(XHX@O>q#iBQzA}=G)9T0ZWM`~m_~t!Bj9GGS+9dNHvn#S z6^Lfj?Upbwrfaq>s;1}10`&rjdt6i8%u2f&$8)zD6}TK1m1%T)bzmYt61e}E$8BzUC5*JbG*Yn zJgJ4Q)EHq7H)U8IIm~aikIrf?IJztF?7`gG{XB27_ADLyOedPemF>xM&2qg8a56T} zC5+4Srj{g}lUf5x>l{`bJt379@_WE$pJgHg$}?^a6NHaJA`rGTapQ6Tj;mQBW2gYq zgM~ozGeybrWD$LEeUzVltHM)C$upOQgNs{LbUxRrU`2{GH3np2JVf97zj%mk9eSbF zDxvkY_u@R%u*$)YZIxJ64=8{bK%$FphHp@G2V@O7&&W~Su(2u zs-a!0I6hAgMb`_ei*E?-S>v=p2MlR%&1}EP}|v^ zvpqC(`>CC^Y(2L($J^81Af& zP>#?3oCth?;&RhG^Yl;2vWYW;2y17DT6Z^oc98Ysq|Q}m8SEPUzxTN5EZ5BCc=5+z zK~4d#r95`<equHF^9iBMoA$GlfBxi*0j=>*MLiVY#!7 zCCc9&ys{Lv3|)};!+;qbZ~4%<(WDyJhQ@fvX3*`3(=$9;hDT6dQHPZ%K!#L}mS%B9 z;9ybFW1=s4Ji$4`a{Pd2zryTnMQpl@+ z0TFaRfEEDLdiv>G@T3&?i|`N>1M-ndLF(lE(pS((Rq5(iU;g-m3<_2xd*ZO^ud~}) z_TF7?wvc?l*|2Tj9S?^s`?euxC)Dt+PrKPjWaGrdr0YpBp2>Cy{^3;F%vcB2het?@ gXdifRZQB_+JrX~`PVNxlPG{T*?iu)KQ+L<@0Hr7j(f|Me diff --git a/Source/Resource/Translations/fr.ts b/Source/Resource/Translations/fr.ts index c9f874c23..bf93d161f 100644 --- a/Source/Resource/Translations/fr.ts +++ b/Source/Resource/Translations/fr.ts @@ -1,62 +1,54 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -MediaInfo fournit des informations techniques ainsi que les tags concernant vos fichiers Audio et Vidéo. -Excepté l'interface graphique de l'App Store Mac, c'est un logiciel libre, ce qui signifie qu'il est gratuit pour l'utilisateur final et que les développeurs ont la liberté de l'étudier, de l'améliorer et de le redistribuer (licence BSD) + - - Go to website + + MediaInfo_About + MediaInfo fournit des informations techniques ainsi que les tags concernant vos fichiers Audio et Vidéo. +Excepté l'interface graphique de l'App Store Mac, c'est un logiciel libre, ce qui signifie qu'il est gratuit pour l'utilisateur final et que les développeurs ont la liberté de l'étudier, de l'améliorer et de le redistribuer (licence BSD) + + + + Go to WebSite Visiter la page Internet de MediaInfo - - Check for new version - Vérifier si une nouvelle version existe + + CheckNewVersion + Vérifier si une nouvelle version existe. - + Donate Faire un don - - Write mail to author - Écrire à l'auteur + + WriteMe + Écrire à l'auteur - + Translator : Zen Traducteur : Zen - + OK OK - + About À propos de @@ -64,952 +56,955 @@ Excepté l'interface graphique de l'App Store Mac, c'est un logic EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Nom complet Export - - Choose your desired export format - + + Choose export format + Choisir le format d'exportation - - Format: - + + Format + Format - - Profile: - + + Profile + - + Advanced mode - + Mode avancé + + + + File_Append + Ajouter à un fichier déjà existant (Faites attention à ce que les paramètres soient identiques) - - Append to the existing file - + + Export + Exporter - - + + Text - Texte + Texte - - + + Graph - Graphique + Graphique - + HTML - HTML + HTML - + XML - XML + - + JSON - JSON + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View Affichage - + Help Aide - + Options Options - + File Fichier - + toolBar - Barre d'outils + - - + + Open File(s) - Ouvrir le(s) fichier(s) + - + Ctrl+O - + - + About À propos de - + F1 - + - - + + Open Folder - Ouvrir le dossier + - - Quit + + Exit Quitter - + Ctrl+Q - + - + Known formats Formats connus - + Known codecs Codecs connus - + Known parameters Paramètres connus - + English - + - + Français - + - + Preferences Préférences - + Ctrl+P - + - + Export Exporter - + Export in a customized format - Exporter dans un format personnalisé + - - Advanced Mode + + Advanced mode Mode avancé - - Full parse + + FullParsing Analyse complète - - reset columns sizes - Réinitialiser la taille des colonnes + + Reset columns sizes + - - adapt columns to content - Adapter les colonnes au contenu + + Adapt columns to content + - + Close All - Fermer tout + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Par défaut - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - Vous devez ouvrir au moins 1 fichier. -Ouvrir un fichier ou un répertoire. + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - Vous devez ouvrir au moins 1 fichier. -Ouvrez un fichier ou un répertoire, ou faites simplement glisser et déposez les fichiers dans la fenêtre. + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Format - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup Configuration - + 0 - + - + Advanced Avancé - + 1 - + - + Customize - Personnaliser + Personnalisation - + Sheet Tableau - + 2 - + - + Tree & Text Arbre & Texte - + 3 - + - + Custom - Personnalisée + Sortie personnalisée - + 4 - + - + Graph Graphique - + 5 - + - - Open each item in a separate instance - Ouvrir chaque élément dans une instance distincte + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - Extension du Shell + + 10 + - - Check for new versions - Vérifiez les nouvelles versions + + 11 + - - Default View - Affichage par défaut + + 12 + - - Monospaced font - Police à espacement fixe + + 14 + - - Language - Langue + + 16 + - - Monospaced font size - Taille de police à espacement fixe + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Format de sortie - - 11 - + + Language + Langue - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Vérifier s'il existe une nouvelle version - - 16 - + + Shell extension + Extension du Shell (le clic droit sur un fichier multimédia propose un choix 'Media Info') - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Bulle d'aide 'Explorateur' (survoller un fichier multimedia à la souris affichera toutes ses infos) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Ajouter la date de création à la sortie texte - + Close all before open - + Tout fermer avant d'ouvrir - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Afficher la barre des menus - + Show toolbar - + Afficher la barre d'outils - - When content is detected - + + DisplayCaptions_Content + Quand un contenu est détecté - - When content or a command is detected - + + DisplayCaptions_Command + Quand une commande est détectée - - Even when no content or command is detected - + + DisplayCaptions_Stream + Même sans contenu ou commande - - Handling of 608/708 streams: - + + DisplayCaptions + Gestion des flux 608/708 - + Add version to text output - + Indiquer la version de MediaInfo sur la sortie texte - + Enable FFmpeg plugin - + Activer le plug-in FFmpeg - - Choose your desired custom sheet - + + Choose custom sheet + Choisir le tableau à personnaliser - - - + + + Delete - + Supprimer - - - + + + Edit - + Modifier - - - + + + New - + Nouveau - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Choisir le texte à personnaliser - + ADM: Show ChannelFormats - + ADM : Afficher le contenu ChannelFormats - + ADM: Show TrackUIDs - + ADM : Afficher les TrackUID - + Preferences Préférences - + File Name - + QObject - + Easy - Facile + - + Sheet Tableau - + Tree Arbre - + Text Texte - + HTML HTML - + XML - XML + - + JSON - JSON + - + Graph Graphique - + PBCore 1.2 - PBCore 2 + - + PBCore 2.0 - PBCore 2 + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - Personnalisée + Sortie personnalisée - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Résumé editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/gl.qm b/Source/Resource/Translations/gl.qm index be651eede2edc9cb0da5c140b31664afee169fa8..0b48623c3ed9329c03135672a59ca3fc082cbf86 100644 GIT binary patch literal 6506 zcmbtYU2Ggz6+X7t>&@D+jT0xviqKRv!4YlZm=;3#>(*;0Cb6Byj;&M)>3H|ro@94s z*`2kMAXOmxP@oS;{EGG=RVg5nho(wPQTb_0szReSeW9W%MT+`TL<5477X*UuyVpCj zKVvr$8tvXYch3Jg_ndR@r=Q98z5KUFzVpg0TYi1tqrZIX$0E|akh>fIyG2?*B@+9n z$n;AhAD9$5_N2(Bw9a z6L4G1xanSLeda09c|cmPfNt_Z>HUlg`e)=rT^B`qlJeo5KNRWszU=+(C5R(tY#Wh@ z2NyyAvKhPIF=Ou^Wws?P(q5D!m!AXv59G*SfY)5E1NK)?OXiS%zoI=|9J#EoXN@UinGOb1yz7 zvd(IG`2_T7{da8VORoU_wb=RF9tZqn?EJZ7;Pa{(d(Xz6-iLMha_q{|w*i0IjETP3 z>)!(1_#~gq`u{inrFaYE?TLRc13DWo#?PIb5ZUni z_@!gBuxC0oznYkM@;dCgdEKwB{}ujvDEZl| zCCLA5^67892zfh`zj(-pUw)pvwEK7P#}n8sK&yd`%XG3x))#pRmS2$gC78ZSLV0gPVG&neP`_SOfotB156_vfiRlYTq zI&>get9|oPF!o?tA53X}XGM{sSiTQ1Sos_+JXe7#z0bW_IVV2dD_;nn{Bkn;N!P~A? zVP|0GbPep#s<3I90jve-EW~Rg<{hhIjzI%zt)K(lcL$tA`R>vBXP{R_?&85F`Vt65+cFf-axoEcu@ppjXzqlW-wkR3uWj^bI3P6|}UR_Jg}nHjpq z`g4W2I#pmZHZ}dezJhudEo}I}p4(WP1>r}&=arPDG;wR*E9PyTpsU$+gIzU|s+4MkqQ9yU z&H%wh+M~-H?JkpD>+=I;bKn9WI=K3uv6jXg-NDG?7rL97g878IEx+)xVWSga?UkbQ{NaXApc z#r92)AE*aQ0*Ja-M@?*6oocZB+C?-uZaeO*<7U0(|0A&KsdQ=w%tK$DyaP?z(rVr= z=d_IVI0>W#8@nisjM&I2Cld6Af~lT^Km{0k`(iaxQn!Mz`TEL@`Z5%2S|$@)+R6_NiPU3fR&u0_$o<$2POc-}RfLb3-X0 z(Xrq4mR&1@M35;(k-D`uoZpAsdPB}^^+2%Ot#L5xWh|f?Y()^U;q*iP?!X zU#Mgt3H586Ecoc(B60d43X}RgejM2uu;B`^+Yc7iyecXr%SZ}w)HvV<){Mf&LosSc`8guYaIe2+D?=q+2ri?-{koXI0vo@)8@F5MQ% z$5c4B4Tn*l(^U#?2&to{-YA3xMA>{}h>FCPC%EI2qbhX^}=Ac2T*{?Y(bvfM58&>LNrd;y9yj5aR zzacgigVXq{u?fq6Pc0i-eibeUA#z5?D3zh1O~XvXkSEI~lMI`4HtQ(Ift!1WbFBS# zE@#atY;)N@aKq#=-xJuUEA5mDIs5dm9VVy- z!9I^pei6vrWz6Bm?EEJ?I)&#d(<|~!MS*zEsyK#D%4k<*1IC-{7#~MRnYT?J(;&d$ z8Uoxj8`oEEbg0dsr{lh+p38y8JfyFt_s!|Nsb1$P9|Dms+!p@Q%Z5RwOw%L*J z1G*pO1~A<+&qwUsl@1Da@MX+U>;n&M9C7WroU%qo^98kF6>{YTCwgbB-5fS}s~hKd z-Bp04jU*JFI1&eJccE-AL`QQ%A3SiZ4n%Ch)kmbZb5$2AjK5VbQt)L!hrKzma|2X7 zY5Hg4YuVEf$*Y%USx>OxQ z8tixT4M78me%*QT!iHBfWoXrSE^3`pep&Zz4d_X&jxHI2FIx5KE>iomx|v|}z{Zl6 zWW|{V?*iTj@Xj4Xi!%;sC)$~(YPO%eW1t5JLpe<)t-g8T7dC6v_b#S=C7!9o#)}L) z@~*wx34OU9N}v?*R%zOa*8PbZWlRgflt58UsULta6sdp}-smv^nFuUwJ`duXpke?} zQ7Xu9re=i-@~lN%rba?u1x$D|$eXqBYO4C`q+(u6UqIAcK^WywNR?Z;Eo^XYpFWva zZo?=#Pn@p&D{%BW-R0$#TaI-0?gj#LS`TVg347DZa>Wp55(|6D4$Z*#yxg2!jO4LJ zo`*$fO|xaUf$}uOtUXS)PZyQ4wpo=^WrMCaS<&0>nVdVJGUona?VMKwy2gpP25#+L zRR`LrZg6_8f$XR@Rp7%IO+(Yxz;+_E%Ww(94#6Biw@sB%dyA)u0PmyU;{if<@^Mt& T>g(bbTol)VJqWDkrl$V^Wj_lF literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/gl.ts b/Source/Resource/Translations/gl.ts index 7e258c080..bb7cb71e6 100644 --- a/Source/Resource/Translations/gl.ts +++ b/Source/Resource/Translations/gl.ts @@ -1,1009 +1,1019 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Mostra información detallada +sobre un arquivo multimedia: +Matroska, OGG (incluíndo OGM) +MPEG1 (incluíndo VCD) +MPEG2 (incluíndo DVD e SVCD) +MPEG4 (incluíndo Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (incluíndo WMV, WMA) +Microsoft RIFF (incluíndo AVI, WAV) +formatos de son (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Ir ao web - - Check for new version - + + CheckNewVersion + Busca unha nova versión - + Donate - + Doar - - Write mail to author - + + WriteMe + Escríbeme - + Translator : Zen - + Tradutor : Felipe Pérez - + OK - + OK - + About - + Sobre EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Nome completo Export - - Choose your desired export format - + + Choose export format + Escolle o formato de exportación - - Format: - + + Format + Formato - - Profile: - + + Profile + - + Advanced mode - + Modo avanzado + + + + File_Append + Engadir ao arquivo existente (Deben ter os mesmos parámetros) - - Append to the existing file - + + Export + Exportar - - + + Text - + Texto - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Ver - + Help - + Axuda - + Options - + Opcións - + File - + Arquivo - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Sobre - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Saír - + Ctrl+Q - + - + Known formats - + Formatos coñecidos - + Known codecs - + Codecs coñecidos - + Known parameters - + Parámetros coñecidos - + English - + - + Français - + - + Preferences - + Preferencias - + Ctrl+P - + - + Export - + Exportar - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Modo avanzado - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formato - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Configuración - + 0 - + - + Advanced - + Avanzado - + 1 - + - + Customize - + Personalizar - + Sheet - + Folla - + 2 - + - + Tree & Text - + Árbore & Texto - + 3 - + - + Custom - + Personalizado - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Formato de saída - - 11 - + + Language + Linguaxe - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Buscar nova versión (require conexión a Internet) - - 16 - + + Shell extension + Shell extension (ao picar co botón dereito do rato aparecerá unha opción Media Info ...) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Shell InfoTip (no explorer, situa o rato sobre o arquivo para ver a información) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Pechar todo antes de abrir - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Mostrar menú - + Show toolbar - + Mostrar barra de ferramentas - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Elixir folla personalizada - - - + + + Delete - + Borrar - - - + + + Edit - + Editar - - - + + + New - + Novo - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Elixir texto personalizado - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Preferencias - + File Name - + QObject - + Easy - + - + Sheet - + Folla - + Tree - + Árbore - + Text - + Texto - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Personalizado - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Sumario editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/gr.qm b/Source/Resource/Translations/gr.qm index be651eede2edc9cb0da5c140b31664afee169fa8..4b5e9d5bb44136f28a978ba5cbd27cdd06d9fc32 100644 GIT binary patch literal 7155 zcmcgxYiwIr9sf7SaT4dbKGHB%(;c)WMSY}U-AWk`6E{t1lXgv-XqCEhW8cJX?R$-V z-L#to9{_3WA;H!Su??}p27)H3(lkxeBu&z!uPtejc&IQ9f%t-8fRN}Xgv9TEj(zRe zmo60uMfJJ&-1C3GPanS+s(a^eZ@jYb@S3SFot}LE$3#@roA?5Lw-XhAn#l8aqK@lC zD`toepCkH6FL}m2M9XiG=Qh@|pOEKg>xg{i%Kvr4;rvPO2z&E!2T(< z*4?4vizC3}rQ+MbTM?#JpD}^|PxMgrd7_nX(Z{yDMO5_??Rs?%?2uYZXQ=JjFz_^~ zb;VO^tvf_rB0yAmh@O0RnrKxEJ^5$At@^53>jvn#ySIp{zfW&}5CpyN(tG|QqSenV zdp-FSWPG5gG%!n4^OvHB^$^hmzbvZ%myNZf=(ivLI?nxEytx(p(k(H4^@ot>kK&!9 zkf)@=RgmWwrE7ZY&}Jl1CPbsC9e#4_`URftnSGy|Z493XGNGIiU?JG))HBBmk1thj{pH^eB& z&OxfHSkH^A*qviGu}+Bv`E4HO@!gTPa+jsqmeyr-w?_)lKS!-(P>3R=({3`Uhb+?Q zIIW|t~d2~(hl-LNF4$tpui*@!}CT6w~uz=56ZzgR^v2q%s_GD;A=vh z6a7-bbF9qt=~gI_aqXv_fZV!d*iNWFun4ws$*=+HlmQ@(3aECx=VNt1gW=g3qB#!Yqb__k;gS~hL6ce6S*jMh0MjY8&rgbW ztE8-KW5LPU@eaV@oAI|)ynbNaoyN=0kV(7&PneNehJ9j83}#XRd}jOw

ts$J1p6xS&I8dD zCm#o}qREQIqlRs?=`jgiwlfs5+rx%o%LLyhUIWQFL>!CHO5jY&`Ctt1U;(&?nYl%& ze;T_}up?({E&-hS`E0hDRQf~5bu(y$w3ro=guOdY#I1y)+MHIvI3O>B&Ipuy5}uus zYG!pOp;AtXA$(yo#PKyD{gYF10&#+@;z+r&DQsCuLo*}^t;b5lbXm%BiB^H=We741 zwui-_1Drm?-jRF!0(3hg=An^`(1y|r>u3u4nFHVBkQmMasi&bm&Vy6X0_%)-vzamN z>k`|P)a!Yi;kY;p-ATOcaM*xo~UN_=Z;w9)|PzE6yItR|vVnpL^0Bgm| z@THrGERID^rI{XM3|_{&x!q;O9@FYGwIGsIFzJTw6FKMr2y~p8U5lH;Tctv((vU0G zLMBx>_sdXF;XLNxt5NvkdICw@M(^y#XpNIor;y%qWh~hjx6y68LS;%3XEO;!Thf_| z`{#*l<#w1U-=8pgjD&&Y?uxN04Sx<8$8*xGr!!*oxiQ{Aend&Dth((KmJN=E#vlxT zF=fLPg%>$VpOOwMb^bu>4y`?G^=VCE-87A;%3G4JTs~zMSno=wLuNE?zYd~}3FKg3 zk;RUB9z1q%cfcL-=YcpRD^(E4xO3x9&I0QicKOY~lZ_qzlBf_<)R#i@L8f_J4P;B9_E7|c8UR1M z3nvRDevj{PsM#d2GJR6K+Z(i0ru5q)n>Tw9p;+yO{@a>vdfUm)a z9ZjxCcLc#y(zaq+k{cdZCOZFTOzPp$8(|PM;&zDCaGpucrM$ymg9~J0y?l|3O4eztUU!zQX}VT?%KFVzm}6wya9t7 zTUVmn(SNAU9ep_hu~!CM4}KrT6uzCd&|`AdP>*;x<)Dq>d56PRbs&uX`%Uqi;bGwZs7;`mktqj-^v`Bns zFbt=dMbP9l20Y-nLe@hH6Bg-4JHi>6r`#Aaup!+ej@=ZV;4Y3WR_-+Q?x>+PH^<^e zuNIG{dL!;pa_`o-z-|>tqT}+03}NMvE8VM`y(zud-KV|cdx+v}iW9g!uUpgErN1~7tho2jOddO3qkiFdJ1A^Y-Np{9|A^t5qVLd_!EP6AF& zMH0X4wSbSWz=rT;0eHE8n97+)s=%(1v@@l~mGiaka|tlBz2_yb*`c^{pR9>F<6eQD z|NHi)0OfLV8g=O+5-X=_o|CgpdU3m9r({=J0Ok`vDkxILat?RZ#H+Xs;mo31=gbvk z2fQ;5&#jk9Ei)NM5o?^n67serhBuB??ll;L1|R2MBPpL%U(f@1jsd=9;q<7kH~Zu+ zx9Z*UEMI>nL60vvPGTpNW6esij^e?$ksT3ti5H8Y+8$0JJlZQZ{*xFQM2R32!!nTu z!GO9T%ZS9naw1|Ovg~rI&Ak@OD2-dKI4~)yIoC%@1QcY$%-lv7m~9QR%>>F07t}Eo zCwQ0Bs#tIWw@mh+F~dx`8gruyl1%baS1lZFg9w_@9A~PKNNvlCcIydOyc}@c0-fgq z3+dM*P}~RV@{WXIXzR7iTwNgNeOCFBC-!w8HG=9k=ia$*(b0R{3oJT!?`Tjo - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Πνευματικά Δικαιώματα (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Παρέχει λεπτομερείς πληροφορίες +για αρχεία πολυμέσων: +Matroska, OGG (συμπεριλαμβάνεται OGM) +MPEG1 (συμπεριλαμβάνεται VCD) +MPEG2 (συμπεριλαμβάνεται DVD και SVCD) +MPEG4 (συμπεριλαμβάνεται Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (συμπεριλαμβάνεται WMV, WMA) +Microsoft RIFF (συμπεριλαμβάνεται AVI, WAV) +Μορφοποιήσεις ήχου (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Επίσκεψη του δυκτιακού τόπου - - Check for new version - + + CheckNewVersion + Έλεγχoς για ενημερωμένες εκδώσεις - + Donate - + Δωρεές - - Write mail to author - + + WriteMe + Επικοινωνία μαζί μου - + Translator : Zen - + Μεταφραστής : Alexander Ntzintsvelasvili - + OK - + OK - + About - + Πληροφορίες EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Πλήρες όνομα Export - - Choose your desired export format - + + Choose export format + Επιλέξτε your desired export format - - Format: - + + Format + Μορφοποίηση - - Profile: - + + Profile + - + Advanced mode - + Κατάσταση λειτουργίας για προχωρημένους - - Append to the existing file - + + File_Append + Πρόσθεση στο τέλος υπάρχοντος αρχείου (Προειδοποίηση : πρέπει να έχουν όμοιους παραμέτρους) - - + + Export + Εξαγωγή + + + + Text - + Κείμενο - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Προβολή - + Help - + Βοήθεια - + Options - + Επιλογές - + File - + Αρχείο - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Πληροφορίες - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Έξοδος - + Ctrl+Q - + - + Known formats - + Γνωστές μορφοποιήσεις - + Known codecs - + Γνωστοί συμπιεστές - + Known parameters - + Γνωστοί παράμετροι - + English - + - + Français - + - + Preferences - + Επιλογές/Προτιμήσεις - + Ctrl+P - + - + Export - + Εξαγωγή - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Κατάσταση λειτουργίας για προχωρημένους - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Μορφοποίηση - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Ρυθμίσεις - + 0 - + - + Advanced - + Για προχωρημένους - + 1 - + - + Customize - + Προσαρμόστε - + Sheet - + Φύλλο - + 2 - + - + Tree & Text - + Δένδρο & Κείμενο - + 3 - + - + Custom - + Προσαρμοσμένη - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Μορφοποίηση εξόδου - - 11 - + + Language + Γλώσσα - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Έλεγχος για νεότερη έκδοση (προϋποθέτει ύπαρξη σύνδεσης στο Διαδύκτιο) - - 16 - + + Shell extension + Shell extension (in explorer right click there will be a Media Info option) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Shell InfoTip (in explorer, move the mouse on file, info will be displayed) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Κλείστε όλα τα ανοιχτά αρχεία πριν το άνοιγμα νέων - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Εμφάνιση μενού - + Show toolbar - + Εμφάνιση εργαλειοθήκης - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Επιλέξτε το επιθυμητό προσαρμοσμένο φύλλο - - - + + + Delete - + Διαγραφή - - - + + + Edit - + Επεξεργασία - - - + + + New - + Νέο - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Επιλέξτε το επιθυμητό προσαρμοσμένο κείμενο - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Επιλογές/Προτιμήσεις - + File Name - + QObject - + Easy - + - + Sheet - + Φύλλο - + Tree - + Δένδρο - + Text - + Κείμενο - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Προσαρμοσμένη - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Διαδύκτιο - + no selection - + - + Summary - + Περίληψη editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/hr.qm b/Source/Resource/Translations/hr.qm index be651eede2edc9cb0da5c140b31664afee169fa8..2423951f3fa8cae2788d92963b531566c9ec46cf 100644 GIT binary patch literal 6863 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 literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/hr.ts b/Source/Resource/Translations/hr.ts index 7e258c080..0daac801f 100644 --- a/Source/Resource/Translations/hr.ts +++ b/Source/Resource/Translations/hr.ts @@ -1,1009 +1,1019 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Zaštićeno autorsko pravo (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Pruža vrlo podrobne informacije +o multimedijalnim datotekama: +Matroska, OGG (uključujući OGM) +MPEG1 (uključujući VCD) +MPEG2 (uključujući DVD i SVCD) +MPEG4 (uključujući Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (uključujući WMV, WMA) +Microsoft RIFF (uključujući AVI, WAV) +Samo zvukovnim oblicima (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Prijeći na spletni sadržaj - - Check for new version - + + CheckNewVersion + Provjeriti dostupnost nove inačice - + Donate - + Potpora razvoju MediaInfo - - Write mail to author - + + WriteMe + Poruka autoru - + Translator : Zen - + Prevoditelj : Dominko Aždajić - + OK - + U redu - + About - + O programu... EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Potpuni naziv Export - - Choose your desired export format - + + Choose export format + Odaberite izvozni oblik datoteka - - Format: - + + Format + Oblik datoteke - - Profile: - + + Profile + - + Advanced mode - + Prošireni način - - Append to the existing file - + + File_Append + Dodati u postojeću datoteku (Pozor: Pripazite na istovjetne parametere!) - - + + Export + Izvoz + + + + Text - + Tekst - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Prikaz - + Help - + Pomoć - + Options - + Mogućnosti - + File - + Datoteka - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + O programu... - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Svršetak - + Ctrl+Q - + - + Known formats - + Poznati oblici datoteka - + Known codecs - + Poznati kôdeki - + Known parameters - + Poznati parametri - + English - + - + Français - + - + Preferences - + Prilagodbe - + Ctrl+P - + - + Export - + Izvoz - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Prošireni način - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Oblik datoteke - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Postavljanje - + 0 - + - + Advanced - + Prošireno - + 1 - + - + Customize - + Prilagoditi - + Sheet - + Tablica - + 2 - + - + Tree & Text - + Stablo i tekst - + 3 - + - + Custom - + Vlastito - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Izlazni oblik - - 11 - + + Language + Jezik - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Provjera dostupnosti nove inačice (iziskuje vezu s Internetom) - - 16 - + + Shell extension + Proširenje ljuske sustava (desnim klikom u Pregledniku će se pojaviti mogućnosti Media Info) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Info-naznaka (prelaskom miša preko neke datoteke u Pregledniku će se prikazati informacije o njoj) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Prije otvaranja sve ostale zatvoriti - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Prikazati izbornik - + Show toolbar - + Prikazati alatnu traku - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Odaberite tabelu - - - + + + Delete - + Izbrisati - - - + + + Edit - + Uređivanje - - - + + + New - + Novo - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Odaberite tekst - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Prilagodbe - + File Name - + QObject - + Easy - + - + Sheet - + Tablica - + Tree - + Stablo - + Text - + Tekst - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Vlastito - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Internet - + no selection - + - + Summary - + Sveukupno editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/hu.qm b/Source/Resource/Translations/hu.qm index be651eede2edc9cb0da5c140b31664afee169fa8..abd962a5edbcfa24b99cfd09ee4514043480c4ab 100644 GIT binary patch literal 6503 zcmbVQTWlOx8UAhWE$eF&+p(%BOw*(|QZA0$(qJgC*^Lu7Sv!dxn<6D)ymP!e_Uz0u zJ8Q=V6^Zh|?ZFbzN|XmGh>(aS+B7YdDA1Nvg`yCiP-!V5LIOo;0TGf1)B@jsj(7Gp zxoWg~=JMa~=Y0G{qwkG>eD~Yu@7eH+&p!RLcYa7j&AHMZ{O=|Te~c*9LNxI@(Oo9d zu`@)yf1}V(LquIJg)U%?;`w)5h+>B+^oI>Zk;`iBZKcq=19*Rh!Yls<+*-Bv8Weu< zdC*y=@CDF~e~Ee?wn2ZHHg=vRTC35$JAXjb_5|&F;vB>wwMHMN(XZq{{}r{~6;o@^ zpJ}QkMbuiLM}PA&@SmYaF9UDwWwrL+PhY$GTcY;I>D0R!@cS{nooFWN`B2kS#pBTL z-sV{9mqZ;;Hs7NgM4ex3?*G8U^M9NF^x-c9&T0AHF33wOEib?JeWEoRTi%$3KH;}Q zJ6}H!_`il$ww(gJ2(6qx20s5%YtNa`3;Xe&9t&NV{}$j+sWsLY`u#USH?pkO*cZat zuXf{mU-3=yd-va{BZr(Yg;J=Z;OmuFpozryc|S z?a`-27v5{JuBIO7^PSk{XJ_&Lf3eXsS7FzO*8KeH-{G&7_$MwFA^&sn7ry=)&gioe3nG>10QL!*7+@k5&bp$&oK?ca=LC~(^9!WX2 z?uk0+ZGhHj0c@thUZ(<{@=|UK_$*FVigOVn=)MT;`y9=4v?(z?ZZ?pdr8Ec_WCC#n zBFumY>$in=QJfx;Bpqm{LH8tW#X3j>xCUvvyc?tk@vcH6A+4a(4$uBbP?JyzSLi!z;c4TEBM0NP z_GsP+k+Wc9Lj+eEehGGAw(JNEDjCuqN&y|t;&*JTXoSGsNvR*-amyG5NlNnFJSI22u{I4Zk@O z+ryKKJN8Q+|4XoUtp^m{B;7CRrf32dV%sNhC0Fl`uC7Xw9SFZ2wABx|PCwvI1Z8yy z&O6`(H;)~t4KvyVy(ewmUQw3OL$^b&r8fTdkxbY&k5nlQq@O$ znhqn8S!B)#_Ea9i8$N~hgfXw%8DVI7$B-l>xa8d=(`AgxSHgp zyWjWU%+mYt1((EfMOgwp8$b3^0dHOWxSp`(RfzC^B_3OcO-r0e6biyN>ZR^l4L09e z6*Y$gZ4*b4VTJ|D`Jmx_u3pI1laA4TgjAXi`f#EB6X}EXU~R~+CAtPL!@CvG330N) zFE?+V@w9H*Q>JY=3wIor^)xz=djiErSH;^GF`5!HddZSfHsTzBQ#lk0>}DS)wD+VL zh;YjxSI;R12g>$Q;lb`^E7ybGlCSHL`aqwXmgNT&1a=vg~ie5o?Q7Ao3VL<}+(jI8UHOrC}lPedxzfUAOR`4*r-4Sl< zAy>=@SD@4e;>YC#x&;1}su-Fy#X^vv11QTWbmC1udD=ZChBXo=BOhWt4e(Um%|eS!sB?;O@&dA!xLYlIEYKSa;68OfmEdO&y;ka`U@*Ywb|GrPOgkfkI%!lk5&A_`NajcVG5$gOtNk%G>L{ z+;e$fa1qs;?O5Gq*R6KhOsVKOd9BD}LLlQkcfhzVEvKz3~yCRBIF z)Z!C}B&BHrG5X{rRs=)t%baAHnWxH|?Z{P(r%f~7Ae^-Ae#5bP1m`Z?&t z@t=`-z&WR!z%!eg`S?p7ml8+2Ywz@(bj)uhuPz`zXzFr}|= zgN^M8J2=E9;d9P+)^owvm}j=@>3w@T_txt??x8T{16|uI=PRx~+(kK>yqd5G@gN_F z*$*vj8GAgJYAE!>@Ja#qSv(aGDka<@Tzp@2@3r-5OK8Kx`GUx51*?=bgR|nsV`PKh zxM`^Yxw0jR9n|e?NzVpHbcoMRe8F09Boe6OG<0&ILlGD6U63%)t?qaQZ~A3gaOAnL z2}dGB@fe%|h67u04dnD#!n{6*^%88u_O8s~9S}kky>dYhlxGw1;K)Ttap8SV-T2}w z)jlTsPSqx+!EQGjG^!B-<+&Mw@VM|wa+a$mC3|`os!&af@C6UcePbZMXXNPt7b3PK zTRR6!@*x=a?E)_L1&<%){SZgvCBX673h(RHmRaqUMqowu=@QB}7kSP{#w?$>@ZB|8 zCb>VWC{X_69e?$Cj`FTL_hRnqOk}RgyX{a4?SRjjCd^=qTu-^}2pH}*tghOAuO=yk z=m#_2JYG)~E~gf9Lk@J(5WKPE0OlU1`k9T8EURCA^ujbbxGGS*oo16Y9BC-!&{Bn6 zK38mT_}y{`%*>cz*&EzKb>H=C%jgGg!DH> literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/hu.ts b/Source/Resource/Translations/hu.ts index 7e258c080..7a5953cc9 100644 --- a/Source/Resource/Translations/hu.ts +++ b/Source/Resource/Translations/hu.ts @@ -1,1009 +1,1019 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Jogok (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Igen részletes adatok az alábbi +multimédia fájlokról: +Matroska, OGG (OGM is) +MPEG1 (VCD is) +MPEG2 (DVD és SVCD is) +MPEG4 (Itunes M4A is) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (WMV, WMA is) +Microsoft RIFF (AVI, WAV is) +Csak hangot tartalmazó fájlok (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + A weblap meglátogatása - - Check for new version - + + CheckNewVersion + Új változat keresése - + Donate - + Adomány - - Write mail to author - + + WriteMe + Írjon - + Translator : Zen - + Fordító : DirektX - + OK - + OK - + About - + Névjegy EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Teljes név Export - - Choose your desired export format - + + Choose export format + Adja meg a kívánt egyedi exportálási formátumot - - Format: - + + Format + Formátum - - Profile: - + + Profile + - + Advanced mode - + Bővített mód - - Append to the existing file - + + File_Append + Meglévő fájlhoz hozzáfűzés (Figyelem: ügyeljünk az azonos paraméterekre) - - + + Export + Exportálás + + + + Text - + Szöveg - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Nézet - + Help - + Súgó - + Options - + Beállítások - + File - + Fájl - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Névjegy - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Kilépés - + Ctrl+Q - + - + Known formats - + Ismert formátumok - + Known codecs - + Ismert kódekek - + Known parameters - + Ismert paraméterek - + English - + - + Français - + - + Preferences - + Beállítások - + Ctrl+P - + - + Export - + Exportálás - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Bővített mód - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formátum - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Beállítások - + 0 - + - + Advanced - + Bővített - + 1 - + - + Customize - + Testreszabás - + Sheet - + Táblázat - + 2 - + - + Tree & Text - + Fa és szöveg - + 3 - + - + Custom - + Egyedi - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Kimeneti formátum - - 11 - + + Language + Nyelv - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Frissítés keresése (internet kapcsolat szükséges) - - 16 - + + Shell extension + Rendszerhéj-kiterjesztés (az Intézőben a helyzetérzékeny menüben Media Info menüpont...) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Rendszerhéj tipp (ha az egérmutató az Intézőben a fájl fölé visszük, adatokat láthatunk) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Mindent bezár megnyitás előtt - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Menü mutatása - + Show toolbar - + Eszköztár mutatása - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Adja meg a kívánt egyedi táblázatot - - - + + + Delete - + Törlés - - - + + + Edit - + Szerkesztés - - - + + + New - + Új - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Adja meg a kívánt egyedi szöveget - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Beállítások - + File Name - + QObject - + Easy - + - + Sheet - + Táblázat - + Tree - + Fa - + Text - + Szöveg - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Egyedi - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Kivonat editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/hy.qm b/Source/Resource/Translations/hy.qm index be651eede2edc9cb0da5c140b31664afee169fa8..4f4a8a4f2a24f39886820c5b862b594d18d66af0 100644 GIT binary patch literal 6250 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 - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +Հեղ. իրավունքը (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + Ցուցադրում է մանրամասն տեղեկություններ +մուլտիմեդիային ֆայլեր Matroska-ի, OGG-ի (ներառյալ OGM) +MPEG1-ի (ներառյալ VCD), MPEG2-ի (ներառյալ DVD և SVCD), MPEG4-ի (ներառյալ iTunes M4A) +Quicktime-ի +RealMedia-ի +WindowsMedia-ի (ներառյալ WMV, WMA) +Microsoft RIFF-ի (ներառյալ AVI, WAV, DivX) +ձայնային ֆայլերի (AC3, DTS, SSC, AU, AIFF) վերաբերյալ - - Check for new version - + + Go to WebSite + Բացել կայքը - + + CheckNewVersion + Ստուգել նոր տարբերակը + + + Donate - + Օժանդակություն - - Write mail to author - + + WriteMe + Նամակ հեղինակին - + Translator : Zen - + Hrant Ohanyan : http://haysoft.org - + OK - + ԼԱՎ - + About - + Ծրագրի մասին EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Ամբողջական անունը Export - - Choose your desired export format - + + Choose export format + Ընտրեք արտածման եղանակը - - Format: - + + Format + Տեսակը - - Profile: - + + Profile + - + Advanced mode - + Ընդլայնված եղանակ + + + + File_Append + Ավելացնել ֆայլին - - Append to the existing file - + + Export + Արտածել - - + + Text - + Տեքստ - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Տեսքը - + Help - + Օգնություն - + Options - + Ընտրանքներ - + File - + Ֆայլ - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Ծրագրի մասին - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Ելք - + Ctrl+Q - + - + Known formats - + Հայտնի տեսակները - + Known codecs - + Հայտնի կոդավորիչները - + Known parameters - + Հայտնի ցուցիչները - + English - + - + Français - + - + Preferences - + Կարգավորումներ - + Ctrl+P - + - + Export - + Արտածել - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Ընդլայնված եղանակ - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Տեսակը - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Կարգավորում - + 0 - + - + Advanced - + Լրացուցիչ - + 1 - + - + Customize - + Կարգավորում - + Sheet - + Աղյուսակ - + 2 - + - + Tree & Text - + Ծառի տեսքով և տեքստ - + 3 - + - + Custom - + Ընտրված - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Արտածման տեսակը - - 11 - + + Language + Լեզուն - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Ստուգել նոր տարբերակը - - 16 - + + Shell extension + Ինտեգրել Explorer-ում - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Ցուցադրել հուշում Explorer-ում - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Բացելուց առաջ փակել բոլորը - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Ցուցադրել ընտրացանկը - + Show toolbar - + Ցուցադրել վահանակը - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Ընտրել աղյուսակը - - - + + + Delete - + Ջնջել - - - + + + Edit - + Փոփոխել - - - + + + New - + Նոր - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Ընտրել տեքստը - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Կարգավորումներ - + File Name - + QObject - + Easy - + - + Sheet - + Աղյուսակ - + Tree - + Ծառի տեսքով - + Text - + Տեքստ - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Ընտրված - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Կայքը - + no selection - + - + Summary - + Համառոտ editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/id.qm b/Source/Resource/Translations/id.qm index be651eede2edc9cb0da5c140b31664afee169fa8..f25c3f98c793ba803ad23b40126b45cc58eab08f 100644 GIT binary patch literal 6873 zcmb_gTWlOx8UACh*Xz4UoY*Q+HH9WPC~*?2mk^+3ml9Hi29=Z-E~;7y^$n`R1Ce+DiSIjSXZAL( zQx&at&+M81|IdHFoKL)v9l8FG?|t*tJ2wC7^pn4M<7p9Tv$Ol~yGNws<07#yh|FCR zS^pc66VHf@9GBROF_8~km)H%gi5DgI+7^+n4@&GWn?*XG*X!_kiM_oG`+ty*OaH?D zn|d97O*&q9PGtDs(s2WHdrGqLlMd*=BexGcE3)D9^5LC76zRJn`@eM+?1)|y9Wwjn z9Oyi%*Yzj$Iy@`$?J1Gof*k+dOCm#YIsSLx4c)KT;S2JWo4*(7zadY(oxyn*@-NW9gA0==z@>&pi*ieX)3(JPUpg#m~pv!EY@7?F{H_x-Wk5;;hKVQ}L@O z=AqZ~o%Z7of&PxpC#^xqTS^SB+XyogJDEc>d& z3=peGQ4s(S|--l);141i>|S}Wq0?4TRP|2OF7>do!DlK@7guKV|>^6-G+in zdX_onSiX@?9-Z!P)Ir;K>kh67QN+QHoD0RvQ=4FfB9*aAO%|%=PC*x-d+$&G?gwYhJ zAMI>(Mrw~i9kR?MfLLX&Rp1MYvH#oiaP>t$}z>OA28!7CQSt=)ktpTQH|lWw~g-+8c9P)wNEr|Bzz(##P{J2RXnq(3<4nNGQ2`mSf}H9luG zr=)Qt!%9^wZEm^)-9U#)gyKWmo%0?N%}i^ingt26O<$s}wDwCOV()}oEEO!@nl+0G zyK6FQ`{|rz`6}sdMVz}Tj_7ms_9I1l%Na23hxGcA*=5toSXra!W);EsA9 zzSn-sxMTX$%A%-@>@qx;dxlacd8YT-)zis?@`dosp^2R9mMz0l2N{d5S2R`es6V<_ zCTpZa)G7q+UJv|)?1yahyg*~*RGXnO%h2GOLsLZvJyV-s>xu>>1YL&FPOlDpS$lgC z|8jQG?l`q{4zW@^ia zz#aQNvy^KloIsVDgJVpGaIph(Gt;eLtnRR94Q$Rj+hUoun}F^a({|=8}%nrS^Fi@||IfRB`CV45lE zfu=?1Pet-oKicTJv-bJ7@%&{y?%c}Bn{o2m6+IDDbb3b%_s2kkUdVtCbjnUc_lB%q z6=+kpP3&OVZEMXp#=7Q%zm2thL$$VNDrMg-8f7*nk&GOTU_=iJ%w+G6iS><4(4vt% z+yfra4B^XRfXyjK2{vDRX5&ByVz z&y;NBb%(_%F>sYy79MUo`V>0lqN%&A78bUz%EEg*!tpI9+PQLS;x5Bl>=W4uYKfVp zSUZFMGmm=8czpjF*wn0nw2$Ogj5Kq<8i07NisaCMF^&_F7-LBGc?G|yJ+NvaW@9~d z8Yn7Lup#YMyBivsbj*ciqWU%JbgRJ29XiUSS6kM8Im*@Gn|9|2dZ<+}rlug@YX}#r z)||{hNj$lB3tAIyKnsULYdOK~ZHxKYzclM7xIwC21b3M-b>PaG8h=*^2KRWUU{Bd*(dLGPWAQJlrDNE!OwW&m3Mj zV`cR1%3ArZ0r*{J_y)MOVypo;(IRLpkgx%+yQZK}tud;E>TG~qj|*&7QIsPwYu1L! h&U6J8**ixhSQ(umhZr?U#Bo1Ye<9zFtN13c{{bcuPDua& literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/id.ts b/Source/Resource/Translations/id.ts index 7e258c080..ba40f98cc 100644 --- a/Source/Resource/Translations/id.ts +++ b/Source/Resource/Translations/id.ts @@ -1,1009 +1,1010 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +Hak cipta (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + MediaInfo menyediakan akses mudah ke informasi penandaan dan teknis dari berkas video dan audio. +Selain antarmuka pengguna grafis Mac App Store, aplikasi ini merupakan perangkat lunak sumber terbuka, sehingga pengguna akhir tidak dibebankan biaya, dan pengembang bebas meneliti, meningkatkan, serta mendistribusikannya (lisensi BSD). - - Check for new version - + + Go to WebSite + Ke situs web - + + CheckNewVersion + Periksa versi baru + + + Donate - + Beri sumbangan - - Write mail to author - + + WriteMe + Tulis surat ke pengembang - + Translator : Zen - + Penerjemah : William Surya Permana - + OK - + Oke - + About - + Tentang EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Nama lengkap Export - - Choose your desired export format - + + Choose export format + Tentukan format ekspor yang diinginkan - - Format: - + + Format + Format - - Profile: - + + Profile + - + Advanced mode - + Mode tingkat lanjut + + + + File_Append + Gabungkan ke berkas yang ada (Peringatan: pastikan memiliki parameter yang sama) - - Append to the existing file - + + Export + Ekspor - - + + Text - + Teks - - + + Graph - + Grafik - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Tampilan - + Help - + Bantuan - + Options - + Opsi - + File - + Berkas - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Tentang - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Keluar - + Ctrl+Q - + - + Known formats - + Format yang dikenali - + Known codecs - + Kodek yang dikenali - + Known parameters - + Parameter yang dikenali - + English - + - + Français - + - + Preferences - + Preferensi - + Ctrl+P - + - + Export - + Ekspor - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Mode tingkat lanjut - - Full parse - + + FullParsing + Analisis sintaks penuh - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Bawaan - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Format - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Pengaturan - + 0 - + - + Advanced - + Tingkat lanjut - + 1 - + - + Customize - + Ubah suaikan - + Sheet - + Lembar - + 2 - + - + Tree & Text - + Pohon & Teks - + 3 - + - + Custom - + Ubah suai - + 4 - + - + Graph - + Grafik - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Format keluaran - - 11 - + + Language + Bahasa - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Periksa versi baru (memerlukan koneksi Internet) - - 16 - + + Shell extension + Ekstensi Explorer (di Windows Explorer, klik kanan pada berkas, akan ada opsi MediaInfo) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Kiat Alat Explorer (di Windows Explorer, layangkan tetikus di atas berkas, info akan ditampilkan) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Tambahkan tanggal pembuatan ke keluaran teks - + Close all before open - + Tutup semua sebelum membuka - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Tampilkan menu - + Show toolbar - + Tampilkan bilah alat - - When content is detected - + + DisplayCaptions_Content + Saat konten terdeteksi - - When content or a command is detected - + + DisplayCaptions_Command + Saat konten maupun perindah terdeteksi - - Even when no content or command is detected - + + DisplayCaptions_Stream + Meski saat tak ada konten maupun perindah terdeteksi - - Handling of 608/708 streams: - + + DisplayCaptions + Penanganan aliran 608/708: - + Add version to text output - + Tambahkan versi ke keluaran teks - + Enable FFmpeg plugin - + Aktifkan pengaya FFmpeg - - Choose your desired custom sheet - + + Choose custom sheet + Tentukan lembar ubah suaian yang diinginkan - - - + + + Delete - + Hapus - - - + + + Edit - + Sunting - - - + + + New - + Baru - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Tentukan teks ubah suaian yang diinginkan - + ADM: Show ChannelFormats - + ADM: Tampil ChannelFormats - + ADM: Show TrackUIDs - + ADM: Tampil TrackUIDs - + Preferences - + Preferensi - + File Name - + QObject - + Easy - + - + Sheet - + Lembar - + Tree - + Pohon - + Text - + Teks - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Grafik - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Ubah suai - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Ringkasan editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/it.qm b/Source/Resource/Translations/it.qm index be651eede2edc9cb0da5c140b31664afee169fa8..14e1a4f6b9a3421292a7aaaaed170d4f79e076b8 100644 GIT binary patch literal 6872 zcmb_gU2Ggz6+T|C*X#8!i4%t?lxayCr%KYqYLQ7ps?DzLgxF3RyRm{4!tCz#dXn9l z)$FY8go+n4?P;Q($LRQPULzXpq2qr6-rylwhrUCP-F%y6}{}#E^%n=Q|8X5k#hxH4Q8(Y5)xTo5m+zol@?e^E+fDICZ z?QfleKCvG}?|t(c>@XU=wEY6`Uyfe7cmnHAS=awH`oaOcryoVHFFp?V)3SCAMt}QV z(Cu_(?Q%Qv-x!3g|Jm{U&q23$Q!GNyLEhuBuf*CRZ!GrxEa^Bl38t66|eujzwk4LI{H@_{Xlx>i=cDXA3T3uYf0kG4Wi`&=#PD24aNHf)0lP zJJ`d1RzGK96sF9!XUa8PR@nj!?|K^E0EE)m^Y|4GCM05?u@p>Y5zh?ez-$Sai)k_^ zmaN8~;TVQFZ3R3Brh=aHRlPU@jB0cy=zrFRX`Ea77yemHvAMceW3eSF0>Y>|2F zEdic)4g4=*WxMfS1#ejz#;WOF2A90HM!>JO$CTxydBCm3EK_u`!x~hy{Gx>c-mDSZ zQLM@^Y@M>UO##p>zv)XavKN4r(KH#BEy@_oQBH(t!W4_x%Y&vI+?tNO!y(SljK|Lz zEw5m*ze4f`-VJM7Y!MqCV#`m`1RcTeHb2b!{V+cnmS3WDm=5{Ck;8`?gPTTa76O?N zuF?<$d%!G>o%`rC&Y?kf_A~=&oT1{dJ@lz_==Uix}4pc%q^OBR^^PMlhedvW6LGS6-sGD zI(tWaZdBC@PPODvjyaZ=Ba{tLhRm!i_~2Lhau22!9H*=dr5PCWj$1T!xu|E^M`QH_ zeB>$&d$%6^GR~xw5i3Ju$L7?6@(*e;Tv6mejffM$5siG#=0 z|AI4XBEB=&XN&Tg;Vi*$LXG2}&p|DNu{3#n#UDXrcaK{Ibuw8hDLdD!S09aQ8*(t! z`#v_lg4HIp0Fpw2Q0bU(&C)_M@i-m8shFZk-@4HQvs07JUH!B6LMKf+(M_-mKA38d=Y=wfZ zB2ZhYk0U5>oCE3{0&MqY&{g=q8HLM}B!3P+J_wBoBxsAe$18=x5feR>oeyIkp$7vA z52!*Z49L*!4I4RIWyNQKdj$)zj_CJE^c=FCCELg%!DP!}q&7DMdrk6{$n^?2Ngtu~ zh7kdBAUTmrK@w}ML~}rBmP{8Z)kAj~CT1T>P07y`fqtEbOCGw>P@KVPFwR2|4oc26 zf&06UxN2Ux3JG`x>|?NI+0PwkfgQLpddyNwVS?_1Lz1X&Q#zT2kidR@5*LeeGSjVt z@3;-g^wb_>X2Dr9QVXVStAb=7Eo;5(`V^0>g6k}L*dzky5Iu~lnf5uY4LG6NW=}tS zFdfe1sAkff@wwJSwL`t{L z-G8Gk>$|X6N*gMa+J==(ly{D=|t!b&b zpRLF4XQxYG1j(#FZIw#}^GwPN(qW4*`&LgFuGxXF6fsUtxw;;BsEOH0^u$F|`luGB z`~NGZGE~_*Qi6^ugt6@@J3Q?6-ZoXq-%;zEb)E5$q>7=A8>sgFmTrCEB%ex@ zhlEg^dyta3o0VySvnbCT+_Oq&KaTRua|q@DpW5Jy-08fdk^bMRX1F#ZG;} z=+M(^s12^vZsg#B=9?sm&oNro5i2(`d^0j!jojuPzIT!7ROIIwjo(xd19E#3+?+@S z=g4K>vh8`qZ|cQh1&##4Vrhc5sy0ztbw2NfnkXQAXE$qw+b4s=*xcT1#XG4|wJtW~ z!V;H3(&})L=0>xE|C~G}09j$l=0ULZi#RBn%C6m~wm9sL6>?aWiSP3+-6s~6T?uvL zeJha3z`!m(e2^shRjTqgj1Zc*=QxFo>4wt3OJBUqSQw8sQ=y2wg%E}GO$7jC=@LNpg4R9ZKiW-1#Imb6ZuJK*q8`1Y~l#RxwZ^Af= xQz7>yd;?Q|SI{|AK}~kgFcP8zJs=M(dRB2iB{RjEXT?7CC literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/it.ts b/Source/Resource/Translations/it.ts index 7e258c080..9a0939eca 100644 --- a/Source/Resource/Translations/it.ts +++ b/Source/Resource/Translations/it.ts @@ -1,1009 +1,1010 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + MediaInfo fornisce un accesso veloce alle informazioni tecniche ed alle etichette dei file audio e video. +Ad eccezione dell'interfaccia grafica Mac App Store, è un software open source, che significa che è gratuito per l'utente finale e lo sviluppatore è libero di studiare e migliorare e ridistribuire il programma (licenza LGPL) - - Go to website - + + Go to WebSite + Sito web MediaInfo - - Check for new version - + + CheckNewVersion + Controlla aggiornamenti programma - + Donate - + Dona - - Write mail to author - + + WriteMe + Invia email all'autore - + Translator : Zen - + Traduzione : Dr4k0 & Bovirus - + OK - + OK - + About - + Info programma EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Nome completo Export - - Choose your desired export format - + + Choose export format + Scegli il formato in cui esportare - - Format: - + + Format + Formato - - Profile: - + + Profile + - + Advanced mode - + Modalità avanzata + + + + File_Append + Aggiungi a un file esistente (attenzione: assicurarsi che abbiano caratteristiche uguali) - - Append to the existing file - + + Export + Esporta - - + + Text - + Testo - - + + Graph - + Grafico - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Visualizza - + Help - + ? - + Options - + Opzioni - + File - + File - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Info programma - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Esci - + Ctrl+Q - + - + Known formats - + Formati conosciuti - + Known codecs - + Codec conosciuti - + Known parameters - + Parametri conosciuti - + English - + - + Français - + - + Preferences - + Preferenze - + Ctrl+P - + - + Export - + Esporta - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Modalità avanzata - - Full parse - + + FullParsing + Analisi completa - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Predefinito - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formato - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Installazione - + 0 - + - + Advanced - + Modalità avanzata - + 1 - + - + Customize - + Personalizza - + Sheet - + Scheda - + 2 - + - + Tree & Text - + Struttura e testo - + 3 - + - + Custom - + Vista personalizzata - + 4 - + - + Graph - + Grafico - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Formato destinazione - - 11 - + + Language + Lingua - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Controlla aggiornamenti (richiede una connessione a internet) - - 16 - + + Shell extension + Aggiungi 'Apri con MediaInfo' al menu contestuale - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Informazioni in Explorer (in Explorer, spostati sul file e verranno visualizzate le informazioni) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Aggiungi data creazione all'output testo - + Close all before open - + Chiudi tutto prima di aprire - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Visualizza menu - + Show toolbar - + Visualizza barra strumenti - - When content is detected - + + DisplayCaptions_Content + Visualizza didascalie - contenuto - - When content or a command is detected - + + DisplayCaptions_Command + Visualizza didascalie - comando - - Even when no content or command is detected - + + DisplayCaptions_Stream + Visualizza didascalie - stream - - Handling of 608/708 streams: - + + DisplayCaptions + Visualizza didascalie - + Add version to text output - + Aggiungi versione all'output del testo - + Enable FFmpeg plugin - + Abilita plugin FFmpeg - - Choose your desired custom sheet - + + Choose custom sheet + Personalizza modalità scheda - - - + + + Delete - + Elimina - - - + + + Edit - + Modifica - - - + + + New - + Nuovo - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Personalizza modalità testo - + ADM: Show ChannelFormats - + ADM: Visualizza formati canale - + ADM: Show TrackUIDs - + ADM: Visualizza TRACKUID - + Preferences - + Preferenze - + File Name - + QObject - + Easy - + - + Sheet - + Scheda - + Tree - + struttura - + Text - + Testo - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Grafico - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Vista personalizzata - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Riassunto editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/ja.qm b/Source/Resource/Translations/ja.qm index be651eede2edc9cb0da5c140b31664afee169fa8..867a5056684a7b3ab884f4f38df81fb95a0de1ff 100644 GIT binary patch literal 5315 zcmb7IdvH|M8UK>p-E1~*43?p^y;!kf%HxoZEn*83vV;J6kOv7AFx=fe+1>2s-gWnG z9%v{i(;*3tG!~qZ%7{W~g^pC^5iRur2x=*GrV1U46+5T}`x@jQ3!VPXy~#~>_mb-D zZ~W}+%&AeBd9wdPcZAPcGx5Bk!GJd13yU8 zff;*2KOi00zZPq$xfaim4p-ql1*Nl{KLx(aT%Fz0yN`jdW3stA|L6$xmEij<$Dt$O zn{&{aNiRa*0p|nGEa*GQ`M3{!iZ(d+@2|yL>^!ly1^&L79oo48{AXwH=0&h~m#Zja zBJ4Tsy7SlVcz@DW`#kopU_s7rum1yj9(B*Z6o>v7-G>KGLeFORZ?@{-^ELO0xo=`$ zC+GHL{T1>va!=R5f9|}z_g+hY-wkthe4Kajb)ip{xfXu4VB51C-?tYoxbQIe?k#-1 z+(VS{UJzmWEU?p~sfx~1Fca9%!Sr2ri0y$kgWCsKokfwq zSd(>4ZsFd>P#U41YKW7cLZr|VQmKtJlBtuX(HwGbZmC;?r&6k*=~&B%;a5g8jk_|s z8}CM`%P9s<3e5r+PCC9dQaLqHHMuQS?y2Gakg`N=)8x)+bKDhLv?mq{1a-NzV!B+$ zSlP@nR(7{+pvq%hnWb`FZY*!8b|>4Lv3!hROKlcrTUbBKXm}@aFLq@&d~ua+e*D_X ze_2necjJ~uu~%#}dxae|?!pgFZCnZ3r`dDtWj4eDtcGo1t5_zvAw?k{Oev=*e!?Uj z4ibjS*vNzIZ{Yk4+YdP(u^a3#{`RnI;Cut`_u)EJdwJFEOk)}BSv;M`w`1b16*pqn zo`yt7V}3~OH)85M`@6yW1EvM2cVWZyMCnEc3*SGr{u?adJ6E@ptzcVO#`b~E^?0vs zx{{a!{YR+=yGz!0vJ8IDLy%nm$WLnS%Nnr?Hk8sr*x`ZhdtmQ1Hbm1|rnNg#adV!tAm49FptHdq#~$k zaV~R%Om5R+9g0y##xlxdzd)c4v5OFX+9DlBh}{?qUd}&Uy%Nzjk_~F$+iT{t@S`^y zo)VET(AKon+^YVWtDjhYC#!DCVGV+O1I9Ag!84% zb5ylTTRWU)`dBc>;+PT*rm}KT6*VCZt1X;V)l^fR24ioqU%@G(4w0I8cbf0MNXd5B zC?T~ar24h4FR|6BR0ZTg9Je8g6Nr4>(mvb6+muAa&@7ck>Rnj-V+$!Q>JHh${%-)J z@^y`D|0r*_j=)1(eP6 z7GA32k*FPT!s`FF{uvc=fW3f_Kb6!v^OmVvmn!>^aK5-5aoz}VQb^{TWM+bmPbb=h zrDKsv7gb^?3p%>Bok%xo{dsnTeax;|gxPgb9i814FNxfOR#62 zg_fE_yvt6B8E9D^32Yg;Fdq#ejXtpa ztTN^jeR!hn!2M{-6?#JPXhi9$P)1WaO`)aKf}|6JjEtnvu z7>mXHC_@SJONTKG358@R6vx#Mq(J+O>!?{@NfF$N8KpxpyKkBTY#ar?v=~+As(p|& z(;^%eOgpf5!B=uAOE=z=~T2TWD zC14-55flZ}-o7frj&C|ZUy-$pp;R?Wr$Mumy zXUo$yGPhdd^XrTnJ7zq!v2DDTmJV - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +著作 (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + MediaInfo により、動画ファイルや音声ファイルの技術情報やタグ情報に簡単にアクセスできます。 +Mac App Store のグラフィカルユーザーインターフェース以外は、オープンソースのソフトウェアです。つまりこのプログラムは最終利用者に無償で提供され、開発者は自由にプログラムを研究、改良、再配布できます (BSDライセンス)。 - - Check for new version - + + Go to WebSite + ウェブサイトを開く - + + CheckNewVersion + 最新版のチェック + + + Donate - + 寄付 - - Write mail to author - + + WriteMe + 開発者にメール送信 - + Translator : Zen - + 翻訳者 : だい(barlog), maboroshin(pc.genkaku.in) - + OK - + OK - + About - + このソフトの情報 EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + 完全なパス Export - - Choose your desired export format - + + Choose export format + 出力形式を選択してください - - Format: - + + Format + 形式 - - Profile: - + + Profile + - + Advanced mode - + 詳細モード + + + + File_Append + 既存のファイルの末尾に追加 (警告 : 設定値が同じになるよう注意してください) - - Append to the existing file - + + Export + エクスポート - - + + Text - + テキスト - - + + Graph - + グラフ - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + 表示 - + Help - + ヘルプ - + Options - + オプション - + File - + ファイル - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + このソフトの情報 - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + 終了 - + Ctrl+Q - + - + Known formats - + 対応する形式 - + Known codecs - + 対応するコーデック - + Known parameters - + 対応するタグ - + English - + - + Français - + - + Preferences - + 設定 - + Ctrl+P - + - + Export - + エクスポート - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + 詳細モード - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + 形式 - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + 基本 - + 0 - + - + Advanced - + 詳細 - + 1 - + - + Customize - + カスタマイズ - + Sheet - + シート - + 2 - + - + Tree & Text - + ツリーとテキスト - + 3 - + - + Custom - + カスタム - + 4 - + - + Graph - + グラフ - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + 出力形式 - - 11 - + + Language + 言語 - - 12 - + + Monospaced font size + - - 14 - + + Newest version + 最新バージョンを確認 (要ネット接続) - - 16 - + + Shell extension + エクスプローラーに統合 (ファイルの右クリックメニューに登録) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + エクスプローラーでツールチップ (対応ファイル上でツールチップを表示) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + 出力テキストに作成日を追加 - + Close all before open - + すべて閉じてから開く - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + メニューを表示 - + Show toolbar - + ツールバーを表示 - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + 出力テキストにバージョン情報を追加 - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + 編集するシートを選択してください - - - + + + Delete - + 削除 - - - + + + Edit - + 編集 - - - + + + New - + 新規 - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + 編集するテキストを選択してください - + ADM: Show ChannelFormats - + ADM: ChannelFormat を表示 - + ADM: Show TrackUIDs - + ADM: TrackUID を表示 - + Preferences - + 設定 - + File Name - + QObject - + Easy - + - + Sheet - + シート - + Tree - + ツリー - + Text - + テキスト - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + グラフ - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + カスタム - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + 概要 editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/ka.qm b/Source/Resource/Translations/ka.qm index be651eede2edc9cb0da5c140b31664afee169fa8..2ebf930bffc4e7bc1b3fe86005642d36c628ee95 100644 GIT binary patch literal 6704 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 literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/ka.ts b/Source/Resource/Translations/ka.ts index 7e258c080..0db50fce8 100644 --- a/Source/Resource/Translations/ka.ts +++ b/Source/Resource/Translations/ka.ts @@ -1,14 +1,20 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information + + MediaInfo v%1 +ყველა უფლება დაცულია (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Supply very detailled information about a multimedia file: Matroska, OGG (including OGM) MPEG1 (including VCD) @@ -18,992 +24,996 @@ Quicktime RealMedia WindowsMedia (including WMV, WMA) Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + გადადით ვებ-გვერდძე - - Check for new version - + + CheckNewVersion + ახალი ვერსიის შემოწმება - + Donate - + შემოწირულობა - - Write mail to author - + + WriteMe + მიწერეთ ავტორს - + Translator : Zen - + მთარგმნელი : G Release - + OK - + კარგი - + About - + ამის შესახებ EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + სრული სახელი Export - - Choose your desired export format - + + Choose export format + Choose your desired export format - - Format: - + + Format + ფორმატი - - Profile: - + + Profile + - + Advanced mode - + დამატებითი რეჟიმი + + + + File_Append + Append to the existing file (Warning : be careful to have the same parameters) - - Append to the existing file - + + Export + გატანა - - + + Text - + ტექსტი - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + ჩვენება - + Help - + დახმარება - + Options - + ოპციები - + File - + ფაილი - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + ამის შესახებ - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + გასვლა - + Ctrl+Q - + - + Known formats - + ცნობილი ფორმატები - + Known codecs - + ცნობილი კოდეკები - + Known parameters - + ცნობილი პარამეტრები - + English - + - + Français - + - + Preferences - + პარამეტრები - + Ctrl+P - + - + Export - + გატანა - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + დამატებითი რეჟიმი - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + ფორმატი - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + ინსტლაცია - + 0 - + - + Advanced - + დამატებით - + 1 - + - + Customize - + მორგება - + Sheet - + ცხრილი - + 2 - + - + Tree & Text - + სვეტი & ტექსტი - + 3 - + - + Custom - + სტანდარტული - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + გამავალის ფორმატი - - 11 - + + Language + ინტერფეისის ენა - - 12 - + + Monospaced font size + - - 14 - + + Newest version + ჩეამოწმე განახლება ( ) - - 16 - + + Shell extension + Explorer extension (in Windows Explorer, right click on a file, there will be a MediaInfo option) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Explorer Tooltip (in Windows Explorer, move the mouse over the file, info will be displayed) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + დახურე ყველა გახსნამდე - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + მაჩვენე მენიუ - + Show toolbar - + მაჩვენე პანელი - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Choose your desired custom sheet - - - + + + Delete - + წაშლა - - - + + + Edit - + რედაქტირება - - - + + + New - + ახალიმოითხოვსინტერნეტს - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Choose your desired custom text - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + პარამეტრები - + File Name - + QObject - + Easy - + - + Sheet - + ცხრილი - + Tree - + სვეტი - + Text - + ტექსტი - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + სტანდარტული - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + ვებ-გვერდი - + no selection - + - + Summary - + Summary editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/ko.qm b/Source/Resource/Translations/ko.qm index be651eede2edc9cb0da5c140b31664afee169fa8..10e371a6a4ae9473dfaf96d87409ece918123026 100644 GIT binary patch literal 5501 zcmb7IZBP{F9sdK%aU39sU~I~CHVqn_8a!!ij7=Lacc4@bi6D@S#x8dYcY3#bz1st9 zY^Kwi8QZ3rq#^BxWID~1w3&K3iWosL1_PMLSC!*~A^3%9)BFgJmP;Trt-hZO6rLR!# z&?%zQLCU=dy4DdY|CU5lTt#0g9>n@1dU$<5k?noj`pXH3L;7mTp~k~L(D}K(F8j5< zmae3>92Zf3KRx^BQQ+UAXFmmA$piXY>ZhOH`GBavPw(9HfZuic$dOI7yeI3;$n((8 zpKW#hiKy_Y?1uy|QPCsWRsU7+{JZQ=9ytWKlR3ZH0D0+9&S?C%(5FA={66Tz{hM2_ zP6PfGF1GF+z?XBeBYVJSP+ynd;@;ba_q3b4*xd*CS$(yPa93Uj-CUo(=9T1j{iF=v zU(7vq8gy-ymTVdXofVcBpfg#YxBSWjI?G*_BS#vc*ICQNo;JwwM4tc67eW8wytl;? zyx(Fi$tnk(Ro2QA`|$p(wQ=AM{4|~a{+(M`pSFGbZxPV@vhBT}#XcbyH zp1&54J6uFriXTBz2}t4+n^ij`%CP)LsL; z*y$5J`y0icRxup$%TgMm^_czK59ivC*$o7XOO^yhOoJ<#ygM3Gl}kfIyNQoc3VhL4 znO9`KP3&m)XP|YGn?&-Gp9HEWi8@Ipp1Nr@Z6I5M)Yp!_jOQwH(ps!FWXDxQk7~Ob z+K6`x_znt#mO#~@Ba(t|&E%k+)Ic^v_$S<=*Dusdoig9OdV|d=hYp1OT|R}ca<1iT z?Dm>RYwR@}c@4@D7KLg_RQP7c&Ia3JeY0X`KR;C#A0+;Ap?WYrL;Oja+fBC7v9V29 zdFGMfgIFtKcW5)&Af^D3!cZ?l`>|gK@pjNwTueQ-bA#5+IUf{d&`nf}cN?^?tx(@( z^0h|$>Y`S1O>V)y89Q^x$27=#ND$SG6T!2a9)o!ncs_$~e)2#%1#1u{w841HpaH-p zon)gne3jrbnR=kh!WX7T8=hM=-PkUbx?7{I>o3F2%so5d@;Y1$(*eBtc}%u9Fi=9qQ zBZuSv0K?7rMWBKJhk9TLFU;eC5a?_)HA>aHd5)IPqCZisiM1ky`HboU|pl3y4rv89roKpwKA?Ljh3{ z8-<_-pI__sE6qMpRJ1~2i(NaG4;JqZer(_rIlSG1Y{-_lYq`Bb(yiUoSc{(9iB1Zxou(~WCmCgZ(y;g9%h+xvE}6V43xs{ zlH4Ql9;B8h@_$hmgKA*=gs`K;yO1la@;0N+vgX61 z==bq>p|Xim_g=^X~@rFq%@5`~C2Ikn!x+2gLi~ z#<4D9NNi2^59Zkn$-bKGA0ONp@1I4L9{>2#5SyJ$y2pz7?%|0>6gkL8SlcosYBZ%J zQN4)XgKX(yvdosIR9D6ktY{ou90MO(WE1fNpQeOwxii3en-B=_9U`()2rAY@r5gA5N&s)L{c7U&ru&U#o!`X5~hYCMpbIi%Vop-<13&^dXi-UerN0 z+I4Ax*NOW#Fl}$bB=fko>NAfXyg>xeW`laM%O42^gab}tp*Um+^c_rxKExi2cs4Xi zTAZ^xi}NtrOTG67j3 zHN?r)W_(lW8^_x*ne<-1c{z(&WM*b`>X5&WEjiFNP|u4G?K4P z4M9GU&AM-{0vE# z=p1>^?C97hdgf1ZOCCfPfi7_pSp>)3Bcc`o-SfP%2#R9{FoKg~N;5+(hMDY(|G - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +저작권 (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + 미디어 파일에 대한 +상세한 정보를 제공: +Matroska, OGG (OGM 포함) +MPEG1 (VCD 포함) +MPEG2 (DVD와 SVCD 포함) +MPEG4 (Itunes M4A 포함) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (WMV, WMA 포함) +Microsoft RIFF (AVI, WAV 포함) +음악 포맷 (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + 웹사이트로 가기 - - Check for new version - + + CheckNewVersion + 최신 버전 확인 - + Donate - + 기부하기 - - Write mail to author - + + WriteMe + 제작자에게 메일쓰기 - + Translator : Zen - + 번역 : starcodec(http://www.starcodec.com) - + OK - + 확인 - + About - + 정보 EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + 전체 이름 Export - - Choose your desired export format - + + Choose export format + 원하는 내보내기 형식을 선택하세요 - - Format: - + + Format + 포맷 - - Profile: - + + Profile + - + Advanced mode - + 고급 모드 - - Append to the existing file - + + File_Append + 존재하는 파일에 이어쓰기 (경고 : 같은 파라미터인지 주의하세요) - - + + Export + 내보내기 + + + + Text - + 텍스트 - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + 보기 - + Help - + 도움말 - + Options - + 옵션 - + File - + 파일 - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + 정보 - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + 종료 - + Ctrl+Q - + - + Known formats - + 알고 있는 포맷 - + Known codecs - + 알고 있는 코덱 - + Known parameters - + 알고 있는 파라미터 - + English - + - + Français - + - + Preferences - + 환경 설정 - + Ctrl+P - + - + Export - + 내보내기 - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + 고급 모드 - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + 포맷 - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + 설정 - + 0 - + - + Advanced - + 고급 - + 1 - + - + Customize - + 커스터마이즈 - + Sheet - + 시트 - + 2 - + - + Tree & Text - + 트리 & 텍스트 - + 3 - + - + Custom - + 커스텀 - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + 출력 형식 - - 11 - + + Language + 언어 - - 12 - + + Monospaced font size + - - 14 - + + Newest version + 최신 버전 확인 (인터넷 연결이 필요함) - - 16 - + + Shell extension + 쉘 익스텐션 (탐색기 마우스 오른쪽 버튼 메뉴에 Media Info를 추가합니다) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + 쉘 인포팁 (탐색기에서 파일에 마우스를 올려 놓으면 정보를 보여줍니다) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + 열기 전에 모두 닫기 - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + 메뉴 보기 - + Show toolbar - + 도구 모음 보기 - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + 원하는 커스텀 시트를 선택하세요 - - - + + + Delete - + 삭제 - - - + + + Edit - + 편집 - - - + + + New - + 새로 만들기 - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + 원하는 커스텀 텍스트를 선택하세요 - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + 환경 설정 - + File Name - + QObject - + Easy - + - + Sheet - + 시트 - + Tree - + 트리 - + Text - + 텍스트 - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + 커스텀 - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + - + no selection - + - + Summary - + 요약 editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/lt.qm b/Source/Resource/Translations/lt.qm index be651eede2edc9cb0da5c140b31664afee169fa8..5da35ec8b9eb84e2d428effcfc96401eeb5959b7 100644 GIT binary patch literal 6752 zcmb_gX>1%<9sjSrm)GkfaqOfhil&gmfi!VU8$u{;x4X9EChMeG$8La-j(4AT$DW;8 z?atb95fu^$dH_P=lnNCURG=n8C2C703T;E8(x5i|#G$B2z$Zi~d?4^CD!>1GyEA)? z-2@@a^Jd??|9!tZU(9W~^pEd;^Nm|Kzx?1+zj*scMATtA_u{#qDD*L+V3uh5HKO%< ziB6s)+IX3QKMxYEyNiOCu|~f_!MCE8(tVPyBsz!&{~CCr z@@dHTXh$^lE26$^$E|vfsQ*yM@O1~jFLnHJ#}|l(?(Y2lUhqrjI$yc?1IY7c=cNV6 z6D|bzy!Hmpp9`Md^)$|ZD0ueFNzlP>UWXnFzHkux^u^%irElQ;UbRMF3jX%%z#G}6 z)~@ZL{G%J7>t{mG{|tEJPlh|_ImrKV_%q>7qS&+HZ)bsL@WU|u-l2)h5fI?9^dI+>HG`ybFur^Y3Q#f9>4Nx75F}-)@UUD_Ic*#s#*uq zy@b9U8{lc+4w#fXF4mq2TXSq}R?KCL zHsqh9G?3%~qSGW0&VwbEY8&mPm}Jty4r_sBXNeu0H>gsRf0&ZA6T71{g1=F^O}>rN z9oX|QCxAf!!|oc(8fAd{7#*gV%jQSZB4_B6*1WAPZQC15+NG7UkuNyfaB`fdmWjV+vA2LV zhJWc9@;r;1ml#Z1!9E*ZqdB~rI9H(qIG@Iw11vB+sOhu|Cyvkr{xlkft<)~tPKV%5 z?Q0qeW7wmx>jc!i+SwVXHq~@?bk(ydn!#C?tc+&{zgl5$Uln!|oK>Y^Si&^j4%0A) z_hZ+9b{6s7fTjfYj^W8#^h_J0S$wsiVVjmAvG-*)xn^-@M(T>+6s@$Rq%>*630YUi z;E?0^TMbVFSSD+D_?>y42A)MY;RLwkuw-ZUEUjV#_&_yDAC|Bwz+~iGLhiB+6Lh?` zqd3?N$K6dkU03aMUG!$lW?hh5up;UlwU1b@0Uw`>KN0b-omn1K@3 zCH!+ju<*}FJSO5vyI3-XBc}AC#MCvGGn`C82uCK(?KBDUB{F4lkeLZM7%##<@NgTx zom^CC#Rmc*S1B8k1>3F&O-Q2Jyj?EpvJf<~F@!K}L|X-Vh~^@xon`Abf;|cDnX?5M zTY1Tk(lGC`6ax9>A-q@cjghhwSb-kwD2_RgoAP~_QqU+zAZvravZHYJS0#yK&(n?* zs9BP6)!)I3E-@fqVbAmB?s3BurxK--uyU<3^dtJ}S(5eXc|v&HS6A%$OsGT!S3jYN zvR*2*qK?u*1YVjByXS%jr_+a9kM+u2&gyTbADkAa+bp$KX^*9K!iIXRK2zR04ytBdaOs%ak8(GgjBKeD|tOgSD5X*kdj-Yg=5Y?QXGE@NYGTxGS;|7Qmmf4h2JTW#UQt1O)reH5?$%1ZK!c-YX z^3}*^EqeXvOv~KE4a;#f2B`)m4S3j5N3)B^CsY22?|}e0{AuWWRLja$%m(Y+Lvpvr znVVZ;)d-))yM|v?tR;TBuA(J!IW3Dmm93-Y(AIMk?jUVxm^Mmk;Aj(!doM-b8!Qy{ z8=?6=rn#gBjvJviA9k>l$*Xv55y5FQtZ4f*V0!qWe+XS=t=T%*i<~Lu4M$eV7sV z(;oVWT)C0s@rg%@BHjX<=X^PG@^r`8nwuRjuk;*|b*f=3YSZR>H7AV#zTEUu29q0) z3>Hi7#$hNUoT}{j8d1pFAH%H?PZ*8X2+0}Lm%>?8)Dq%{wW@T>GEagY%RLP%NmSSy zhCiN`-pDf#kLEj&FZsHU?*yty`fM}4)2Yv)?7^nIdy~ms>asqyG0dE_cfA=_ofK!{ z)o!3XOZGq@lm@;Hn>PIQ@T{+3YWU`=WPy23b*qad(;)J@cUGx_pH-yD+V~F~DzS2V zU4>da!5S}n>MB*@HaD!zZrZ1WLxB}m{cg0)%$wZaQiS5R>=ui{s`?uK zgUtwV9ancV6@VN>d~xSA^Z;>*(y?uGPA~gn^=>s;x9Ymh?IxOhvU|ELgtlF)PpWMa z-b7uG+<#F63$cGJ1FW2))sdrss{r}>^!T`zliCCG|l=8i4*9ETc?0)way1pwm F@L#EhEb#yU literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/lt.ts b/Source/Resource/Translations/lt.ts index 7e258c080..882aa4d5c 100644 --- a/Source/Resource/Translations/lt.ts +++ b/Source/Resource/Translations/lt.ts @@ -1,1009 +1,1019 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Autoriaus teisės (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Teikiama detali informacija +apie daugialypes bylas: +Matroska, OGG (įskaitant OGM) +MPEG1 (įskaitant VCD) +MPEG2 (įskaitant DVD ir SVCD) +MPEG4 (įskaitant Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (įskaitant WMV, WMA) +Microsoft RIFF (įskaitant AVI, WAV) +Tik-Garso formatai (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Eiti į internetinę svetainę - - Check for new version - + + CheckNewVersion + Tikrinti naujesnės versijos - + Donate - + Aukoti - - Write mail to author - + + WriteMe + Parašyk man - + Translator : Zen - + Vertėjas : Paulius - + OK - + Gerai - + About - + Apie EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Pilnas pavadinimas Export - - Choose your desired export format - + + Choose export format + Pasirinkite savo norimą eksportavimo formatą - - Format: - + + Format + Formatas - - Profile: - + + Profile + - + Advanced mode - + Išplėstinis režimas - - Append to the existing file - + + File_Append + Prijungtas prie egzistuojančio failo (Dėmesio : nenaudokite tų pačių parametrų) - - + + Export + Eksportuoti + + + + Text - + Tekstas - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Rodymas - + Help - + Pagalba - + Options - + Pasirinktys - + File - + Failas - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Apie - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Išeiti - + Ctrl+Q - + - + Known formats - + Žinomi formatai - + Known codecs - + Žinomi kodekai - + Known parameters - + Žinomi parametrai - + English - + - + Français - + - + Preferences - + Pasirinktys - + Ctrl+P - + - + Export - + Eksportuoti - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Išplėstinis režimas - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formatas - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Sąranka - + 0 - + - + Advanced - + Išplėstinai - + 1 - + - + Customize - + Pritaikyti - + Sheet - + Lapas - + 2 - + - + Tree & Text - + Medis ir tekstas - + 3 - + - + Custom - + Išplėstinis - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Išėjimo formatas - - 11 - + + Language + Kalba - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Tikrinti naujausių versijų (reikalinga interneto jungtis) - - 16 - + + Shell extension + Apvalkalo plėtinys (explorer'yje dešinys paspaudimas ten kur bus Media Info pasirinktis) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Apvalkalo InfoTipas (explorer'yje, užveskite pelę ant failo, bus parodyta informacija) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Uždaryti visus prieš atveriant - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Rodyti meniu - + Show toolbar - + Rodyti įrankių juostą - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Pasirinkite norimą vartotojo lapą - - - + + + Delete - + Pašalinti - - - + + + Edit - + Redaguoti - - - + + + New - + Naujas - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Pasirinkite savo norimą vartotojo tekstą - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Pasirinktys - + File Name - + QObject - + Easy - + - + Sheet - + Lapas - + Tree - + Medis - + Text - + Tekstas - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Išplėstinis - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Santrauka editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/nl.qm b/Source/Resource/Translations/nl.qm index be651eede2edc9cb0da5c140b31664afee169fa8..bfa64c5b504f0229e314b4b1e48da9471d764784 100644 GIT binary patch literal 6588 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 - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Auteursrecht (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Levert zeer gedetailleerde informatie +over multimediabestanden: +Matroska, OGG (inclusief OGM) +MPEG1 (inclusief VCD) +MPEG2 (inclusief DVD en SVCD) +MPEG4 (inclusief Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (inclusief WMV, WMA) +Microsoft RIFF (inclusief AVI, WAV) +Geluidsformaten (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Ga naar website - - Check for new version - + + CheckNewVersion + Controleer op versie - + Donate - + Doneren - - Write mail to author - + + WriteMe + Schrijf mij - + Translator : Zen - + Vertaler : bvv - + OK - + OK - + About - + Info EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Volledige naam Export - - Choose your desired export format - + + Choose export format + Kies uw gewenste exportformaat - - Format: - + + Format + Formaat - - Profile: - + + Profile + - + Advanced mode - + Geavanceerde modus - - Append to the existing file - + + File_Append + Toevoegen aan bestaande bestand (Waarschuwing : gebruik dezelfde parameters) - - + + Export + Exporteren + + + + Text - + Tekst - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Beeld - + Help - + Help - + Options - + Opties - + File - + Bestand - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Info - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Afsluiten - + Ctrl+Q - + - + Known formats - + Bekende formaten - + Known codecs - + Bekende codecs - + Known parameters - + Bekende parameters - + English - + - + Français - + - + Preferences - + Voorkeuren - + Ctrl+P - + - + Export - + Exporteren - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Geavanceerde modus - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formaat - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Setup - + 0 - + - + Advanced - + Geavanceerd - + 1 - + - + Customize - + Aanpassen - + Sheet - + Blad - + 2 - + - + Tree & Text - + Boomstructuur & Tekst - + 3 - + - + Custom - + Aangepast - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Uitvoerformaat - - 11 - + + Language + Taal - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Controleer op nieuwe versies (vereist internetverbinding) - - 16 - + + Shell extension + Shell-extensie (in explorer-rechtsklikmenu zal een Media Info optie te zien zijn...) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Shell InfoTip (houd in explorer de muiscursor boven een bestand, info wordt getoond) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Sluit alle alvorens te openen - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Menu tonen - + Show toolbar - + Werkbalk tonen - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Kies uw gewenste aangepaste blad - - - + + + Delete - + Verwijderen - - - + + + Edit - + Bewerken - - - + + + New - + Nieuw - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Kies uw gewenste aangepaste tekst - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Voorkeuren - + File Name - + QObject - + Easy - + - + Sheet - + Blad - + Tree - + Boomstructuur - + Text - + Tekst - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Aangepast - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Samenvatting editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/pl.qm b/Source/Resource/Translations/pl.qm index be651eede2edc9cb0da5c140b31664afee169fa8..99e7f4f4e7a51f4325627b0c67f8225171e2ac16 100644 GIT binary patch literal 6582 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 - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Prawa autorskie (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Dostarcza bardzo szczegółowe informacje +o pliku multimedialnym: +Matroska, OGG (wraz z OGM) +MPEG1 (wraz z VCD) +MPEG2 (wraz z DVD i SVCD) +MPEG4 (wraz z iTunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (wraz z WMV, WMA) +Microsoft RIFF (wraz z AVI, WAV) +Formaty dźwiekowe (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Odwiedź stronę programu - - Check for new version - + + CheckNewVersion + Sprawdź nową wersję - + Donate - + Donacja - - Write mail to author - + + WriteMe + Napisz do mnie - + Translator : Zen - + Tłumacz : Gregg - + OK - + Ok - + About - + O programie EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Pełna ścieżka Export - - Choose your desired export format - + + Choose export format + Wybierz preferowany format eksportu - - Format: - + + Format + Format - - Profile: - + + Profile + - + Advanced mode - + Tryb zaawansowany - - Append to the existing file - + + File_Append + Dołącz do istniejacego pliku (Ostrzeżenie: Upewnij się, że ma takie same parametry) - - + + Export + Eksport + + + + Text - + Tekst - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Widok - + Help - + Pomoc - + Options - + Opcje - + File - + Plik - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + O programie - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Wyjście - + Ctrl+Q - + - + Known formats - + Znane formaty - + Known codecs - + Znane kodeki - + Known parameters - + Znane parametry - + English - + - + Français - + - + Preferences - + Preferencje - + Ctrl+P - + - + Export - + Eksport - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Tryb zaawansowany - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Format - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Ustawienia - + 0 - + - + Advanced - + Zaawansowane - + 1 - + - + Customize - + Dostosowanie - + Sheet - + Karta - + 2 - + - + Tree & Text - + Drzewo i tekst - + 3 - + - + Custom - + Własne szablony - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Wyjściowy format - - 11 - + + Language + Język - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Sprawdź czy są nowe wersje (wmagane jest połączenie z siecią) - - 16 - + + Shell extension + Rozszerzenie powłoki (menu kontekstowe w eksploratorze) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Informacje powłoki (w eksploratorze najedź kursorem na plik, wyświetlą się informacje) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Zamykaj wszystko przed otwarciem pliku - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Pokaż menu - + Show toolbar - + Pokaż pasek narzędzi - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Dostosuj preferowaną własną kartę - - - + + + Delete - + Usuń - - - + + + Edit - + Edytuj - - - + + + New - + Nowy - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Dostosuj preferowany szablon - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Preferencje - + File Name - + QObject - + Easy - + - + Sheet - + Karta - + Tree - + Drzewo - + Text - + Tekst - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Własne szablony - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Sieć - + no selection - + - + Summary - + Podsumowanie editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/pt-BR.qm b/Source/Resource/Translations/pt-BR.qm index be651eede2edc9cb0da5c140b31664afee169fa8..df056bab052a8bfc5c79c94268c98b2667451bca 100644 GIT binary patch literal 6495 zcmbtYYit}>6+W@|mGzUvcCBDwLYv@7P2!le1Vam(T{}sWb<(V36QnfE?q2VXvpX}) z&f1BQ_yPPVrA0{47EzG;6jhTyRBb8ZRZ2=rs}dvx3JOIE5sE|#{2=**io|#B-JRLT z*f>I~-8(aT-sjx!oI9UC~UhY_a5C#)UgLQpCAg| zMKtp|(fj6zPCQRE^m_{ZI7HN6q|gPdv0Etg+bvj^DD=k>qUeXzI`}UNy*oy<{sR;~ zcOB2C)H-y8!Y{uFIm;Bj0J-r8Xz(r*^1nnM?0bP|!wB8F^J${)$7$aq=V1}4HEPlH z{Y9e44Yl@PSL@&#G}oCT>RP7bZ@mKkb9DR~_%>Wq>(Kk@fg8Ue>apmVcXQD9Bf6C6 zAR4&3?y<^!@b5%NEcHvG-iJCi>v^KSYRBk*T-;yp`141;LNs`w^YLAI>uK(GMe;{Aqj^BN` z0{ed#f9Y$l!QSEcPabrUmn-q}dwz|4JlS=o^9uBD?s_AQ_;nY%Fa4qlyGGO+{a*Jw zud+S+)w;px{l;?w`kw0h)Wt7D?xTILCQ?M}o--iqJy24dGGtMf91=0yQUu>{B5PIM zsCTuF2}kJ&h%Cxc6|0V~MkekTajoH3;7Nt9kmZT#OBO}$)U;Td6;8#l%oc$$N`W1M zJcdZhGIdw9(2dXmsmzv2S($}zg$!~VZ0^}-X|AQsiEPGb6X8%A_T|B%LzqePQp6%{ zp`q)^QrcXPmant8uym&wN=4@CeA<0hvPbWhg;M=@7*| zr#_w*c|$*7&Rg2zmR<3rWuI}3LebSmliRfMv9a;(<74A@Xp$=72z`esTrHD0dMMr; zhmM6>0&JM;APojq6UsGQDVH276jg9&c<#{W zacv-t9NRLkOK``))!%Djn*e7TlrCs3$T)@T+d+Gn_Tj?;V=HpttAfV_7fa%Q(+DK< z9-&Fx?OKs`79meH(T=Z3o1$6JYVc1({kC)NUXjzF8Cb~a;s~W_HxkD7-7Edi!7t^v zz_X*E;^_GakJFs=lf7H2NvIdrN->xN|E!D^Uny;ANXgYAX`vjs?kOb^ij!`g6A1|m5@(4dkH#Ld!lsjKq>E_ZC>&AdBuA& z2opj`@IjBb3zOV-row7;uH;nHPun<)z6 zO32#;#a6A7bqRDPb{D(j%jiku7j-iy@>}{{=tgDzP}V4-0a%quoSjC7r;&f& z38$ftQ^WQJBLdSH@C1kp4*umTO&})xlzrf|GQL#sUjb4W7`MwiO;#v#Fm7n@k+uB= z^~u>#Xu=gMXaWB)9x)78am}**TI`xKO5$X~wuPB*^`sa3rXi+YaYUv9BNYb_ab4O} z^hm?|9NjLq3Xai!)Nq;(d32%uGwDOEWN{F2j2f#eG$T&8NN!r-T69ZIm0{j{ZO`bLaN!L_%t@3+OJPpw0*%aa= zb9CDo{%3|;S%y&*>~YB}IvyHKDtOwurmCgV5gpTsSqM_f0J{JgXq_HUXul}gLBt=H zg9P{7oUC)+^(J;b-y0G|DxQ$;gQm4)YB@kgt`a1yzqz2vXYEm}3IYOo2heKUwwR~7 zU-8?z1JH9ZnFXou2C&=pNy1}|9=2V~ae*AeaysEM<3aFm@SME{B6!?gM;tLP909Nl zl+Z2V%fKw!RCcq5SPC+647o{RXEN|)5N2-38dAV8YvLo2_r{X(4H-_P(i2*yXf0{U zqHda^q)F4MOI7X^I8tGBWFj;V}#~W*aiG(nB#3V%C|YjlaJD0 zAKvTQ*P?S1>s(ZW{aUp3LmM9z+B;~h-a$FbZB|a8uGG;&O}iz;Xjw)^O{(?&T<@v8 z;V&be@WqSI##;BxRV%Jl)+*fK1C@=fQCU45zKRXaDmeCm8g`>584$Qix#hYNUDy>4 z4a@b1I9(pg8aKmWvcyw>UMgu>0R#}5g>D$AXj7mo&9h4+DFYJ7&-=MO?l9Vm>Uza( zEK9s@OI)wq&gwwW=tCqWc;pIHx(D5sgG1CQrr zTu*pL^`(r8UDD4abswtQOuGkDJmWI&G=7nAiUBvR#&m@lTx_#Q0q<@0bIJ3V5A7@YeRDn!wfdZK0Yc@# z)H1sB0i0)BzlK6Qa0k+lf}T&eS(F0fAfJrNz&)NWd4}Y3W`T>u%fP^-sb@<^3hZQ1Gu!n5gor1Iy0*dg64RP{n|CCB9P1IKC4yiU9b3G}ptowm}8 z6|T5CI@eG2qq6Y%)W`d?o=NTxSG>%sQ@sYm6{t8^dD`};>0X#4DsCOZ11;mIH%!&g z#nTOMK3%>S@PpBFSoWEQgGpNyZ+<{%6R}B7Sp2R-oe+40uf6T?!W_;Bw<_neHueF} zouDQWmgl~}IDALOkvq%|c+bNI4;MUEjv}tSn>hMhlN>G13ZJdZxKl63>Yb{J$f@}G zZ(tPkH;lrPxACnG>tsF$eNAanGZN1Tem;9(KH37mXPPmB{r|c|WCeBdO`R0HHfOSM z#;p|??*(>~H#3{hy-XD;8^{MpHlN?A$wMrz{TC>zBsrA6>3zy{v`k^v-xIbaZ%7(n zn+_q8Pmd;5y}YlN^ITb&)xZ?q*}|TMjSfC+sVZtUxbhPvnt{rn8M~!;*Ro1k-3in% zj2Ae3Vp@j8t@zHsz~%#C*Nh{CwpFX23)_6W$(|j(_i%PWECG1Ku;LC)+E^jASy SPjDw*3%8Kn53Y{Rb^isK9Sto2 literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/pt-BR.ts b/Source/Resource/Translations/pt-BR.ts index 7e258c080..bad1a433e 100644 --- a/Source/Resource/Translations/pt-BR.ts +++ b/Source/Resource/Translations/pt-BR.ts @@ -1,1009 +1,1019 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Proporciona informações detalhadas +sobre um arquivo multimídia: +Matroska, OGG (incluíndo OGM) +MPEG1 (incluíndo VCD) +MPEG2 (incluíndo DVD e SVCD) +MPEG4 (incluíndo iTunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +Windows Media (incluíndo WMV, WMA) +Microsoft RIFF (incluíndo AVI, WAV) +Arquivos de som (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Ir para o site - - Check for new version - + + CheckNewVersion + Procurar nova versão - + Donate - + Doar - - Write mail to author - + + WriteMe + Me escreva - + Translator : Zen - + Tradutor : ReX - + OK - + OK - + About - + Sobre EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Nome completo Export - - Choose your desired export format - + + Choose export format + Escolha o formato de exportação - - Format: - + + Format + Formato - - Profile: - + + Profile + - + Advanced mode - + Modo avançado + + + + File_Append + Anexar a um arquivo existente (Aviso : assegure-se que os parâmetros sejam iguais) - - Append to the existing file - + + Export + Exportar - - + + Text - + Texto - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Exibir - + Help - + Ajuda - + Options - + Opções - + File - + Arquivo - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Sobre - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Sair - + Ctrl+Q - + - + Known formats - + Formatos - + Known codecs - + Codecs conhecidos - + Known parameters - + Parâmetros - + English - + - + Français - + - + Preferences - + Preferências - + Ctrl+P - + - + Export - + Exportar - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Modo avançado - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formato - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Configurações - + 0 - + - + Advanced - + Avançado - + 1 - + - + Customize - + Personalizar - + Sheet - + Formulário - + 2 - + - + Tree & Text - + Raiz & Texto - + 3 - + - + Custom - + Personalizado - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Formato de saída - - 11 - + + Language + Idioma - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Procurar novas versões (requer conexão com a Internet) - - 16 - + + Shell extension + Extensão shell (no explorer, botão direito haverá uma opção Media Info) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Info. Shell (no explorer, mova o mouse sobre o arquivo, a info. será exibida) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Fechar tudo antes de abrir - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Exibir menu - + Show toolbar - + Exibir barra de ferramentas - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Personalize o modo formulário - - - + + + Delete - + Excluir - - - + + + Edit - + Editar - - - + + + New - + Novo - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Personalize o modo texto - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Preferências - + File Name - + QObject - + Easy - + - + Sheet - + Formulário - + Tree - + Raiz - + Text - + Texto - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Personalizado - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Sumário editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/pt.qm b/Source/Resource/Translations/pt.qm index be651eede2edc9cb0da5c140b31664afee169fa8..c22a11588fb141b65b1ac328433c0072f24096f1 100644 GIT binary patch literal 7300 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 - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL + + MediaInfo v%1 +Direitos de autor (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + MediaInfo proporciona um fácil acesso a informações simples e técnicas acerca de ficheiros de vídeo e áudio. +Exceptuando a interface gráfica do utilizador da Mac App Store, é um software de código aberto, o que significa que é gratuito para o utilizador final e os programadores têm liberdade de estudar, de melhorar e de redistribuir o programa (licença BSD). -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) +Exemplos de ficheiros multimédia: +Matroska, OGG (incluíndo OGM) +MPEG1 (incluíndo VCD) +MPEG2 (incluíndo DVD e SVCD) +MPEG4 (incluíndo Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +Windows Media (incluíndo WMV, WMA) +Microsoft RIFF (incluíndo AVI, WAV) +Som nos formatos (AC3, DTS, AAC, AU, AIFF, MP3) - - Go to website - + + Go to WebSite + Ir para o site - - Check for new version - + + CheckNewVersion + Procurar nova versão - + Donate - + Doar - - Write mail to author - + + WriteMe + Escreva-me - + Translator : Zen - + Tradutor : Francisco DEX - + OK - + OK - + About - + Acerca EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Nome completo Export - - Choose your desired export format - + + Choose export format + Escolha o formato de exportação - - Format: - + + Format + Formato - - Profile: - + + Profile + - + Advanced mode - + Modo avançado + + + + File_Append + Anexar ao ficheiro existente (Aviso : assegure-se que os parâmetros sejam iguais) - - Append to the existing file - + + Export + Exportar - - + + Text - + Texto - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Vista - + Help - + Ajuda - + Options - + Opções - + File - + Ficheiro - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Acerca - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Sair - + Ctrl+Q - + - + Known formats - + Formatos conhecidos - + Known codecs - + Codecs conhecidos - + Known parameters - + Parâmetros conhecidos - + English - + - + Français - + - + Preferences - + Preferências - + Ctrl+P - + - + Export - + Exportar - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Modo avançado - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formato - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Configuração - + 0 - + - + Advanced - + Avançado - + 1 - + - + Customize - + Personalizar - + Sheet - + Formulário - + 2 - + - + Tree & Text - + Árvore & Texto - + 3 - + - + Custom - + Personalizado - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Formato de saída - - 11 - + + Language + Idioma - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Procurar novas versões (requer ligação à Internet) - - 16 - + + Shell extension + Extensão Shell (no Explorador do Windows, botão direito, haverá uma opção MediaInfo) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Info. Shell (no Explorador do Windows, mova o rato sobre o ficheiro, a info. será exibida) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Fechar tudo antes de abrir - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Mostrar menu - + Show toolbar - + Mostrar barra de ferramentas - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Personalize o modo formulário - - - + + + Delete - + Eliminar - - - + + + Edit - + Editar - - - + + + New - + Novo - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Personalize o modo texto - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Preferências - + File Name - + QObject - + Easy - + - + Sheet - + Formulário - + Tree - + Árvore - + Text - + Texto - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Personalizado - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Sumário editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/ro.qm b/Source/Resource/Translations/ro.qm index be651eede2edc9cb0da5c140b31664afee169fa8..d7278acb3fe3c1da91ccaf1582738c34356ee0bf 100644 GIT binary patch literal 6045 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 O)ALRb{cn5E=>Gv}B)n?? literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/ro.ts b/Source/Resource/Translations/ro.ts index 7e258c080..ab1dedcaf 100644 --- a/Source/Resource/Translations/ro.ts +++ b/Source/Resource/Translations/ro.ts @@ -1,1009 +1,1010 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +Drept autor (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + Furnizeaza informatii foarte detaliate + despre un fisier multimedia - - Check for new version - + + Go to WebSite + Go to website - + + CheckNewVersion + Verificati existenta unei vesiuni noi + + + Donate - + Donatii - - Write mail to author - + + WriteMe + Scrieti-mi - + Translator : Zen - + Traducator : Severin Cazanescu - + OK - + OK - + About - + Despre EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Nume complet Export - - Choose your desired export format - + + Choose export format + Selectati formatul de export particularizat - - Format: - + + Format + Format - - Profile: - + + Profile + - + Advanced mode - + Mod avansat + + + + File_Append + Adaugare la fisierul existent - - Append to the existing file - + + Export + Export - - + + Text - + Text - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Vizualizare - + Help - + Ajutor - + Options - + Optiuni - + File - + Fisier - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Despre - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Iesire - + Ctrl+Q - + - + Known formats - + Formate cunoscute - + Known codecs - + Codecuri cunoscute - + Known parameters - + Parametrii cunoscuti - + English - + - + Français - + - + Preferences - + Preferinte - + Ctrl+P - + - + Export - + Export - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Mod avansat - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Format - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Setari - + 0 - + - + Advanced - + Avansat - + 1 - + - + Customize - + Particularizare - + Sheet - + Afisare - + 2 - + - + Tree & Text - + Arbore si text - + 3 - + - + Custom - + Particularizat - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Format iesire - - 11 - + + Language + Traducere - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Verificati existenta unei versiuni noi (necesita conexiune Internet) - - 16 - + + Shell extension + Extenise (in explorer executati click dreapta) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Explorer Tooltip (in Windows Explorer, move the mouse over the file, info will be displayed) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Inchideti tot inainte de a deschide - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Afisare meniu - + Show toolbar - + Afisare toolbar - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Selectati raporul particularizat - - - + + + Delete - + Sterge - - - + + + Edit - + Editare - - - + + + New - + Nou - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Selectati textul particularizat - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Preferinte - + File Name - + QObject - + Easy - + - + Sheet - + Afisare - + Tree - + Arbore - + Text - + Text - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Particularizat - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Sumar editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/ru.qm b/Source/Resource/Translations/ru.qm index be651eede2edc9cb0da5c140b31664afee169fa8..0852d1d0177dd945ad04668dcbe7b5c662735e48 100644 GIT binary patch literal 6879 zcmb_gZERE58Ge(TIF9q#BoKrcz0lIa1jTU^2+jv_>?CA~6CfdJH&J$DUlN0TuVr5+ z&`H%KI;~$nrfsy+*pF3PwQBIEsO>84tLs2?OqBiE#8h?CwEgO;?hpJc>Yn!;=U&IY zd`**OpW}Pq^PKnVydS6kz2t_g|M~IRYg;z`?whaw=98ZjQFX2`jNe|O+CC!j4$EX)8>}9iP~fI$nKvJHGM>5uU-N>q(*-gO}(%LobRZy zO{lSRh~{fzM2+93r~mXm)_+J({~PPtzf@!AS$gT#M?}ph>5b14*zddaaip4P{Yurj z{4{LoejME@@4S5 zGw|zIY}oI`z@^?l!mb+|PS^YsdTeO;Fb@4Sz0&yc?+d`Ys78NZ<0l`0pN6e!Y=61= zd%rO7zNcmXjWfUgQl!&3nRJ{i(rB5sQ5OY7E0`Px%R|^G zjFEN18wHtp&~2wE?Z6nKAU+}5C1)W5T?uZ4a@a$sCxCB|jdwE?p~Eyu0f)(baU+@1 z$IauGw!Ez?5Vf+WbE(B8TiYJpp@o9M(5_H0)T2qNNY2ooFb!Lqi5#8`tkqPtr$AtO zQ0$c&?-SF|qSDwPEEAQ+R@UhTRRjV@#eN7HmckCgg6vscu#<9xUd&>c55dcVVw4>M zs)9Q3KMKT2wh((DR`!Y@?E*DhiM^m-Dn^GAa!_=hPC_j^@obvL@PR_XV;GcE;3_Dl zi*MpkasUcFNF$)?@}!%CDPo{wv{lNGCuNN0K&i18!4O{Sx;@vWXqF1ngn79~H;l-9 z9m3NTB_NB9F#{6^U|cqMy2J?rG>^9?T+N~tNbb6wm(=rkKPP43nc62VcTsw?;Hd0K zhvBrN_;_JNfG}Rf;5ln128?BTiusoQ5S4Bn5))zs8gZ>U4DI6y96SQOK3QBl3w<%l z3_ejgi_nqcsQB37ICP8S(8s*ukATVDBU(K@vDS@gk8|KT{&Y(xg+mg5C!pGAp~jq4 zD6?Z=zKGw`&i1XdIo-^sb=%5mVeRWid1%@!z5)^V!$CQODEH@6txkK?!Ks_iA!x+Q z<536LEa2xipR9QBbQWH|&Z&>Zz$l(Jr@%fwizh zTsxN2vrFZ`ema0q5~oRrP8^txPnMGf#8&Xk)^m3kv&N|kE8Twq5Qyt3b3SDzt(E_S zBbK9W;6ove)DOk=$q>$_n{wo=iy6oDLRv~tzB(XXc?2uF9eOcxD&5D8dndOBFsh;gV9Val*7#Of7*RlE`~OZS{mI2`0jg*G&pc1r1NM z$2`%>52K6Nst~h!4k6PI6rz{?&}m zUR1&T=3++YoTV}-*J543>qV{Y7AEb*{GBM|Z7ZYYxw!BI+~@&Vo>tn{g0Y4@v1Ual zmMbdrZg80K6X0xL9&aO_lcX#8J$;Xqqb$J)PDT48#^g zvyhiP8EGpD#rb&ish5O7PxO+yBAw}NPirSjRd zembhV;jMzTuc5bC!eSG^32a~jjQ??mz#&Bgta_7?;e{E}z!3K_Nl-F%LjEQlu{z5( zK8Bh$qpK>Zf`Q;&7rM~Bi?cm;oB^KZe1~}%vEkjw%*)6hoTEGl$;$U@*nEFE6&_+iySz}Sl zrVEQH@AGi4^0UHXez99-C)d;ble)QB&=nt7^)riYH;!6De3c4H%!g}VVaMN zJpNvnORDp9<1;b=`T#zkJ&1Zy{Bk|dd4r>BH%_d&9a!xO)I9~?NpMaX!pJLdE#t7+ z3^t9ty&A?nIo?=W>tintQ>yWF<3rQ5%sC~kQiWFUR-lv;d-BjGTT<`XR6AqX1z7=> z!pNN8j5fhd5H7p5vfuRF=?0=F_k?}LFwXs$DqNM0`Lc_P7yL?Va4=sjY5Dd}^<&)i zR^9}u3o`D!ID_q#vQW&^{c%~>;)#i%bqQpk}Hq6!g z*b0Z)ESnW&h0-)$WZOA6^|I>B7-qrKiMHMWhHHG*3CbP^s!>AOmX%)6bDn6MP&ldT z0Vamr>_BR%{vVmSPlxwH?~JnF2C-?lhCb#;6;)rIE43j|+RQ%iIfx8eE%~ X5x#(RO%GMw-qG-7N42=UGtmBDJxPz& literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/ru.ts b/Source/Resource/Translations/ru.ts index 7e258c080..942c6be38 100644 --- a/Source/Resource/Translations/ru.ts +++ b/Source/Resource/Translations/ru.ts @@ -1,1009 +1,1016 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Авторское право (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + MediaInfo позволяет получить доступ к подробной информации +о мультимедиа-файлам Matroska, OGG (включая OGM) +MPEG1 (включая VCD), MPEG2 (включая DVD и SVCD), MPEG4 (включая iTunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (включая WMV, WMA) +Microsoft RIFF (включая AVI, WAV, DivX) +звуковых форматах (AC3, DTS, SSC, AU, AIFF) - - Go to website - + + Go to WebSite + Перейти на сайт программы - - Check for new version - + + CheckNewVersion + Проверить наличие новой версии - + Donate - + Сделать пожертвование - - Write mail to author - + + WriteMe + Написать автору - + Translator : Zen - + Переводчик : Kazorin Sergey - + OK - + OK - + About - + О программе EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Полное имя Export - - Choose your desired export format - + + Choose export format + Выберите формат экспорта - - Format: - + + Format + Формат - - Profile: - + + Profile + - + Advanced mode - + Расширенный режим + + + + File_Append + Добавить к существующему файлу (Предупреждение: убедитесь в соответствии параметров) - - Append to the existing file - + + Export + Экспорт - - + + Text - + Текст - - + + Graph - + График - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Вид - + Help - + Помощь - + Options - + Параметры - + File - + Файл - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + О программе - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Выход - + Ctrl+Q - + - + Known formats - + Известные форматы - + Known codecs - + Известные кодеки - + Known parameters - + Известные параметры - + English - + - + Français - + - + Preferences - + Параметры - + Ctrl+P - + - + Export - + Экспорт - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Расширенный режим - - Full parse - + + FullParsing + Полная обработка - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + По умолчанию - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Формат - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Настройка - + 0 - + - + Advanced - + Дополнительно - + 1 - + - + Customize - + Настройка - + Sheet - + Таблица - + 2 - + - + Tree & Text - + Дерево и текст - + 3 - + - + Custom - + Выборочно - + 4 - + - + Graph - + График - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Формат вывода - - 11 - + + Language + Язык - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Проверять наличие новых версий (требуется подключение к интернету) - - 16 - + + Shell extension + Расширение в проводнике (пункт в конекстном меню проводника Windows при щелчке по правой кнопке мыши) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Всплывающая подсказка (отображение информации при размещении указателя мыши над файлом в проводнике Windows) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Добавить дату создания в текстовый вывод - + Close all before open - + Закрывать всё перед открытием новых файлов - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Показывать меню - + Show toolbar - + Показывать панель - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Добавить версию в текстовый вывод - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Выбрать таблицу - - - + + + Delete - + Удалить - - - + + + Edit - + Править - - - + + + New - + Новый - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Выбрать текст - + ADM: Show ChannelFormats - + ADM: показывать элементы ChannelFormat - + ADM: Show TrackUIDs - + ADM: показывать элементы TrackUID - + Preferences - + Параметры - + File Name - + QObject - + Easy - + - + Sheet - + Таблица - + Tree - + Дерево - + Text - + Текст - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + График - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Выборочно - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Сайт - + no selection - + - + Summary - + Сводка editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/sk.qm b/Source/Resource/Translations/sk.qm index be651eede2edc9cb0da5c140b31664afee169fa8..4d0fd503f5f0bae71b3c3ac8d85a9e8b77c231e5 100644 GIT binary patch literal 6512 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 - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information + + MediaInfo v%1 +Autorské práva (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Supply very detailled information about a multimedia file: Matroska, OGG (including OGM) MPEG1 (including VCD) @@ -18,992 +24,996 @@ Quicktime RealMedia WindowsMedia (including WMV, WMA) Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Web programu - - Check for new version - + + CheckNewVersion + Skontrolovať novú verziu - + Donate - + Zaslat finančný dar - - Write mail to author - + + WriteMe + Napíš autorovi - + Translator : Zen - + Preložil : Addams - + OK - + OK - + About - + O programe EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Celý názov a cesta Export - - Choose your desired export format - + + Choose export format + Vyberte požadovaný exportný formát - - Format: - + + Format + Formát - - Profile: - + + Profile + - + Advanced mode - + Viac detailov + + + + File_Append + Pripojiť k existujúcemu súboru (Upozornenie : buďte si istý rovnakými parametrami) - - Append to the existing file - + + Export + Exportovať - - + + Text - + Text - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Zobraziť - + Help - + Pomocník - + Options - + Nastavenie - + File - + Súbor - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + O programe - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Koniec - + Ctrl+Q - + - + Known formats - + Známe formáty - + Known codecs - + Známe kodeky - + Known parameters - + Známe parametre - + English - + - + Français - + - + Preferences - + Predvoľby - + Ctrl+P - + - + Export - + Exportovať - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Viac detailov - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formát - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Hlavné - + 0 - + - + Advanced - + Pokročilé - + 1 - + - + Customize - + Prispôsobiť - + Sheet - + List - + 2 - + - + Tree & Text - + Strom a text - + 3 - + - + Custom - + Vlastné - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Zobraziť ako - - 11 - + + Language + Jazyk - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Pri spustení kontrolovať nové verzie - - 16 - + + Shell extension + Integrovať do kontextového menu Prieskumníka (pravé tlačíidlo myši) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Integrovať do kontextového menu (pri nadídení myši na súbor) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Zatvoriť všetko pred otvorením nového - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Zobraziť menu - + Show toolbar - + Zobraziť nástrojovú lištu - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Vyberte požadovaný formát zobrazení - - - + + + Delete - + Odstrániť - - - + + + Edit - + Upraviť - - - + + + New - + Nový - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Vyberte vlastné nastavenie textu - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Predvoľby - + File Name - + QObject - + Easy - + - + Sheet - + List - + Tree - + Strom - + Text - + Text - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Vlastné - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Summary editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/sq.qm b/Source/Resource/Translations/sq.qm index be651eede2edc9cb0da5c140b31664afee169fa8..83ccbd5cbe8ba85c4daf6d5603396dd7798b7b02 100644 GIT binary patch literal 6638 zcmb_gTWlOx8UAh0UcA0G7uTu^OiL3SlqQa8O9KoCL#%0qadEd|l!g^-4bYYC|eMI}5S1d3XO5JKRJN{GB5f%yJ&yl3_@ zj$8??cFtV>^WU%M;j4w=SKs>jS6{p5?w@}AnIFIYZ6fNdo_GY;y+n}@5*bet&AdW% z$6tt!T_U>EBIAb!(cr(yxPdkP6dAwShV^e`{NZk**g3TheVU9nM~S-6QRL#k@cxoo zhki?ut1l7_{g)y)fVXFewtmPV+B8V-9Jq}261{u(H;MY*OZ%U`4t7Ybv70n?wg^0y zTJJcc)}dLN>q-;#8ua+DULxB3Fg?DCeVeOl9r_M^{?@OF`rkp%znKTU6x~dA5^a5| z<9zjFknenFJpFT`fp>M@V-+A*taIc)KAu0@`Nn(B0Pc@n-`E3w=}Om2FFyx)e$e&m zBIJoK8@pe54e*X}ap&{E|CVv_!ZEC$QtQyY#+3tjPoFSuEPn;?<7$mxHh%YI;Ej!` zwR0-v{2_Gto}E4EdjnJ{j#IO1u#LS{`_|PDC$Um?GLzi(WrA2Re4OP?R(unx%CgMBZ&|HsS12Y6Iaf? z3_hi^OU0{Xi(@R8qt2Ja&S*OF<_{ksihUj!sY=`gL57soB`fhw7EYko}MbuiE_nk7LV z*))&;61im3vV2p;vr7)H4&Dj;0i}@*q>3WHG$mGMg;%v*rv>d@^eDDeu!&JR9Q> z-55QHcL9Z@#AHFgj%3n=SV=lUhbW=h{Xj+(Y-`e)cg^K(dlD(Pa>}z8ioQ9L+F_23 zj*i_wHahm8DWQ^{uy#4ZH?zqjhZ4;?>nv(*v$0q(kIG;?50+W`EJhVtt>G=}4m!iN zAQ`hDE^F7r--N~BF;GVp7GPy5HIxBS!Y&*8>nh|YhS>+`jD+(*i}zWy6PTuHKYpw( zg>znVU;{hT=C2v3k@p^^aXjr=7j_m3PdCAitqYrmJE!rr0BKq3ES_6;Kd|oZNyu1} z`lWx~&~|AB(gt7F)508JW~H|HPSMIp zN=lb5Y{@Qn1P(ia-+FkGz%sdphwqu^3GD?cicW)DN4{gdjDT8--Y55@;rv;7my~bW zdPzFE_C`_O1xMaRJGAQ#XxBX+mQ@TG_@D;voIcp>u!tL(nxsP6P&JU;hyNqEufoaL zO-wk2E0tLyp>Yk)c$QNwS-$I;`^+aqYvN&(bNWyzV-c8IB3NUJ&3Q-?nb!O>3~wxB zJ8$HF1vYkJg&@oHrrdI+Bz!StmF4d4@q+DVi$eG^rQQo$u0q$R)_h$hk!7j>JVZsT zX(sxTg=Ndhi-K8p3ldp${A9)T6s8$^f)-?!V}CXqBAcVHo|Xl~t%6UEdKIH8QPrb- zRYzVk?JcRI>sEy+BtdiD^~#nk4~;AgLLH6hUCsI$6kE1&!_zRLB`I0lmB>oztt!FX^(5v{f#2haS!TF4{ z6;}_d!E<{i?2yw@_%r~R&4!9t^#hzH4z0tOA||r zd8<~Ee75dMU=Jrs6l)D{jGweafj8uC?G&LYkQ!`e)^98D25j8AWf*S3@|Lt~ zac>0I*7EdB)Jmnp7CIqkA&h7*O@TWbE{p=KcNqsnsS*Zm(m|Q}*cX&Xb6l{OyFdZY z*C=`qI_`>N=8-(|)i6}|HMum0gX(G;kddX)^(k~J6@=p3j?CQ}Tp>6$#zBR#VtGiG zK6=G4Ci@W@Tz6qWM0^l;vFVDB-g2EiTtZ580%}E^Yl1z8JuxplfutI`FChgeH@oAk zEmp!98$}^ZgE_8ETvxcTn<$(`=)l2GfPuzBTh(j~C)1gIX13_An5m-WIHII-h~%k} zM;WEtL+Q-O?80rwQIz*I1=u$S*ijGjOGhWu;fOy9#0C6JbT8c6azCefLhh0Hi9L(k zTfPc9iK~exZh0$w)dHExLcz?V3uTL#1vKv5YWqk|CZ>vt8Z6ob;|@yEZyqW(M)NMF zxvU0^jZhl|weUI{uh&_&avPTuEp?Xb23HZTsNBp=9==CUX=QpaYrBrQ^@z`Vjily|kO&FIOI&xQXE4DdT>h#y*g? ztCf;1~=)U&?A6$p!uAPa1(Ac0ZUXM%K~`k{=bGhxQNEJW!$lHC1FlXlq+Jv ztdwdCc6bcjzC~=a6@&9Qj{2gB#SdA|Ld{wT_u@F1=fjYo0CwR}CR9!zli@~=dK%9N z)EqPd{Rmjs1#_%b)kbjG@La+P!i2{7%7Mh+J-Neg=)3#DmZ_M9i6B5}K=@-~=;~I`hf_;xu;f{I1@NqhhNGl@pXFXZ9sH5a*S@%51}y z;dWiMto)RNJe<_lT4vnyiG?~L;@18IFmV*KEt!*G>hFUnNc?Mm6uV;8}i4|n5d-ldpk=i^Z2bjrt6x`_mI<9S@5*g%{CB@RlY zaO!86Z6+PYOvbuhkUC;7=gA%{YXf)7F0U+{TBwnCHX+DKWIXh;3@UI~1`ZmePmQ!! zBK2Ljl(W20yu=D+XQ#}sA&Oh7gJBjO_1@rdbBzWRtKxH32sQH2tF@W`CnzUApOR&HPlw`6mNv3 f(aG_!AiMTn9L&`Zp@R)wIDT#cK8wAb9UcDzxvefs literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/sq.ts b/Source/Resource/Translations/sq.ts index 7e258c080..5569f7433 100644 --- a/Source/Resource/Translations/sq.ts +++ b/Source/Resource/Translations/sq.ts @@ -1,1009 +1,1019 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Të drejtat e autorit (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Jep informacione shumë të detajuara për +skedat multimediatike: +Matroska, OGG (përfshirë OGM) +MPEG1 (përfshirë VCD) +MPEG2 (përfshirë DVD dhe SVCD) +MPEG4 (përfshirë Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (përfshirë WMV, WMA) +Microsoft RIFF (përfshirë AVI, WAV) +Formate zanore (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Shko te trualli në rrjetë - - Check for new version - + + CheckNewVersion + Verifiko versionin e ri - + Donate - + Jep kontribut - - Write mail to author - + + WriteMe + Shkruaji autorit - + Translator : Zen - + Përktheu : Besmir Godole - + OK - + OK - + About - + Për EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Emri i plotë Export - - Choose your desired export format - + + Choose export format + Zgjedh formatin e eksportimit të dëshiruar - - Format: - + + Format + Formati - - Profile: - + + Profile + - + Advanced mode - + Mënyrë e avancuar - - Append to the existing file - + + File_Append + Bashkangjit te skeda ekzistuese (Kujdes : duhen pasur të njëjtët parametra) - - + + Export + Eksporto + + + + Text - + Tekst - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Pamje - + Help - + Ndihmë - + Options - + Mundësi - + File - + Skedë - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Për - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Dalje - + Ctrl+Q - + - + Known formats - + Formatet e njohura - + Known codecs - + Kodekët e njohur - + Known parameters - + Parametrat e njohur - + English - + - + Français - + - + Preferences - + Pëlqime - + Ctrl+P - + - + Export - + Eksporto - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Mënyrë e avancuar - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Formati - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Sistemimi - + 0 - + - + Advanced - + Avancuar - + 1 - + - + Customize - + Porosit - + Sheet - + Fletë - + 2 - + - + Tree & Text - + Pemë & Tekst - + 3 - + - + Custom - + Me porosi - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Formati i outputit - - 11 - + + Language + Gjuha - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Verifiko versionin më të ri (nevojitet lidhje me internet) - - 16 - + + Shell extension + Shto në bazë (kur klikon në Explorer me të djathtën do jepet mundësia Media Info) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Këshilla Informuese në bazë (në Explorer, kur çon mausin mbi skedë do shfaqen info) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Mbyll infot para hapjes - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Trego menynë - + Show toolbar - + Trego brezin e mjeteve - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Zgjedh me porosi fletën e dëshiruar - - - + + + Delete - + Fshij - - - + + + Edit - + Edito - - - + + + New - + E re - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Zgjedh me porosi tekstin e dëshiruar - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Pëlqime - + File Name - + QObject - + Easy - + - + Sheet - + Fletë - + Tree - + Pemë - + Text - + Tekst - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Me porosi - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Rrjeta - + no selection - + - + Summary - + Përmbledhja editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/sv.qm b/Source/Resource/Translations/sv.qm index be651eede2edc9cb0da5c140b31664afee169fa8..84266e80ce719992c094e5de51d681133fb1b640 100644 GIT binary patch literal 6518 zcmbtYYit}>6+X6SA6`G}#BLMxdGcSL;|WX>Uvr^)6Cu`QO-o zO08p`pxATI0_S0hT?B6Gzcl(08~D%D`-Yw&8aYh2Z#zviFi3m9aSq~;S`!y(=41sp zb85Y1r&>oZ(_BxMsPC`z;43eH|4;Pb-@&))J!&1>PG7qA8{l1_C*LT5ZUbFPcN2}i zx9c(QlhE%w-O21Pi3VTkUT+kMhJMsN{y!hkn@kJyZ`I~Z%gXzm(N4a zeCnr<`0(33sdKx24Sy{6E%m$(`+TMESJSXx|L^)Q{h|)MZ>cr$pZ?cgWO>f2b>!6G zqdyS%JvMaD@4oo^@=)7j3lb z=w8ryD*{yTT*Wt&iexk$II!2zeMg@Y`JCAS;nFnNieNHmKaMToaF%=nZKo7v@T~@2 zT>M_93iQ*VafUWwoumo;P0|+mG)X(K*T71HM*wrHRE7C+l%~UUkW!&iADR|L)7Wp9 z9DQNK_Eg5HExBg7;_Ks?P5R`-#N?LAiOC(hq)NNO*lG)3&!rC^Otspfd%5Z0h7vx6 zw(wVBYe<_^=&IaNP7>IihmaP83uw!ru%T*Who1!KY@m74(I%eROfIZ#NKW?GX7D&v zz-i230HX|!>r+-iw*ZPF&>a}D!EMoTs$;(-oq~LEJ{!Q@uQiCh_MF&1hFb{gBWKJEY^EqrY z9lua9*@saaly6`aFdOvy>Y zoGfb|{EAzLRb1$!EMA4}lqJTIn>pBJ3*;~%56kW$akhrxKNN=lv8c+z#pggs+* zb$~O0?ap>3yw{ppnX%OC61+QHDMRqrR|4rJ8cu6inKeE2%Gb%mfgKjWhC+Kzn2`)O8Cvb<#NjXmN&}yr%XV!id`r)^ zGpq^IJP0WsNf3VFS$$J=%evpd^kbK!j!ePp$7O2PLLP0Ouxe4nYf+wpuEw2-I}(>U zL~qF4f53JYZM}dZQ1GHa*0g{`rTKt@Q0X0sp|@Z}BvUBPu)?YtE{dCvDKJW;)yPx? z4RqoBU)4ZIhbzoKus<6O{80cG@u#DgsG*f@%`J~>En8mA5Ih+3 zGwKYU93-`m5{A!EAw69z>IF=y>>Is^ft?3$AEijg&7r0)4;_kqAUr>4=fUYb>%G;P zYx&Ftb(Of8(?)PwTjvbrPX_&x{oEnv&X#`3)@kjQY{90~kzEDdK15%&(kTmd&v&Z2 z$IU$QpgWol>O5k_1tIK6D=b?(67^0wB6F$WmTDj>c|Z(?PIj>xagl5x_Grf9-fmcy zo)^e{p*!e)k?_N?YxC?-3_;=q#2AH!@|HPj5!A;829 z1bExW*uJo%gXstcI?h(kg2hl{8+s}2I`w{gI*+yMobypus*$c8#!R>#6{Os z`?~C-9Fg3CIW{?7gV8MLs*U-05P}HL4~lW5Ol#1l{FSc4_w&w~dEk)j6ipY24vW2$ z2LFygVmaa0<%{VNJ>fr1?a zVv}M+N-?xUVF&LSJKQ)D%y|%ZMXfNgdgWwR6?Q$+rMES)Dp&Elg(X;nU+D1Y*%*xa zC6wzj3j&^PMAy{`+k)bnBp#h6(+mu_@SyEp+Qp?Si{JM?BB1{Dw_tSIC>l)zLfM jC1!_zF@f<|FX!tdIw!xl%ZJ20cxBv1coKZwU0weN@DL_n literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/sv.ts b/Source/Resource/Translations/sv.ts index 7e258c080..45fd30e84 100644 --- a/Source/Resource/Translations/sv.ts +++ b/Source/Resource/Translations/sv.ts @@ -1,1009 +1,1010 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +Copyright (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + MediaInfo tillhandahåller enkel tillgång till teknisk information, och tagginformation, om video- och ljudfiler. +Förutom Mac App Stores grafiska användargränsnitt, är mjukvaran öppen källkod. Det innebär att den är kostnadsfri för slutanvändaren och att andra utvecklare tillåts studera, förbättra och återdistribuera programmet (BSD-licens). - - Go to website - + + Go to WebSite + Besök hemsidan - - Check for new version - + + CheckNewVersion + Sök efter ny version - + Donate - + Donera - - Write mail to author - + + WriteMe + Kontakta utvecklaren - + Translator : Zen - + Översättare : Åke Engelbrektson - + OK - + OK - + About - + Om EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Fullständigt namn Export - - Choose your desired export format - + + Choose export format + Välj ett anpassat exportformat - - Format: - + + Format + Format - - Profile: - + + Profile + - + Advanced mode - + Avancerat läge + + + + File_Append + Lägg till i den befintliga filen (Varning! Använd samma parametrar!) - - Append to the existing file - + + Export + Exportera - - + + Text - + Text - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Visa - + Help - + Hjälp - + Options - + Alternativ - + File - + Fil - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Om - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Avsluta - + Ctrl+Q - + - + Known formats - + Kända format - + Known codecs - + Kända kodekar - + Known parameters - + Kända parametrar - + English - + - + Français - + - + Preferences - + Inställningar - + Ctrl+P - + - + Export - + Exportera - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Avancerat läge - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Format - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Inställningar - + 0 - + - + Advanced - + Avancerat - + 1 - + - + Customize - + Anpassa - + Sheet - + Lista - + 2 - + - + Tree & Text - + Träd & Text - + 3 - + - + Custom - + Anpassad - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Utdataformat - - 11 - + + Language + Språk - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Sök efter nyare version (kräver Internetanslutning) - - 16 - + + Shell extension + Kontextmeny (Högerklicka i på en fil i Utforskaren, så visas ett MediaInfo-alternativ) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Knappbeskrivning (Hovra över en fil i Utforskaren, så visas information) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Stäng alla före öppna - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Visa meny - + Show toolbar - + Visa verktygsfält - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Välj en anpassad formatmall - - - + + + Delete - + Tabort - - - + + + Edit - + Redigera - - - + + + New - + Ny - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Välj anpassad text - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Inställningar - + File Name - + QObject - + Easy - + - + Sheet - + Lista - + Tree - + Träd - + Text - + Text - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Anpassad - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Webb - + no selection - + - + Summary - + Sammanfattning editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/th.qm b/Source/Resource/Translations/th.qm index be651eede2edc9cb0da5c140b31664afee169fa8..0d7cca23b50a1a701e6875a8f2a748ba0dc7c3eb 100644 GIT binary patch literal 6321 zcmbVQYiwIr9skFZF4Asc4SY!2@4JbD$4UFsE+Rjkc@3W>?Sp>2|2x%O`w!rDIBWPC z)x7o!zQ0Q~w?H@aWeR`F1pUL*(fBgfcWL*5XNc;bq=_pxAPzZeV2nO`#oO)+#A(D7=XO=O!f7*en?c?QT_IL=u`8) zcHrhafWM+$d+=Gne_XqE^(^?j;H+WNUY*2yx~Sb+eG>35I%}|9`@?rY*Z)0d4X)O# ze7yzVV>Pe*1a#~E?f22k(EmgKWBzK$8}fg533OV9{8z7@Alml0|Hjz`*!8(U@~JO@ z{y^Yq*#v#B2b-$G(C4?o`(Hed_kRnXcROslRbCCbXp;y287UcYE z=x5)u;g{D#H->%UZ`z#=-S&WD(aY#&xF42R#0nr}BYx3h?6J50OcEG)> zVuTJ67P|o&6#GPKXOP{P|>V3_M6hy zXQQX5LmRE&J1n9QvPA?S>=aDjDTX0>AN)268wPOS4`24dN?oD_YWZ*om;vw%6u!*BG>mtO#sD?o z2{#V|#x}r3JmF$A4>%pVL4H8Y;<+4i&=YeCQs3hNFdvZILScKBqU@?D_Brv*QW9;OJsqjXSFh|wG@#h!|)x6a*}!W&11{Rqqb zwAT&9MmG@8dF6Ew!BGV#1Y88)$>SSCkd8vsoq&lUAiBgc1W^}6I0E~>%CN1henkJAEH4hNE>4?h6^9YVwFtmA7eBC&MUu~y*NG+( z5)UC8`hXrrmFRR4>PM|~CM9io!bmHu+Oc@jo=r$;tD@ElWw?B`Kva(OHmEXOVv2@n zeAO_QWL!^MaYevCb}?gR9qgmv*A32nFkq=icj0X}=yjm1Oc&~xhH|+L(s2d{03Q*% zT`5~e6PA^ex>Tg~WhPcA3MA`5&QC%&wh3oH*U~OX zRjdt8W#ziS)nr&qs`%B!L50J5wH4faOgXwmIh!krbJwG&jexdeeWnz~yB-xTyFo=& zn?iqSD~ZXv@nlM#i)J#?jF-z^Uuw&uqT`-c384^Wk>VLjxS%x?StFAuCmWL zTZc9|H#1!hCJI$ngVd3dNYduy#R{Knt%-(ajHJ1cG~?FV{~2`U6a-4AMCmb5@=|2G zng?QX*~q7qoaH$FvdGcKE+#zz?;2?3l!I{heF*Gg+G*@wwrn}*U42`QumeSvbxa`; zGtf7SlFj9N#nriPJfBLPGB9hHD_$&{Q5+`W%r1oE15UcSxZ0#lWxSAd^brd^LSjXi zDdaHc_!K6WfszEQKWDHh@*jW;&s zTtRk3V>3te*@U&Gk0uP$lqsi@D5*-NRJpmwlh2&0F+5tFK`W1yP~TRhj^4I(;mlOb zoA3w-$MNIHa)w8qQY?tB<1LFUacAQVUnO0{RmW2vYlg3`LV7eF*OxFcvTyV_#%3OX zZImY+Q+vi4+$$90Daql#3hGW8Io!9xvz>XaIs^SyxN#Nr>Zif=e#$YK{sz?!nXG0aX->w5KXTzHWx;V zDkKJ4Dfp|et|P;vDen44Dy1(<s9Xv9sd*WIfkhjZIY*y!Ga{Ti3a@T<2LE zg(U6i+7N1b75ZIF_*|Q5JU)9u_d;?LURXpRa3$m2P#Tp>(h8n3c$>!^Ld2!jGG-c! zDXEW-r!#Uz&!qAzN$=?2e8{WtRS>(6h}bJ4F00_QVXowj74H}hR-9o}s25C5{Iz`D=qr!^!+Tbe)2x!H{kaq+)LvVT5%t|}2 zrmhMUKTLuxL<#6emh&rxIo&x88NrsbTb&Q_zN;NJ=OIBN>UePMg@bt~!(Ejlkt+uG zKaPr-NF-NCAGlA@r4*z9_p#;n5>cij!xWTLS1`OjR^TiYifasZ6@ z_@*7qyWs8+{%o{$f-HPdL{@ST;p0=A6K|z-45&pRo$Xk$t*XNzn4);>Q53n+5gE-* zn(HTb6)tLW^=Gl##IWnES~X*(rJ45(%Pto&ioHD_duRw$XX6-9PUv$<)hklAWu+F4 ztS7Zr?B&>rTx#~ - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +ลิขสิทธิ์ (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + แสดงข้อมูลอย่างละเอียด +ของไฟล์มัลติมีเดีย: +Matroska, OGG (รวมทั้ง OGM) +MPEG1 (รวมทั้ง VCD) +MPEG2 (รวมทั้ง DVD และ SVCD) +MPEG4 (รวมทั้ง Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (รวมทั้ง WMV, WMA) +Microsoft RIFF (รวมทั้ง AVI, WAV) +รูปแบบเสียงอย่างเดียว (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + ไปที่เว็บไซต์ - - Check for new version - + + CheckNewVersion + ตรวจสอบรุ่นใหม่ - + Donate - + บริจาค - - Write mail to author - + + WriteMe + เขียนถึงฉัน - + Translator : Zen - + แปลไทยโดย : ประสิทธิ์ แคภูเขียว - + OK - + ตกลง - + About - + เกี่ยวกับ EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + ชื่อเต็ม Export - - Choose your desired export format - + + Choose export format + เลือกรูปแบบผลลัพธ์ที่คุณต้องการ - - Format: - + + Format + รูปแบบ - - Profile: - + + Profile + - + Advanced mode - + โหมดขั้นสูง - - Append to the existing file - + + File_Append + เพิ่มเติมไปยังไฟล์ที่มีอยู่ (คำเตือน : โปรดระมัดระวังเมื่อมีตัวแปรเดียวกัน) - - + + Export + ส่งออก + + + + Text - + ข้อความ - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + มุมมอง - + Help - + ช่วยเหลือ - + Options - + ตัวเลือก - + File - + แฟ้ม - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + เกี่ยวกับ - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + ออก - + Ctrl+Q - + - + Known formats - + รูปแบบที่รู้จัก - + Known codecs - + codecs ที่รู้จัก - + Known parameters - + พารามิเตอร์ที่รู้จัก - + English - + - + Français - + - + Preferences - + การปรับแต่ง - + Ctrl+P - + - + Export - + ส่งออก - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + โหมดขั้นสูง - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + รูปแบบ - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + ติดตั้ง - + 0 - + - + Advanced - + ขั้นสูง - + 1 - + - + Customize - + กำหนดเอง - + Sheet - + ชีต - + 2 - + - + Tree & Text - + Tree & Text - + 3 - + - + Custom - + กำหนดเอง - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + รูปแบบผลลัพธ์ - - 11 - + + Language + ภาษา - - 12 - + + Monospaced font size + - - 14 - + + Newest version + ตรวจสอบเวอร์ชันใหม่ล่าสุด (ต้องการการเชื่อมต่ออินเตอร์เน็ต) - - 16 - + + Shell extension + ลงทะเบียนชนิดไฟล์ (เมื่อคลิกขวาใน explorer จะแสดงตัวเลือกของ Media) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + ข้อมูลเคล็บลับ Shell (ใน explorer, เมื่อชี้เม้าท์ที่ไฟล์, จะแสดงข้อมูลไฟล์) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + ปิดทั้งหมดก่อนเปิด - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + แสดงเมนู - + Show toolbar - + แสดงแถบเครื่องมือ - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + เลือกชีตที่คุณต้องการ - - - + + + Delete - + ลบ - - - + + + Edit - + แก้ไข - - - + + + New - + ใหม่ - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + เลือกข้อความที่คุณต้องการ - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + การปรับแต่ง - + File Name - + QObject - + Easy - + - + Sheet - + ชีต - + Tree - + Tree - + Text - + ข้อความ - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + กำหนดเอง - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + เว็บ - + no selection - + - + Summary - + สรุป editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/tr.qm b/Source/Resource/Translations/tr.qm index be651eede2edc9cb0da5c140b31664afee169fa8..87aeb6c27af2d0b70e6331763d57e2881c53ce5d 100644 GIT binary patch literal 6627 zcmbVQZERat8Ge&Ej^m_B)}~oiO>igZ)=pcSMszEs8*}5NEo<7+q>YMHx*Pk%zKMOW zb$y*QowWU6KgQq(2nHLQ1k)Hyv_fL)MiF0Qbm|x?{%=8?{`7}1Nlh*Igzzb$j7#QS7gmyviBPoAdZ-|>#`ht zA`d!8&3en6S%+q2x+5*p8(Ec+$!ot8>Fbae-^+mCsJxwO z7g_&8+q31*L%(mgC(^$b>2GVl-OghDd;8}923Yg$f4TEUeur5TFU78W z4RpKiGHZ8VXYPxGu=TmlSAGn-y^qJ+v=T*eP7-^Cl0=R4R(E|`xn>#iM22Jz`JG8 z8%w_Wr8gkw)5)KGIe_2xCNJ##4g7I$&r-)u8ONry( znVRt`L05R!M({i2xF`TRVo6zUh>w2}e+#I5uOyIysE|niXkKOJ530pu$}c;f+e9uY zd&F-0XxsL-lOakx?YVZKnjkHi2Jsoq)&Ua*_Ks#~Ne*{Gh`(m9X9b=$t!5^j7BUMm z0n{uIY}pU=S@A$}K{m;DNy-$y74U5q@9Ji;WV4LQ7Q7pgVf;qq9(^|=JMgYfF9mBT z(A`?KgC&!ak|T0JlA&;)oKRWE-tW$O*21Rk$x*Mgm zP$^&8TU`}clc^&IlFRMU{&WN5nj&{YoSaOzpy6o~e2k!41Pkq8%T+uZ zd_uZ-W1c)%p#Ykew!>*a74R=g7FS>6&gie$3xK(bE51XIqJF*(jydr3LE{EAx}lw| z^@AlH=wiH}0|{8Pnh#uBv}Vf^-gs3li{MI0%%(D%h3zzw*ebPhaG^Cazm1JCqC0D2DewX|2WQh~m-8#&S+ zl$~~^$IQm@WosDf{b8t|jLIb3Z7GBS{vk^Hp@)`-xjZNrL3#mV7$Z`-UHI>TAPfPT z<~Y^`JX25_$HV;*Tr>E(C8Rwt<=bw#U?y;;BOy-pebQ0YldqWQtwIAp)#7;x8rdA`9v(l!jwaF-&H!6%Fh<0r&0yjt7YG*7^%YV2~?GK#=cW0<_4 z<0|AlIGXpova*zBXU%$k(bh$vQGh{7R~c~wSDAz)s*v<#Bht5Y##(?|Dv+u%7n#`P z4q-N-6OZb>Y4Q`@t#`2ADJ88BZC))kI#L_=pNZDieZ!=WJO_N1C>Aj0stPPo50aj7 zr=U)zN+soHo8@P%s@kuv>UgAml5jAivn2Ttv~#a-m-5X-6R0y&FwB7vF1BxK;y^PP z^QFna^^lBBsZ%YUSxq@lPS}n+?YLQQ@&69TW*U7+ND3+2hCvGr#kec2X6;Hr%h`;R zl#6gF8jptJ9~(R6L;|lmj->NcjEY2#Ml6@Atq)aM^q{XbeT&(5Wl*ME@%>hHRWcx^w0eZtI5eHG{6f%}+EKPQ( zYuI(D6riJw#9XUeIbYYcd=u-Q!@inTzCwD9#O=f8t@Ti7ZbLJ~jyY;EO3Y#8z%(`} z6V)V|08bWiH>w*e7wLt%kK?UL!zijD$qlLW#4c+x?=4!RdE0eW!Q>MySEHQO-aCrV zl+HA)bw|fQt5Zkq%gi6$pN=N{AQZ^rXI1MyGo%B78DH#zSZUZ5vQ_5&DO{O7 zna4}Kh6-7!Y}U%4Z>49fEZTUs;sFwsg;}Cx#)%fiJ`wU~x9aPz!*E{>&yD1{V8)Bp za2sf@zM=GqTGgeOTcq6mp;ebXA)Rch(2`DrOS)RI?_OSC*H!Clrcw^PqE%*75Xo-m zD%hDKSewS0S*=~pie8B1Gy?Nq)hz;@O{ZVSH3QMqk$TV+8?=9{mPHAN4NY}C{;e<##BZ@+Y#n_HV zVr+)=oM>hU4~fU|DL>v`*P3#oE%s)U2{^B_+SJ46X4I#k zOq%rrEi*)#VDWus=q^2yUGV^uS|*W;{PcYsCZRw9FEb3I%TG8Jq-a}eX|py7dE zGr?X>Fz~#>jO|C#+$bq%s6()NMA$lD_DuOoS$9~qIkQE#6)SqzXAjNHsf; - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +Telif Hakkı (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + MediaInfo, görüntü ve ses dosyaları hakkında teknik ve etiket bilgilerine kolay erişim sağlar. +Mac App Store grafik kullanıcı arayüzü dışında, açık kaynak kodlu yazılımdır, bu da çalışma özgürlüğüne sahip, geliştirmek ve programı yeniden dağıtmak için (BSD lisansı) son kullanıcıya ve geliştiricilere ücretsiz olduğu anlamına gelir. - - Check for new version - + + Go to WebSite + Web sitesine git - + + CheckNewVersion + Yeni sürümü denetle + + + Donate - + Bağış - - Write mail to author - + + WriteMe + Bana yazın - + Translator : Zen - + Çevirmen : Burak Yavuz (BouRock) - + OK - + TAMAM - + About - + Hakkında EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Tam ad Export - - Choose your desired export format - + + Choose export format + İstediğiniz dışarı aktarma biçimini seçin - - Format: - + + Format + Biçim - - Profile: - + + Profile + - + Advanced mode - + Gelişmiş kip + + + + File_Append + Mevcut dosyaya ekle (Uyarı : aynı parametlere sahip olmak için dikkatli olun) - - Append to the existing file - + + Export + Dışa Aktar - - + + Text - + Metin - - + + Graph - + Graph - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Görünüm - + Help - + Yardım - + Options - + Seçenekler - + File - + Dosya - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Hakkında - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Çıkış - + Ctrl+Q - + - + Known formats - + Bilinen biçimler - + Known codecs - + Bilinen kodekler - + Known parameters - + Bilinen parametreler - + English - + - + Français - + - + Preferences - + Tercihler - + Ctrl+P - + - + Export - + Dışa Aktar - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Gelişmiş kip - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Biçim - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Ayar - + 0 - + - + Advanced - + Gelişmiş - + 1 - + - + Customize - + Özelleştir - + Sheet - + Sayfa - + 2 - + - + Tree & Text - + Ağaç ve Metin - + 3 - + - + Custom - + Özel - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Çıktı biçimi - - 11 - + + Language + Dil - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Yeni sürümleri denetle (Internet bağlantısı gerekir) - - 16 - + + Shell extension + Gezgin uzantısı (Windows Gezgini'nde, bir dosyaya sağ tuşla tıklamada, MediaInfo seçeneği olacaktır) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Gezgin Araç İpucu (Windows Gezgini'nde, fare dosya üzerine hareket ettirildiğinde, bilgi görüntülenecektir) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + Açmadan önce tümünü kapat - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Menüyü göster - + Show toolbar - + Araç çubuğunu göster - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + İstediğiniz özel sayfayı seçin - - - + + + Delete - + Sil - - - + + + Edit - + Düzenle - - - + + + New - + Yeni - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + İstediğiniz özel metni seçin - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + Tercihler - + File Name - + QObject - + Easy - + - + Sheet - + Sayfa - + Tree - + Ağaç - + Text - + Metin - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Özel - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Web - + no selection - + - + Summary - + Özet editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/uk.qm b/Source/Resource/Translations/uk.qm index be651eede2edc9cb0da5c140b31664afee169fa8..4e67f21a49751cfefef53308db69747290e2d886 100644 GIT binary patch literal 6823 zcmbtYTW}j!8UAA*%d%|8PHe}Xj0qc>fCIV6iXA(SFOenRh%agE$P;Elx|TM!5@}Z> zt?UGt@X$U4=tE~H@X$Wc(oPG>OEYOG!>yE*LYXwY0A)%$!<1nLDDcw2Q-JS3$J&*p zb)3L>oxVoY)W7%Wq{i0E zRQ1ZsM6K7T>NfZW{z)wZCehX)?P$1;@h|kyf#-CH(W4?;COOY59}y%9UxN=0E#xo}Pyuoz=;w zE`fhf^)p5z?ERy^aZ?NUX#QO=xkbnBx9mMHY&5!Q<9pll!;2(0}*B!X=mDi!? zjld5cw-L7kft$U*Ks?^7y;%7^{PXSFpHIPm^})J#ev${jN7PvTe%-sTu|C(;*wnfC ziSHQj-)|d+-hLGN{H@`&a1?SsOd?78K}l`mqvEI-BuxzQC=TL(Q1pw4A0NqwUsZU) z%G=e>();8!Is*n@d_|iKy)mH7E|rg~MPF!7m5_17gNu;fq?PZW|>lHAl(AtLk-0OT$>t zGp>#GW0q!H+Ptwan=E5sEp z#5~+e9TcHG7(*1qUx@a}rx1azh;Nv(kfGCl@HfcDw^<6)37VvUW8~o}Bazf6%(IrZ zyt^|Hu`(C4$;BmG>xk^pLcw5YUnm&r)+ALpYv}t;!`5cQCnf`H{ZcV1wju!Vh3J&g zJ_LWvL2aJt6G!mY1@A^M6T=vl#`R-%6z|heEueA*-}@1jF3biÜPB!?9~=V5u#{;rhBf>ji6g&G!BM>SIE{d^b6wgPTpC?N8(Nn(N-@xC z(7{9q*{$WPyVhMj0W0z{BstJbQ5S;3IzEiqB*kHyjWLao1rRI_V5%sn0h-5GmTS=p zJmIF%dR~|ZO-y==pOmaADM|U#Lh^BPoIoOu;%_}ZVQ`sP<-^a=8HpN^u^KFjsNA$j z(J(xEP|`|h2^YzI=MQdr0z$W?x#IYVm3I5dBzJX1cH0aA+DG?wl*E6R zBwtW)qV(aX%YBi9(fqXJaA};&>Sivb+g4WV(>`OAf<}k<2$E|ExWt=XVH1**F$rnQ zdsFRM7Xqs1v)KAmr5LhJq7MUF5DOXJdayX?C{h=((wUTD8`FAPuB{nKB<}b# zYC^;Q=@H`)&Tu(^@h~{?^C3LDS|IkIF~IYTofEA6b6P3scOir~9A$K&NBYdV5P$42Sm2rGX+Q6v6h%Ql_1MSTBfrh=z_}mSSGx&zp@HrzE z+ozre@Wcm9Os);WYCg5PF~c4T6=i4bXfkD-31>2fnJBfSPV54oqgaU~am^m}^irK@ zl47C|(B}|Wjb-)BQYm9UjbkHC(WFBs#^|L4b9K}>tLIbFl2R@K96-HdghT53XXHZCllVT8 zvy{IdVU@>`%bk;eyXraB0F}6)iO>?xEK?Q_DIC=n&aX6PY)8qqaCE9qn_aS2w8)Zfnnp_Dj?}o=0#$MU z4?4_2rY_5rlPCwGj^rj+GS1QX`I8e-Z=rK#NY95U<1u3|7xn5)LoJRubq+9YOGLw0 zrcftA2-}6Qo{MlB@TZ~U$f%~H%n{KNo!piJwdn)vu$^^S zR*lE~NZ(o{o%bMYa@^`KoZy^8WqP;E6P&k+N||9ibs}wgk@?dOkEYf0I-bwjR$9w( zA>qlct&CmiL9%r%EB31=r+xuUN65H~?^_}% zt~2yhN?S019foG%#Pt-|F1EvSERM5CZKF}yJONT2PxvCz1)dx>Mt~Z%I{7(?`engr zlmNgb33 zG(?lROiI5P(Oq~eQ|{B~8U6G3gTN~X*d6Z)F6uqkb-)G_@mN6TXFzZ6%F>jTaOW z9TYI#2P!^Wj>@%s3b`HVW~giA>;jN`YQDX=)|VQUpGfsH^4uwElgfO&G4vEK@zi8v z7FDx`otJfBF*8{QY(~rA9vto!Se5KKJ>|WPm?_}qvIWJ9^fll16?&;&H7oCCn9{u& za-&dw7sMBOd~3)Tf6T211yD>(AV%ERac9OiJuDL)8D>_cfT|aj8-M4l;e(~nC!!$6 zTLeFK8(FL$W=rl<-1yhScpN-@H#V2__S;)!jkqdW))&?RB_dF|YooY_q0*9MW zT$SPrx1IxhIp(1_++Cu$>o#@cF$y;nT*ijWyF@vqif?dQeUPIfsy7R+GWNtOxLZo^&kMlo!k(VIms4}_vkqG0*sUR<4 d9Ojj{7%w5bjCJ)}Hr?G*`=90tad&T^>Az#{ithjb literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/uk.ts b/Source/Resource/Translations/uk.ts index 7e258c080..2ac42e64b 100644 --- a/Source/Resource/Translations/uk.ts +++ b/Source/Resource/Translations/uk.ts @@ -1,1009 +1,1019 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +Авторське право (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + Відображає докладну інформацію +про медіафайли: +Matroska, OGG (включаючи OGM) +MPEG1 (включаючи VCD) +MPEG2 (включаючи DVD and SVCD) +MPEG4 (включаючи Itunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (включаючи WMV, WMA) +Microsoft RIFF (включаючи AVI, WAV) +Аудіоформати (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + Перейти до сайту - - Check for new version - + + CheckNewVersion + Перевірити наявність нової версії - + Donate - + Пожертвування - - Write mail to author - + + WriteMe + Написати лист автору - + Translator : Zen - + Перекладач : arestarh - + OK - + OK - + About - + Про програму EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + Повна назва Export - - Choose your desired export format - + + Choose export format + Оберіть формат експорту - - Format: - + + Format + Формат - - Profile: - + + Profile + - + Advanced mode - + Розширений режим - - Append to the existing file - + + File_Append + Додати до існуючого файлу (Попередження: переконайтеся у відповідності параметрів) - - + + Export + Експорт + + + + Text - + Текст - - + + Graph - + Графік - + HTML - + HTML - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + Вигляд - + Help - + Допомога - + Options - + Опції - + File - + Файл - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + Про програму - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + Вихід - + Ctrl+Q - + - + Known formats - + Відомі формати - + Known codecs - + Відомі кодеки - + Known parameters - + Відомі параметри - + English - + - + Français - + - + Preferences - + Налаштування - + Ctrl+P - + - + Export - + Експорт - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + Розширений режим - - Full parse - + + FullParsing + Повний аналіз - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + За замовчуванням - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + Формат - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + Налаштування - + 0 - + - + Advanced - + Додатково - + 1 - + - + Customize - + Налаштування - + Sheet - + Таблиця - + 2 - + - + Tree & Text - + Дерево і текст - + 3 - + - + Custom - + Користувацький - + 4 - + - + Graph - + Графік - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + Формат виводу - - 11 - + + Language + Мова - - 12 - + + Monospaced font size + - - 14 - + + Newest version + Перевіряти наявність нових версій (необхідне підключення до Інтернету) - - 16 - + + Shell extension + Розширення у провіднику (пункт у контекстному меню провідника Windows при клацанні правою кнопкою миші) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + Підказка провідника (відображення інформації при розміщенні вказівника миші над файлом у провіднику Windows) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Додати дату створення до текстового виводу - + Close all before open - + Закривати все перед відкриттям - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + Відображати меню - + Show toolbar - + Відображати панель - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Додати версію до текстового виводу - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + Обрати таблицю - - - + + + Delete - + Видалити - - - + + + Edit - + Редагувати - - - + + + New - + Створити - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + Обрати текст - + ADM: Show ChannelFormats - + ADM: показувати елементи ChannelFormat - + ADM: Show TrackUIDs - + ADM: показувати елементи TrackUID - + Preferences - + Налаштування - + File Name - + QObject - + Easy - + - + Sheet - + Таблиця - + Tree - + Дерево - + Text - + Текст - + HTML - + HTML - + XML - + - + JSON - + - + Graph - + Графік - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + Користувацький - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + Сайт - + no selection - + - + Summary - + Підсумок editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/zh-CN.qm b/Source/Resource/Translations/zh-CN.qm index be651eede2edc9cb0da5c140b31664afee169fa8..e67b5f67fe82584cd84bc228d3fac6250388997f 100644 GIT binary patch literal 4880 zcmb7I3v3hj8UK=;pK;=BJeD!k9inVzqQOM!3K?T_?Sue{jbr09&BL7Se|!e}&a%%= z0$Ng3G)NPcFcyO7q=7b8bx@R5lvV21QlRbDl>wWEiu#bMD$>@qFs&u4$QJhf@5sfE z3uTIYpMCfHp8xN4S^r|B`pug^9lNw_=_}ih|L(nK06@2k4?5kC0+g=BAKyXR2H<}K zz;Yd+^Lc=(5nx_o@HYT+8L4hLFjrO}O#^d%Dc)>WsP!+vd~65M>p*wvGrXTvXw_2C zz4!vk`9A0_qg=y-u;{x2Kn1`9)-y;OVfpG`02u!a8xLPZi$I~wA#m^KQO-(*TJ|c` zdKy~GT!;r~`{Oy}KLu_7K)#BMxnZ+y6E6Se7;rp z!f#Nn@iBcVoIyDY^t<(CsP8TPco^kW{!M@Kq#J2Wf3dR_<9)#pd%7RxFE<<~Rp{@G zv8rSd`g6nh;IDV!{b!Bt=WpRTJ!g9P)(xaK^M()7C~wSscIY*f|Caf;!xGwY(|mF5 zAMiZ7%lpbc#P~c{{`+Q(pYfNLcV5k)U93Wxmn`p{r}j)KwBiSqqrW1k?^Wyf-hLAA zbJp_?7eLAO7z#UsNMO8a_mA*g@F9M5j*ys<4C=QM3NiENqLXAI)fio+0YklQh+fIy)t%Vz`N_ZimTWtvXaQQl8`S}1dl*75Qsnw zIM@UNbb|;iWMKuY0W;d>#9uaW!b+sIV8_2&cu4+M3lHPHIc^7}P!b0_|u2^GsipjoIEXqr)&AF1TwcBeSsYl6~%}?B0RJy(Ru(-mtsh^TBq} zUJB;usu9sW6*i%qN6}apu;Kktr_VEVItaq(9ZSX*dW1^zHXm3=_1&=q!FTluojXYH z?)fOQrq$lw?cQ!L@!TNm>?H>;kqO_`t};cgz4VR|!^1%s5Z#2ABql4a@{X znWpj3;Yi!!J0>+mRy9OHt*l{sh4!N=xYV;c0LORY#Vv4O}A18&WX6e7~>3BltyE=N>J*9FPT2q)p%|$uaK1?KkMc+SFpv5UB zl5rvtHyBWLo7~$j%1PukwTeFo~`-@ZR=g3Wg-g}`cP zkiCgxDkRaf6xLG=D=Dh#C~wHb<6AlG)IwBKRaZ?;yJi|mJgEgUcmAtqa`406k^rxY zwrml^9)S&GDTLEnOh(F-=Sqdbq7=dWJT#eAHB|~vl1pKkN;q@0R57EbBYi51!IPA5 zGHD}+ULFusWck(<=_VJEL&*Sc<#$>`S;(=EqZ?6f{<|58P5!JN za9P|HlFGVJWa`2WJzW^)k-3D*%qpwH{YYbI7gjAY&URpW3PqYLX$Ri(QTtK%ru{s> zUgcVFw+DwaX-Q15Y1-nyNC4T_-l_`ta=ri>0ZsnukS_>if>wD;vo}5Vi8t%MmRIwO zoN+o0xOkim5v&8kirAMmh3OSfR3r3G+5G#$niOnom)u{90>!kjha+=>U4)K7O~GrS zQO@HC_Ds36U~Y@pMOpYZ?pbSLH9R6yWs)n~RRX(EohsexilviruFuKM6=jh@o1qm8 zhAsgtrnHEZt_Ac;)ur&t-F=df%Sga=kVS*ic#R;EqQmla&aJN$C=TMhPjJc%EHc1; z4+H*hHG)J0?F0!x{oQ4Ug&x&o0ezg$ZyJsJ_jz%l&prvuH=%j7%)sK2gX%FcbotT5 z+0bSI;~$b2G!~m#16q{Ch)2=tB;L*7H%tyy*1~#$3&jcB(2z)yD4UFDqA~3pXXaTg ziq3}_`s6A45~;kb7@IgDn&G0_Im?iVuDK>whOa7`el4LdH{G9+3G~7?4ug9}-VdJ` z@bL!Sg(F~25GSGnVbF05aW|2fO9^z7(To(RIsk4C@ z|8U-#TkcO0!hVCD-FAztyGNHdcs-#VB&@t$%vUM-Anh$YA2Uye0~F_Fgx_ox_yFM~Ze)kk4?3OI-9N+oYNOrGs!_^*Hh(Ek8;3W%2g literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/zh-CN.ts b/Source/Resource/Translations/zh-CN.ts index 7e258c080..4c35b8a5d 100644 --- a/Source/Resource/Translations/zh-CN.ts +++ b/Source/Resource/Translations/zh-CN.ts @@ -1,1009 +1,1010 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +版权 (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + 使用 MediaInfo 可以轻松读取音视频文件的编码和标签信息。 +本软件按 BSD 授权协议开源,用户可以免费使用,开发者也可以自由地学习、修改、重新发布本软件。(Mac App Store 图形界面除外) - - Check for new version - + + Go to WebSite + 访问网站 - + + CheckNewVersion + 检查新版本 + + + Donate - + 赞助 - - Write mail to author - + + WriteMe + 给作者发邮件 - + Translator : Zen - + 翻译 : stevenlele - + OK - + 确定 - + About - + 关于 EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + 完整名称 Export - - Choose your desired export format - + + Choose export format + 选择输出格式 - - Format: - + + Format + 格式 - - Profile: - + + Profile + - + Advanced mode - + 高级模式 + + + + File_Append + 接在现有文件后面 (警告: 参数相同时要小心) - - Append to the existing file - + + Export + 导出 - - + + Text - + 文本 - - + + Graph - + 图形 - + HTML - + 网页 - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + 视图 - + Help - + 帮助 - + Options - + 选项 - + File - + 文件 - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + 关于 - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + 退出 - + Ctrl+Q - + - + Known formats - + 已知格式 - + Known codecs - + 已知解码器 - + Known parameters - + 已知参数 - + English - + - + Français - + - + Preferences - + 设置 - + Ctrl+P - + - + Export - + 导出 - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + 高级模式 - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + 格式 - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + 设置 - + 0 - + - + Advanced - + 高级 - + 1 - + - + Customize - + 自定义 - + Sheet - + 表格 - + 2 - + - + Tree & Text - + 树状图和文本 - + 3 - + - + Custom - + 自定义 - + 4 - + - + Graph - + 图形 - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + 输出格式 - - 11 - + + Language + 语言 - - 12 - + + Monospaced font size + - - 14 - + + Newest version + 检查更新 (需要连接网络) - - 16 - + + Shell extension + 文件资源管理器右键菜单 (为多媒体文件的右键菜单添加 MediaInfo 选项) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + 文件资源管理器工具提示 (将鼠标移到文件图标上会显示相关信息) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + 将创建日期添加到文本输出 - + Close all before open - + 打开新文件前关闭其他文件 - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + 显示菜单 - + Show toolbar - + 显示工具栏 - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + 将版本添加到文本输出 - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + 选择自定义表格 - - - + + + Delete - + 删除 - - - + + + Edit - + 编辑 - - - + + + New - + 新建 - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + 选择自定义文字 - + ADM: Show ChannelFormats - + ADM: 显示 ChannelFormat - + ADM: Show TrackUIDs - + ADM: 显示 TrackUID - + Preferences - + 设置 - + File Name - + QObject - + Easy - + - + Sheet - + 表格 - + Tree - + 树状图 - + Text - + 文本 - + HTML - + 网页 - + XML - + - + JSON - + - + Graph - + 图形 - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + 自定义 - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + 网页 - + no selection - + - + Summary - + 摘要 editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/zh-HK.qm b/Source/Resource/Translations/zh-HK.qm index be651eede2edc9cb0da5c140b31664afee169fa8..5eee64b7b26813032f144fc12177d24b8a6d6db9 100644 GIT binary patch literal 4900 zcmb7I3v3hT9skEUJC5zdQGvj!YC6QA=~Nn%tu$n`ov{-_!3nV)JO;sBe4ihQednFe zk7T5Tf!e$nnMy)R(MsE)ss(K{>T8s3tWeR1I=X49)-mFejWgf{n23S`ZWNCMtt}V(uV>3 zX921f0(4CS)I0~w8w`N05twsGjdox@Sc)_V%tv|8{>swV? z;{fC9ub>=17|)^HidtCkpn&opg0I_OM*1UIQvWl6%0;kt@(fx8DrI&;+fWqcRH@W< zQl<725GZ$}od3e+_f8@IXR!G)@>S1MX^j;|uKy0@O~8>WA;dih=bZ)s``u+vrM97e zL4(9X_-`@Cj&`A*3o5nmXI^c^b=bt5%j`#dTBXL7%!f~)-118*H9lsH49~~s zCgUrwpFCimr29-~x&pYbzo>{k^(e|;Qt=F_ z!S&VVnz9Ax&js^0Uh2X17tC$b*YTV#SN{6?RixW34}FqCdAlvIj=qKVnk*;BWZcj5 zmNSj-;Cb|0`^rDX{W)TN+k^XOzG6H7+cer`Q7QAh?c+D8J%3Ya)oaz`FA~)ElKtU7 z?Z)+X`LRTTIIp+FcoiSbCm~TqMV(*2ujY(C&(o zP;VQ_ZX!}DCJIF?%wCK41r2O+ivlN;B8=JV2@VcS_kX0}s@96EEV2R8?TeMbqu>Do zJj8&5bs#_(L|`EUOJN0Aq}EyIoK+se$GCMuSY$IxS6EzPvQLUdqB2|Ox`%CWI2x8WI2!I}6_isV z++p=dk(`%dmG3ZUn_$;AA*dG{Ozy;%gBsY-zP`xyI*0AaCx!an(7``$2{@`o#X%$Pbrb&9 z<4Fn%&EiS+YBFm45+|hMoGeOg6Z?Hq99otwm)k!X2)Az?G-^B*0SN=fQygK;-fO|1 zXds(QOeEt(CT(0oK~^^NG1(U-L{`GwJl-(*9N_u>X;nJN-7_X_5=C8Q!(k9y~o$sR^>S#Ns6AOeTrI7fWLbtTeUg+GT;Y zm=_!*A*u;Au9diCv{;;JV0x-7&uymF@7YicV#woL0-7MkPjaO@F-Q5ac(|AlhzY!y zz3sy(=BWlZ=5`qUNkbfD&5#N=33KVVVoNa(Gx^tvQ4Ps7=VJP>xel;I9zD8QdGvtj zE|tLMI-O$RB4|;(iDTv@(K88BN*+Zt9oCj~Jid{`sw_lwRgJtDuGY{@D~TudV79J* zWG@a}8vZnQa?@-u*wzbTR$xPz4xyADo0+l|I8&vvsEIH)&y+E9RkNx_ z-^sW_uLN>+ThpIG>1r^m z+HXhaom6K=9YAhJ8$&C+X0iEZb*Cp=VwqCicYQWu7>Y($YdrIARQFIiC5s6*MVrU1 z*$YbG9fj<4cXYY$m>BI0dOZ^tCWbpQZ66lYkOi(d?JrzB&UO>bD#D6b?{&p6)PBu& zlS?uBHjtGnGS;uus*fr%} zvRK9B8v&TW`zB4g-5pCM<6NJMn@#T$gC2nZrW{eCHl#!^jaA`BtV*bk!ykQmTHw#>MoUkn|i6n`z$#^;v(~s|4k1Hjo#EkrO1T;0~4V(~3a}oW>WytYuvlCi5 ze(30WS4%&QaDF~MW1cb(Ob>A5O9uX&H<48%BT30OitwU(<|P`2Evt-+#Ogy3%Hu68oAm z|C+ckV%aX{?M4-f!m>rbsQfW~-HpM^Q=<3j!7qoRGiLf(L-@R*a0e;< zjG|*eo)WvN1WPLsZho1TxM-#pQjuCXR4TnVL4>rftBOlq7dx`vg&K=ZVUa~K-pxt6 zT(+K7(y2hLf2^PjSp5@xP|JX~VkoOQdRqrJO_gw*ekTStEZbk1qL0L9F4?uDQN zSG1YF0Ao_!);5Zv4$}=PKr#IHhIeV03SS!QtJFtfcox`K>CmN2KMeiW(17Lm?|~xF F{{TaJafko_ literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/zh-HK.ts b/Source/Resource/Translations/zh-HK.ts index 7e258c080..4f53fb2cc 100644 --- a/Source/Resource/Translations/zh-HK.ts +++ b/Source/Resource/Translations/zh-HK.ts @@ -1,1009 +1,1011 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) -Quicktime -RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - + + MediaInfo v%1 +版權持有 (C) 2002-2025 MediaArea.net SARL + - - Go to website - + + MediaInfo_About + 使用MediaInfo可輕易觀看影音和圖像檔案的技術和標籤資訊。 +除蘋果應用程式商店圖像用戶介面外,它是開源的。 +按BSD式授權協議,用戶和開發者可免費研習、更改和再發佈本程式。 - - Check for new version - + + Go to WebSite + 前往網站 - + + CheckNewVersion + 檢查新版本 + + + Donate - + 贊助 - - Write mail to author - + + WriteMe + 寫信給作者 - + Translator : Zen - + 「香港正體字」譯者 : Kin Kwok - + OK - + 確定 - + About - + 關於 EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + 路徑 Export - - Choose your desired export format - + + Choose export format + 選擇匯出格式 - - Format: - + + Format + 格式 - - Profile: - + + Profile + - + Advanced mode - + 進階模式 + + + + File_Append + 附加到目前檔案後(警告:同參數時要小心) - - Append to the existing file - + + Export + 匯出 - - + + Text - + 文字 - - + + Graph - + Graph - + HTML - + 網頁式 - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + 檢視 - + Help - + 說明 - + Options - + 選項 - + File - + 檔案 - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + 關於 - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + 離開 - + Ctrl+Q - + - + Known formats - + 已知格式 - + Known codecs - + 已知編解碼器 - + Known parameters - + 已知項目 - + English - + - + Français - + - + Preferences - + 喜好設定 - + Ctrl+P - + - + Export - + 匯出 - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + 進階模式 - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + 格式 - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + 設定 - + 0 - + - + Advanced - + 進階 - + 1 - + - + Customize - + 自訂 - + Sheet - + 表格 - + 2 - + - + Tree & Text - + 樹狀圖和文字 - + 3 - + - + Custom - + 自訂 - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + 檢視方式 - - 11 - + + Language + 語言 - - 12 - + + Monospaced font size + - - 14 - + + Newest version + 檢查更新(須網絡連線) - - 16 - + + Shell extension + 快顯功能表(影音檔案右鍵選單加入MediaInfo選項) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + 檔案提示(滑鼠移到檔案上顯示相關訊息) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + 開啟前關閉其他檔案 - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + 顯示選單 - + Show toolbar - + 顯示工具列 - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + 選擇自訂表格 - - - + + + Delete - + 刪除 - - - + + + Edit - + 編輯 - - - + + + New - + 新建 - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + 選擇自訂文字 - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + 喜好設定 - + File Name - + QObject - + Easy - + - + Sheet - + 表格 - + Tree - + 樹狀圖 - + Text - + 文字 - + HTML - + 網頁式 - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + 自訂 - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + 網頁 - + no selection - + - + Summary - + 摘要 editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file diff --git a/Source/Resource/Translations/zh-TW.qm b/Source/Resource/Translations/zh-TW.qm index be651eede2edc9cb0da5c140b31664afee169fa8..cf4b928feb2f29b381d62a17a6f9d3696feea296 100644 GIT binary patch literal 5198 zcmb7I4{Q_H8UK=;9mh#Atbo{*#a0}^ecQH|wzv#)- z7U<_Ic6crjm2W7XErp3H+{M+OYIr|i{P(X60yk9h^Tm*twwIiL`4>c`j*?e;ppWoF zq2|(M;D05YT5ufr8sXH*&DiG+W2`zaJl~9YY8S3#4gfD1qkW$6xBcKNyk(5`j4d)W z9q*#;x!;0snQSknXTis7f7D)r{Z7~qg}|rkOZJl|TcFoT`^C*c*!4(h?8zPAKd1C4 ztHS(pM^(`b=<}lE%fIQt{4QUf0ey>>wS!yoZr5d0>6~=`8_W~-eTvuy&C-T zs`Fy~pW%;V<^3h^!ak$rfAYe9WmhZS{$m>aJ~T$#p^A52;_|$1j8k5iGID}peZT9G zHy*?MBd(X+9-^YI7?^zoBnhKe**OOu$c}%TyGu!HrRGx+hd6tlj$CJ_)#k_o6XD{D)mqd%e zhmnRgKe?%m*6@hNA2-EAUKWl?tK@D)%*QBr{F)yW7?{^Ytt`#%e;J9NMy_emIr6mKoeIYvWI!c)jO9w0ZBPVJ9_^6M{() zLWM#p+J@%^5XeU>@qt2qTi|PB?_Q|J(Q9c1))qqX?0P#C_l#Sw%USnOJJva8Kb{J) zOLDL=3Q$@%O$xJKS_0$nom(**qYz}&FeYF+Cyd4o8P74UlY&^4;VOlCp;6ZCS!siq zZP%sYPX>3d&fBnp0{3#aw87O)_+%;Fpj$OY$)6$D!1SH!p^u}>I$azGZjJPH9pQl< ze*MX<&vNbEv~Fz1;JgSyu!!cHZg-h(@3hJVq3?IY`%G}LZ*{)2Y1a4e?BQ|QfdADn z4UaDoaRq~zR8;|0l2dU>Q&h1*+{nf!kF(>Z@7h4OZ_`ejNmCkBkrLj59O~H1w4MWj zN)uSos3ekcrm+?&p`*)IgkzdN%9y4nvty+0;E#J|ce+f9N_RLT$sraN6G~Vov9IV$ zDyo6MZ=^4L$+vZAS7z|>`qtar$|mLX#;BsCn8ur-{Y=v7b z7qlpJJXoFjtYdvdw6|TXp<~H%lg*;j9O_tI*kw_{6I7v}cM%zkNN=6IV4V*b#WMYKofOky+g#D-^n1uvbU!gT7 zD7Q|p6qAE7IjrDZ%;hcitOKLcGEs>73z6}Gz3p<`LHz;4LvTmj_q`4)9(DU@r zK@%;s$5^kG2(>7m9u#a|-TV~Q3%rPO8--_Nz1GFyF9lvoU`C^q$#SOK<82WAQKeUG zj7qZ1;zmB|(&S2~NB=y_eFA!>^5bV6jsQ;%_i0(~sI8%G>sEQJ8Gi?i!}y3e#f%n! zpJWO|7ct94=H*($4F6`-hi?&YX^ct!Z7L+X!(lOmbDw)b45Pi_t&4_~7tui_jV7u< zF@BO7`)9!22xepV$?Q3c@0l?guF32s@LF$5?6_O!xn~O`%c=9b{ykj0I~rYPQcfGI z^PzM~Qxal|A10Gwl2;Dz%V)wZWzA!B&$`Yw@95Rhq1H^tV|n#tMq`|xH&Q$+IK%+zCt93IjJDuQA;u@CM5gR}GnE*uM)Q!0QU{ zWD}?(j3RhTVm6JZ+}3dV3R&ukGqI^Dkz^4u8Ba%I*71Gs#-+eZ!thhyyJL#%SR=`i zv=p(9T!Ecl|CEU>!6na9JCR=tBg9T;2Km(x8dV>npr0NVuH{B literal 16 YcmcE7ks@*G{hX<16=n7(EZln+07b?KzW@LL diff --git a/Source/Resource/Translations/zh-TW.ts b/Source/Resource/Translations/zh-TW.ts index 7e258c080..1ece016dd 100644 --- a/Source/Resource/Translations/zh-TW.ts +++ b/Source/Resource/Translations/zh-TW.ts @@ -1,1009 +1,1018 @@ - - - + + About - + MediaInfo v%1 Copyright (C) 2002-2025 MediaArea.net SARL - -Supply very detailled information -about a multimedia file: -Matroska, OGG (including OGM) -MPEG1 (including VCD) -MPEG2 (including DVD and SVCD) -MPEG4 (including Itunes M4A) + + MediaInfo v%1 +著作權 (C) 2002-2025 MediaArea.net SARL + + + + + MediaInfo_About + 支援非常詳盡的多媒體檔案資訊: +Matroska, OGG (包含 OGM) +MPEG-1 (包含 VCD) +MPEG-2 (包含 DVD, SVCD) +MPEG-4 (包含 iTunes M4A) Quicktime RealMedia -WindowsMedia (including WMV, WMA) -Microsoft RIFF (including AVI, WAV) -Sound-only formats (AC3, DTS, AAC, AU, AIFF...) - +WindowsMedia (包含 WMV, WMA) +Microsoft RIFF (包含 AVI, WAV) +純聲音格式 (AC3, DTS, AAC, AU, AIFF...) - - Go to website - + + Go to WebSite + 前往網站 - - Check for new version - + + CheckNewVersion + 檢查新版本 - + Donate - + 贊助 - - Write mail to author - + + WriteMe + 寫信給作者 - + Translator : Zen - + 翻譯 : Kene Lin - + OK - + 確認 - + About - + 關於 EditCustom - + Form - + - + name - + - + index - + - + Insert : - + - + Insert - + EditSheet - + Dialog - + - + Name : - + - + 0 - + - + + - + - + Adapt columns to content - + - + CompleteName - + 完整檔名 Export - - Choose your desired export format - + + Choose export format + 選擇你要的輸出格式 - - Format: - + + Format + 格式 - - Profile: - + + Profile + - + Advanced mode - + 進階模式 - - Append to the existing file - + + File_Append + 接在現存的檔案之後 (注意: 同參數時要小心) - - + + Export + 匯出 + + + + Text - + 文字 - - + + Graph - + Graph - + HTML - + 網頁 - + XML - + - + JSON - + - + PBCore - + - + PBCore 2 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Save File - + - + %1 files (*.%2) - + MainWindow - - + + View - + 檢視 - + Help - + 說明 - + Options - + 選項 - + File - + 檔案 - + toolBar - + - - + + Open File(s) - + - + Ctrl+O - + - + About - + 關於 - + F1 - + - - + + Open Folder - + - - Quit - + + Exit + 離開 - + Ctrl+Q - + - + Known formats - + 已知格式 - + Known codecs - + 已知編解碼器 - + Known parameters - + 已知參數 - + English - + - + Français - + - + Preferences - + 偏好設定 - + Ctrl+P - + - + Export - + 匯出 - + Export in a customized format - + - - Advanced Mode - + + Advanced mode + 進階模式 - - Full parse - + + FullParsing + Full parsing - - reset columns sizes - + + Reset columns sizes + - - adapt columns to content - + + Adapt columns to content + - + Close All - + - + Ctrl+Shift+W - + - - view - + + Trace + - + Update to new version - + - + Icon size - + - + Text position - + - + Icons only - + - + Text only - + - + Text under icons - + - + Text beside icons - + - - + + Default - + Default - + Small - + - + Medium - + - + Big - + - + Huge - + - + Opening files... - + - + Abort Opening - + - + You must at least open 1 file. Open a file or a directory. - + - + You must at least open 1 file. Open a file or a directory, or simply drag n drop files in the window. - + - + MediaInfo - + - + files window title - + - + key - + - + value - + - + File Name - + - + Format - + 格式 - + Video Codec List - + - + Audio Codec List - + - + Text Codec List - + - + Video Format - + - + Audio Duration - + - + Text Width - + Preferences - + name - + - + widget index - + - + Setup - + 設定 - + 0 - + - + Advanced - + 進階 - + 1 - + - + Customize - + 自訂 - + Sheet - + 表格 - + 2 - + - + Tree & Text - + 樹狀圖與文字 - + 3 - + - + Custom - + 自訂 - + 4 - + - + Graph - + Graph - + 5 - + - - Open each item in a separate instance - + + 8 + - - Shell InfoTip - + + 9 + - - Shell extension - + + 10 + - - Check for new versions - + + 11 + - - Default View - + + 12 + - - Monospaced font - + + 14 + - - Language - + + 16 + - - Monospaced font size - + + 18 + - - 8 - + + 20 + - - 9 - + + Monospaced font + - - 10 - + + Output format + 輸出格式 - - 11 - + + Language + 語系 - - 12 - + + Monospaced font size + - - 14 - + + Newest version + 檢查最新的版本 (需要網路連線) - - 16 - + + Shell extension + 快顯功能表 (在檔案總管裡, 按右鍵會出現 MediaInfo 的選項) - - 18 - + + Open each item in a separate instance + - - 20 - + + Shell InfoTip + 資訊提示 (在檔案總管裡, 將滑鼠移到檔案上會顯示相關訊息) - + Remember its position - + - + Remember Window Geometry - + - + Add creation date to text output - + Add creation date to text output - + Close all before open - + 開啟前關閉其它檔案 - + Display legacy AC-3/DTS/AAC streams embedded in HD/HE streams (requires reload) - + - + Show menu - + 顯示選單 - + Show toolbar - + 顯示工具列 - - When content is detected - + + DisplayCaptions_Content + When content is detected - - When content or a command is detected - + + DisplayCaptions_Command + When content or a command is detected - - Even when no content or command is detected - + + DisplayCaptions_Stream + Even when no content or command is detected - - Handling of 608/708 streams: - + + DisplayCaptions + Handling of 608/708 streams: - + Add version to text output - + Add version to text output - + Enable FFmpeg plugin - + Enable FFmpeg plugin - - Choose your desired custom sheet - + + Choose custom sheet + 選擇你要的自訂表格 - - - + + + Delete - + 刪除 - - - + + + Edit - + 編輯 - - - + + + New - + 新增 - + Select your desired configuration - + - - Choose your desired custom text - + + Choose custom text + 選擇你要的自訂文字 - + ADM: Show ChannelFormats - + ADM: Show ChannelFormats - + ADM: Show TrackUIDs - + ADM: Show TrackUIDs - + Preferences - + 偏好設定 - + File Name - + QObject - + Easy - + - + Sheet - + 表格 - + Tree - + 樹狀圖 - + Text - + 文字 - + HTML - + 網頁 - + XML - + - + JSON - + - + Graph - + Graph - + PBCore 1.2 - + - + PBCore 2.0 - + - + MPEG-7 (strict) - + - + MPEG-7 (relaxed) - + - + MPEG-7 (extended) - + - + EBUCore 1.5 - + - + EBUCore 1.6 - + - + EBUCore 1.8 parameter then segment - + - + EBUCore 1.8 segment then parameter - + - + EBUCore 1.8 parameter then segment (JSON output) - + - + EBUCore 1.8 segment then parameter (JSON output) - + - + FIMS 1.1 - + - + FIMS 1.2 - + - + FIMS 1.3 - + - + NISO Z39.87 - + - + Custom - + 自訂 - + Unknown view - + SheetView - + Frame - + - + filename - + - + Web - + 網頁 - + no selection - + - + Summary - + 摘要 editConfigTreeText - + Dialog - + - + Page 1 - + - + Page 2 - + - + \ No newline at end of file