From 67deec357a5e4622e356001c237727b4666baa05 Mon Sep 17 00:00:00 2001 From: Rodney Date: Aug 22 2019 16:14:03 +0000 Subject: Merge pull request #2720 from shun-iwasawa/g/translation_update_Aug2019 Translation fixes and Japanese translation update --- diff --git a/stuff/config/loc/日本語/tnztools.qm b/stuff/config/loc/日本語/tnztools.qm index 69617a9..183c7aa 100644 Binary files a/stuff/config/loc/日本語/tnztools.qm and b/stuff/config/loc/日本語/tnztools.qm differ diff --git a/stuff/config/loc/日本語/toonz.qm b/stuff/config/loc/日本語/toonz.qm index 5786124..87f2123 100644 Binary files a/stuff/config/loc/日本語/toonz.qm and b/stuff/config/loc/日本語/toonz.qm differ diff --git a/stuff/config/loc/日本語/toonzqt.qm b/stuff/config/loc/日本語/toonzqt.qm index a28868f..ef5146b 100644 Binary files a/stuff/config/loc/日本語/toonzqt.qm and b/stuff/config/loc/日本語/toonzqt.qm differ diff --git a/toonz/sources/include/toonzqt/combohistogram.h b/toonz/sources/include/toonzqt/combohistogram.h index e9c60ab..505ffab 100644 --- a/toonz/sources/include/toonzqt/combohistogram.h +++ b/toonz/sources/include/toonzqt/combohistogram.h @@ -43,6 +43,7 @@ class QLabel; //----------------------------------------------------------------------------- class DVAPI ComboHistoRGBLabel final : public QWidget { + Q_OBJECT QColor m_color; public: diff --git a/toonz/sources/include/toonzqt/fxschematicnode.h b/toonz/sources/include/toonzqt/fxschematicnode.h index 1538523..11c0a9d 100644 --- a/toonz/sources/include/toonzqt/fxschematicnode.h +++ b/toonz/sources/include/toonzqt/fxschematicnode.h @@ -70,7 +70,8 @@ protected: // FxPalettePainter //***************************************************** -class FxPalettePainter final : public QGraphicsItem, public QObject { +class FxPalettePainter final : public QObject, public QGraphicsItem { + Q_OBJECT FxSchematicPaletteNode *m_parent; double m_width, m_height; QString m_name; @@ -189,6 +190,7 @@ protected: //***************************************************** class FxSchematicPort final : public SchematicPort { + Q_OBJECT TFx *m_ownerFx; FxSchematicPort *m_currentTargetPort; QList m_hiddenLinks; @@ -353,6 +355,8 @@ signals: //***************************************************** class FxSchematicOutputNode final : public FxSchematicNode { + Q_OBJECT + FxOutputPainter *m_outputPainter; public: @@ -373,6 +377,8 @@ protected: //***************************************************** class FxSchematicXSheetNode final : public FxSchematicNode { + Q_OBJECT + FxXSheetPainter *m_xsheetPainter; public: diff --git a/toonz/sources/include/toonzqt/studiopaletteviewer.h b/toonz/sources/include/toonzqt/studiopaletteviewer.h index c8fdf64..7b572ef 100644 --- a/toonz/sources/include/toonzqt/studiopaletteviewer.h +++ b/toonz/sources/include/toonzqt/studiopaletteviewer.h @@ -5,6 +5,7 @@ #include "toonz/studiopalette.h" #include "toonz/tproject.h" +#include "toonzqt/dvdialog.h" #include #include @@ -27,6 +28,10 @@ class PalettesScanPopup; class TXsheetHandle; class TXshLevelHandle; class PaletteViewer; +namespace DVGui { +class IntField; +} + //============================================================================= //! The StudioPaletteTreeViewer class provides an object to view and manage //! palettes files. @@ -223,4 +228,16 @@ public: void setViewMode(int mode); }; +//----------------------------------------------------------------------------- + +class AdjustPaletteDialog final : public DVGui::Dialog { + Q_OBJECT +private: + DVGui::IntField *m_tolerance; + +public: + int getTolerance(); + AdjustPaletteDialog(); +}; + #endif // STUDIOPALETTEVIEWER_H diff --git a/toonz/sources/toonz/boardsettingspopup.h b/toonz/sources/toonz/boardsettingspopup.h index fb86d46..583466e 100644 --- a/toonz/sources/toonz/boardsettingspopup.h +++ b/toonz/sources/toonz/boardsettingspopup.h @@ -21,7 +21,7 @@ namespace DVGui { class FileField; class ColorField; class IntLineEdit; -} +} // namespace DVGui //============================================================================= @@ -155,6 +155,7 @@ protected slots: //============================================================================= class SaveBoardPresetFilePopup final : public GenericSaveFilePopup { + Q_OBJECT public: SaveBoardPresetFilePopup(); @@ -165,6 +166,7 @@ protected: //============================================================================= class LoadBoardPresetFilePopup final : public GenericLoadFilePopup { + Q_OBJECT public: LoadBoardPresetFilePopup(); diff --git a/toonz/sources/toonz/cellselectioncommand.cpp b/toonz/sources/toonz/cellselectioncommand.cpp index cc78814..2c041e4 100644 --- a/toonz/sources/toonz/cellselectioncommand.cpp +++ b/toonz/sources/toonz/cellselectioncommand.cpp @@ -599,7 +599,7 @@ ReframeUndo::ReframeUndo(int r0, int r1, std::vector columnIndeces, assert(m_cells); int k = 0; for (int r = r0; r <= r1; r++) - for (int c = 0; c < (int)m_columnIndeces.size(); c++) + for (int c = 0; c < (int)m_columnIndeces.size(); c++) m_cells[k++] = TApp::instance()->getCurrentXsheet()->getXsheet()->getCell( r, m_columnIndeces[c]); @@ -719,7 +719,7 @@ void TCellSelection::reframeWithEmptyInbetweens() { // destruction of m_reframePopup will be done along with the main window if (!m_reframePopup) m_reframePopup = new ReframePopup(); - int ret = m_reframePopup->exec(); + int ret = m_reframePopup->exec(); if (ret == QDialog::Rejected) return; int step, blank; @@ -762,7 +762,7 @@ void TColumnSelection::reframeWithEmptyInbetweens() { colIndeces.push_back(*it); if (!m_reframePopup) m_reframePopup = new ReframePopup(); - int ret = m_reframePopup->exec(); + int ret = m_reframePopup->exec(); if (ret == QDialog::Rejected) return; int step, blank; @@ -1294,9 +1294,8 @@ public: void undo() const override; int getSize() const override { - return sizeof *this + - (sizeof(TXshLevelP) + sizeof(TXshSimpleLevel *)) * - m_insertedLevels.size(); + return sizeof *this + (sizeof(TXshLevelP) + sizeof(TXshSimpleLevel *)) * + m_insertedLevels.size(); } QString getHistoryString() override { @@ -1366,11 +1365,13 @@ public: LevelNamePopup(const std::wstring &defaultLevelName) : DVGui::Dialog(TApp::instance()->getMainWindow(), true, true, "Clone Level") { - setWindowTitle(tr("Clone Level")); + setWindowTitle( + QObject::tr("Clone Level", "CloneLevelUndo::LevelNamePopup")); beginHLayout(); - QLabel *label = new QLabel(tr("Level Name:")); + QLabel *label = new QLabel( + QObject::tr("Level Name:", "CloneLevelUndo::LevelNamePopup")); addWidget(label); m_name = new DVGui::LineEdit; diff --git a/toonz/sources/toonz/cleanupsettingsmodel.cpp b/toonz/sources/toonz/cleanupsettingsmodel.cpp index 0d6faa1..2475210 100644 --- a/toonz/sources/toonz/cleanupsettingsmodel.cpp +++ b/toonz/sources/toonz/cleanupsettingsmodel.cpp @@ -77,12 +77,12 @@ public: class SaveSettingsPopup final : public IOSettingsPopup { public: - SaveSettingsPopup() : IOSettingsPopup(tr("Save Cleanup Settings")) { + SaveSettingsPopup() : IOSettingsPopup(QObject::tr("Save Cleanup Settings")) { // addFilterType("tif"); // addFilterType("tga"); // addFilterType("png"); - setOkText(tr("Save")); + setOkText(QObject::tr("Save")); } bool execute() override { @@ -113,8 +113,8 @@ public: class LoadSettingsPopup final : public IOSettingsPopup { public: - LoadSettingsPopup() : IOSettingsPopup(tr("Load Cleanup Settings")) { - setOkText(tr("Load")); + LoadSettingsPopup() : IOSettingsPopup(QObject::tr("Load Cleanup Settings")) { + setOkText(QObject::tr("Load")); } bool execute() override { @@ -124,7 +124,7 @@ public: if (loadPath.isEmpty()) return false; if (!TSystem::doesExistFileOrLevel(loadPath)) { - DVGui::error(tr("%1 does not exist.").arg(toQString(loadPath))); + DVGui::error(QObject::tr("%1 does not exist.").arg(toQString(loadPath))); return false; } @@ -361,7 +361,7 @@ void CleanupSettingsModel::commitChanges(int action) { // Perform actions int maxAction = std::max(action, m_action); // Add previuosly required actions - action = std::min(maxAction, + action = std::min(maxAction, m_allowedActions); // But only up to the allowed action m_action = (action == maxAction) ? NONE @@ -691,7 +691,7 @@ bool CleanupSettingsModel::loadSettings(const TFilePath &clnPath) { void CleanupSettingsModel::promptSave() { static SaveSettingsPopup *savePopup = 0; - if (!savePopup) savePopup = new SaveSettingsPopup; + if (!savePopup) savePopup = new SaveSettingsPopup; savePopup->setPath(getClnPath(m_sl)); savePopup->exec(); @@ -701,7 +701,7 @@ void CleanupSettingsModel::promptSave() { void CleanupSettingsModel::promptLoad() { static LoadSettingsPopup *loadPopup = 0; - if (!loadPopup) loadPopup = new LoadSettingsPopup; + if (!loadPopup) loadPopup = new LoadSettingsPopup; loadPopup->setPath(getClnPath(m_sl)); loadPopup->exec(); diff --git a/toonz/sources/toonz/curveio.cpp b/toonz/sources/toonz/curveio.cpp index 451c5e1..3db5cbf 100644 --- a/toonz/sources/toonz/curveio.cpp +++ b/toonz/sources/toonz/curveio.cpp @@ -75,8 +75,8 @@ public: class SaveCurvePopup final : public CurvePopup { public: SaveCurvePopup(const TFilePath folderPath, TDoubleParam *curve) - : CurvePopup(tr("Save Curve"), folderPath, curve) { - setOkText(tr("Save")); + : CurvePopup(QObject::tr("Save Curve"), folderPath, curve) { + setOkText(QObject::tr("Save")); setFilterType("curve"); } @@ -110,8 +110,8 @@ bool SaveCurvePopup::execute() { class LoadCurvePopup final : public CurvePopup { public: LoadCurvePopup(const TFilePath folderPath, TDoubleParam *curve) - : CurvePopup(tr("Load Curve"), folderPath, curve) { - setOkText(tr("Load")); + : CurvePopup(QObject::tr("Load Curve"), folderPath, curve) { + setOkText(QObject::tr("Load")); setFilterType("curve"); } @@ -154,8 +154,9 @@ class ExportCurvePopup final : public CurvePopup { public: ExportCurvePopup(const TFilePath folderPath, TDoubleParam *curve, const std::string &name) - : CurvePopup(tr("Export Curve"), folderPath, curve), m_name(name) { - setOkText(tr("Export")); + : CurvePopup(QObject::tr("Export Curve"), folderPath, curve) + , m_name(name) { + setOkText(QObject::tr("Export")); setFilterType("dat"); } diff --git a/toonz/sources/toonz/filedata.cpp b/toonz/sources/toonz/filedata.cpp index bd873d5..86d362b 100644 --- a/toonz/sources/toonz/filedata.cpp +++ b/toonz/sources/toonz/filedata.cpp @@ -41,7 +41,7 @@ void FileData::getFiles(TFilePath folder, if (!TSystem::doesExistFileOrLevel(oldPath)) { DVGui::warning( - tr("It is not possible to find the %1 level.") + QObject::tr("It is not possible to find the %1 level.", "FileData") .arg(QString::fromStdWString(oldPath.getWideString()))); return; } @@ -58,7 +58,8 @@ void FileData::getFiles(TFilePath folder, if (TSystem::copyFileOrLevel(levelPathOut, oldPath)) newFiles.push_back(levelPathOut); else { - QString msg = tr("There was an error copying %1").arg(toQString(oldPath)); + QString msg = QObject::tr("There was an error copying %1", "FileData") + .arg(toQString(oldPath)); DVGui::error(msg); return; } diff --git a/toonz/sources/toonz/fileselection.cpp b/toonz/sources/toonz/fileselection.cpp index 2790c9d..81fc2f0 100644 --- a/toonz/sources/toonz/fileselection.cpp +++ b/toonz/sources/toonz/fileselection.cpp @@ -185,7 +185,7 @@ public: } }; //----------------------------------------------------------------------------- -} +} // namespace //------------------------------------------------------------------------ @@ -463,8 +463,8 @@ void FileSelection::collectAssets() { if (count > 1) { QMainWindow *mw = TApp::instance()->getMainWindow(); - ProgressDialog progress(tr("Collecting assets..."), tr("Abort"), 0, count, - mw); + ProgressDialog progress(QObject::tr("Collecting assets..."), + QObject::tr("Abort"), 0, count, mw); progress.setWindowModality(Qt::WindowModal); int i; @@ -552,8 +552,8 @@ void FileSelection::importScenes() { if (count > 1) { QMainWindow *mw = TApp::instance()->getMainWindow(); - ProgressDialog progress(tr("Importing scenes..."), tr("Abort"), 0, count, - mw); + ProgressDialog progress(QObject::tr("Importing scenes..."), + QObject::tr("Abort"), 0, count, mw); progress.setWindowModality(Qt::WindowModal); int i; diff --git a/toonz/sources/toonz/frameheadgadget.h b/toonz/sources/toonz/frameheadgadget.h index 19fd43e..9e4f8ae 100644 --- a/toonz/sources/toonz/frameheadgadget.h +++ b/toonz/sources/toonz/frameheadgadget.h @@ -70,6 +70,7 @@ public: }; class FilmstripFrameHeadGadget final : public FrameHeadGadget { + Q_OBJECT FilmstripFrames *m_filmstrip; int m_dy; int m_highlightedghostFrame; diff --git a/toonz/sources/toonz/lipsyncpopup.cpp b/toonz/sources/toonz/lipsyncpopup.cpp index 73c0c8e..6a00ce3 100644 --- a/toonz/sources/toonz/lipsyncpopup.cpp +++ b/toonz/sources/toonz/lipsyncpopup.cpp @@ -469,7 +469,7 @@ void LipSyncPopup::imageNavClicked(int id) { else if (frameIndex == 0 && direction == -1) newIndex = m_levelFrameIds.size() - 1; else - newIndex = frameIndex + direction; + newIndex = frameIndex + direction; m_activeFrameIds[frameNumber] = m_levelFrameIds.at(newIndex); TXshCell newCell = TApp::instance()->getCurrentScene()->getScene()->getXsheet()->getCell( @@ -507,7 +507,7 @@ void LipSyncPopup::paintEvent(QPaintEvent *) { m_pixmaps[i] = pm; m_imageLabels[i]->setPixmap(m_pixmaps[i]); m_textLabels[i]->setText( - "Drawing: " + QString::number(m_activeFrameIds[i].getNumber())); + tr("Drawing: ") + QString::number(m_activeFrameIds[i].getNumber())); } i++; } diff --git a/toonz/sources/toonz/loadfoldercommand.cpp b/toonz/sources/toonz/loadfoldercommand.cpp index 1e82ed8..7fdec12 100644 --- a/toonz/sources/toonz/loadfoldercommand.cpp +++ b/toonz/sources/toonz/loadfoldercommand.cpp @@ -372,7 +372,7 @@ struct import_Locals { m_scene.getImportedLevelPath(path.absoluteResourcePath()) .getParentDir() // E.g. +drawings/ + path.m_rootFp.getWideName() // Root dir name - ); + ); } static void copy(const TFilePath &srcDir, const TFilePath &dstDir, @@ -464,11 +464,11 @@ void import(const ToonzScene &scene, std::vector &resources, OverwriteDialog::OverwriteDialog(QWidget *parent) : ValidatedChoiceDialog(parent, ValidatedChoiceDialog::APPLY_TO_ALL) { - setWindowTitle(tr("Warning!")); + setWindowTitle(QObject::tr("Warning!", "OverwriteDialog")); // Option 1: OVERWRITE QRadioButton *radioButton = new QRadioButton; - radioButton->setText(tr("Overwrite")); + radioButton->setText(QObject::tr("Overwrite", "OverwriteDialog")); radioButton->setFixedHeight(20); radioButton->setChecked(true); // initial option: OVERWRITE @@ -477,7 +477,7 @@ OverwriteDialog::OverwriteDialog(QWidget *parent) // Option 2: SKIP radioButton = new QRadioButton; - radioButton->setText(tr("Skip")); + radioButton->setText(QObject::tr("Skip", "OverwriteDialog")); radioButton->setFixedHeight(20); m_buttonGroup->addButton(radioButton, SKIP); @@ -511,7 +511,9 @@ QString OverwriteDialog::acceptResolution(void *obj_, int resolution, if (resolution == NO_RESOLUTION) { // Test existence of any resource components if (locals::existsResource(obj.m_dstDir, obj.m_rsrc)) - error = tr("File \"%1\" already exists.\nDo you want to overwrite it?") + error = QObject::tr( + "File \"%1\" already exists.\nDo you want to overwrite it?", + "OverwriteDialog") .arg(obj.m_rsrc.m_path.m_relFp.getQString()); } diff --git a/toonz/sources/toonz/matchlinecommand.cpp b/toonz/sources/toonz/matchlinecommand.cpp index 4facb4c..c4df760 100644 --- a/toonz/sources/toonz/matchlinecommand.cpp +++ b/toonz/sources/toonz/matchlinecommand.cpp @@ -49,10 +49,9 @@ void MergeCmappedDialog::accept() { if (TSystem::doesExistFileOrLevel(fp)) { if (DVGui::MsgBox( - QObject::tr("Level ") + - QString::fromStdWString(m_levelPath.getWideString()) + - QObject::tr( - " already exists! Are you sure you want to overwrite it?"), + tr("Level %1 already exists! Are you sure you want to overwrite " + "it?") + .arg(QString::fromStdWString(m_levelPath.getWideString())), tr("Ok"), tr("Cancel")) != 1) return; else { @@ -112,16 +111,16 @@ public: selection ? selection->getIndices() : std::set(); if (indices.empty()) { - DVGui::warning( - tr("It is not possible to execute the merge column command because " - "no column was selected.")); + DVGui::warning(QObject::tr( + "It is not possible to execute the merge column command because " + "no column was selected.")); return; } if (indices.size() == 1) { - DVGui::warning( - tr("It is not possible to execute the merge column command because " - "only one columns is selected.")); + DVGui::warning(QObject::tr( + "It is not possible to execute the merge column command because " + "only one columns is selected.")); return; } @@ -143,18 +142,18 @@ public: TColumnSelection *selection = dynamic_cast(TSelection::getCurrent()); if (!selection) { - DVGui::warning( - tr("It is not possible to apply the match lines because no column " - "was selected.")); + DVGui::warning(QObject::tr( + "It is not possible to apply the match lines because no column " + "was selected.")); return; } std::set indices = selection->getIndices(); if (indices.size() != 2) { - DVGui::warning( - tr("It is not possible to apply the match lines because two columns " - "have to be selected.")); + DVGui::warning(QObject::tr( + "It is not possible to apply the match lines because two columns " + "have to be selected.")); return; } @@ -263,9 +262,8 @@ public: } int getSize() const override { - return sizeof *this + - (sizeof(TXshLevelP) + sizeof(TXshSimpleLevel *)) * - m_createdLevels.size(); + return sizeof *this + (sizeof(TXshLevelP) + sizeof(TXshSimpleLevel *)) * + m_createdLevels.size(); } }; @@ -420,18 +418,18 @@ public: TColumnSelection *selection = dynamic_cast(TSelection::getCurrent()); if (!selection) { - DVGui::warning( - tr("It is not possible to merge tlv columns because no column was " - "selected.")); + DVGui::warning(QObject::tr( + "It is not possible to merge tlv columns because no column was " + "selected.")); return; } std::set indices = selection->getIndices(); if (indices.size() < 2) { - DVGui::warning( - tr("It is not possible to merge tlv columns because at least two " - "columns have to be selected.")); + DVGui::warning(QObject::tr( + "It is not possible to merge tlv columns because at least two " + "columns have to be selected.")); return; } @@ -459,11 +457,11 @@ public: for (; it != indices.end(); ++it) if (!checkColumnValidity(*it)) return; - DVGui::ProgressDialog progress(tr("Merging Tlv Levels..."), QString(), 0, - indices.size() - 1, + DVGui::ProgressDialog progress(QObject::tr("Merging Tlv Levels..."), + QString(), 0, indices.size() - 1, TApp::instance()->getMainWindow()); progress.setWindowModality(Qt::WindowModal); - progress.setWindowTitle(tr("Merging Tlv Levels...")); + progress.setWindowTitle(QObject::tr("Merging Tlv Levels...")); progress.setValue(0); progress.show(); diff --git a/toonz/sources/toonz/previewer.cpp b/toonz/sources/toonz/previewer.cpp index 264f959..6ace624 100644 --- a/toonz/sources/toonz/previewer.cpp +++ b/toonz/sources/toonz/previewer.cpp @@ -115,7 +115,7 @@ void buildNodeTreeDescription(std::string &desc, const TFxP &root); inline bool contains(const QRegion ®ion, const TRect &rect) { return QRegion(toQRect(rect)).subtracted(region).isEmpty(); } -} +} // namespace //====================================================================================== // Internal classes declaration @@ -384,7 +384,7 @@ void Previewer::Imp::updateFrameRange() { // Resize the progress bar status int i, oldSize = m_pbStatus.size(); m_pbStatus.resize(newFrameCount); - for (i = oldSize; i < newFrameCount; ++i) + for (i = oldSize; i < newFrameCount; ++i) m_pbStatus[i] = FlipSlider::PBFrameNotStarted; } @@ -466,10 +466,9 @@ void Previewer::Imp::updateAliases() { std::string newAlias = fxPair.m_frameA ? fxPair.m_frameA->getAlias(it->first, m_renderSettings) : ""; - newAlias = - newAlias + (fxPair.m_frameB - ? fxPair.m_frameB->getAlias(it->first, m_renderSettings) - : ""); + newAlias = newAlias + (fxPair.m_frameB ? fxPair.m_frameB->getAlias( + it->first, m_renderSettings) + : ""); if (newAlias != it->second.m_alias) { // Clear the remaining frame infos @@ -484,16 +483,14 @@ void Previewer::Imp::updateAliasKeyword(const std::string &keyword) { std::map::iterator it; for (it = m_frames.begin(); it != m_frames.end(); ++it) { if (it->second.m_alias.find(keyword) != std::string::npos) { - TFxPair fxPair = buildSceneFx(it->first); - it->second.m_alias = - fxPair.m_frameA - ? fxPair.m_frameA->getAlias(it->first, m_renderSettings) - : ""; - it->second.m_alias = - it->second.m_alias + - (fxPair.m_frameB - ? fxPair.m_frameB->getAlias(it->first, m_renderSettings) - : ""); + TFxPair fxPair = buildSceneFx(it->first); + it->second.m_alias = fxPair.m_frameA ? fxPair.m_frameA->getAlias( + it->first, m_renderSettings) + : ""; + it->second.m_alias = it->second.m_alias + + (fxPair.m_frameB ? fxPair.m_frameB->getAlias( + it->first, m_renderSettings) + : ""); // Clear the remaining frame infos it->second.m_renderedRegion = QRegion(); @@ -818,8 +815,9 @@ class SavePreviewedPopup final : public FileBrowserPopup { Previewer *m_p; public: - SavePreviewedPopup() : FileBrowserPopup(tr("Save Previewed Images")) { - setOkText(tr("Save")); + SavePreviewedPopup() + : FileBrowserPopup(QObject::tr("Save Previewed Images")) { + setOkText(QObject::tr("Save")); } void setPreview(Previewer *p) { m_p = p; } @@ -856,14 +854,14 @@ bool Previewer::Imp::doSaveRenderedFrames(TFilePath fp) { fp = fp.withType(ext); } if (fp.getName() == "") { - DVGui::warning( - tr("The file name cannot be empty or contain any of the following " - "characters:(new line) \\ / : * ? \" |")); + DVGui::warning(QObject::tr( + "The file name cannot be empty or contain any of the following " + "characters:(new line) \\ / : * ? \" |")); return false; } if (!formats.contains(QString::fromStdString(ext))) { - DVGui::warning("Unsopporter raster format, cannot save"); + DVGui::warning(QObject::tr("Unsopporter raster format, cannot save")); return false; } @@ -882,18 +880,22 @@ bool Previewer::Imp::doSaveRenderedFrames(TFilePath fp) { TSystem::mkDir(parent); DvDirModel::instance()->refreshFolder(parent.getParentDir()); } catch (TException &e) { - error("Cannot create " + toQString(fp.getParentDir()) + " : " + - QString(::to_string(e.getMessage()).c_str())); + error(QObject::tr("Cannot create %1 : %2", + "Previewer warning %1:path %2:message") + .arg(toQString(fp.getParentDir())) + .arg(QString(::to_string(e.getMessage()).c_str()))); return false; } catch (...) { - error("Cannot create " + toQString(fp.getParentDir())); + error(QObject::tr("Cannot create %1", "Previewer warning %1:path") + .arg(toQString(fp.getParentDir()))); return false; } } if (TSystem::doesExistFileOrLevel(fp)) { - QString question(tr("File %1 already exists.\nDo you want to overwrite it?") - .arg(toQString(fp))); + QString question( + QObject::tr("File %1 already exists.\nDo you want to overwrite it?") + .arg(toQString(fp))); int ret = DVGui::MsgBox(question, QObject::tr("Overwrite"), QObject::tr("Cancel"), 0); if (ret == 2) return false; @@ -935,7 +937,7 @@ void Previewer::Imp::saveFrame() { if (!Pd) break; // Ensure that current frame actually have to be saved - int currFrameToSave = m_currentFrameToSave - 1; + int currFrameToSave = m_currentFrameToSave - 1; std::map::iterator it = m_frames.find(currFrameToSave); if (it == m_frames.end()) continue; @@ -960,12 +962,14 @@ void Previewer::Imp::saveFrame() { } // Output the save result - QString str = "Saved " + QString(std::to_string(savedFrames).c_str()) + - " frames out of " + - QString(std::to_string(frameCount).c_str()) + " in " + - QString(::to_string(m_lw->getFilePath()).c_str()); + QString str = + QObject::tr("Saved %1 frames out of %2 in %3", + "Previewer %1:savedframes %2:framecount %3:filepath") + .arg(QString(std::to_string(savedFrames).c_str())) + .arg(QString(std::to_string(frameCount).c_str())) + .arg(QString(::to_string(m_lw->getFilePath()).c_str())); - if (!Pd) str = "Canceled! " + str; + if (!Pd) str = QObject::tr("Canceled! ", "Previewer") + str; ProgressBarMessager(eEnd, 0, str).send(); @@ -1100,16 +1104,16 @@ void Previewer::saveFrame() { m_imp->saveFrame(); } void Previewer::saveRenderedFrames() { if (TApp::instance()->getCurrentXsheet()->getXsheet()->getFrameCount() == 0) { - info("No frame to save!"); + info(QObject::tr("No frame to save!")); return; } if (m_imp->m_currentFrameToSave != 0) { - info("Already saving!"); + info(QObject::tr("Already saving!")); return; } static SavePreviewedPopup *savePopup = 0; - if (!savePopup) savePopup = new SavePreviewedPopup; + if (!savePopup) savePopup = new SavePreviewedPopup; savePopup->setPreview(this); diff --git a/toonz/sources/toonz/psdsettingspopup.cpp b/toonz/sources/toonz/psdsettingspopup.cpp index 0d2cbc9..edeb128 100644 --- a/toonz/sources/toonz/psdsettingspopup.cpp +++ b/toonz/sources/toonz/psdsettingspopup.cpp @@ -28,12 +28,7 @@ using namespace DVGui; #define REF_LAYER_BY_NAME -QStringList modesDescription = - (QStringList() - << "Flatten visible document layers into a single image. Layer styles are " - "maintained." - << "Load document layers as frames into a single xsheet column." - << "Load document layers as xhseet columns."); +QStringList modesDescription; // Per adesso non appare // Costruisce la stringa delle info della psd da caricare che comparirà nel @@ -121,6 +116,14 @@ PsdSettingsPopup::PsdSettingsPopup() setWindowTitle(tr("Load PSD File")); + if (modesDescription.isEmpty()) { + modesDescription + << tr("Flatten visible document layers into a single image. Layer " + "styles are maintained.") + << tr("Load document layers as frames into a single xsheet column.") + << tr("Load document layers as xhseet columns."); + } + m_filename = new QLabel(tr("")); m_filename->setAlignment(Qt::AlignLeft | Qt::AlignVCenter); m_filename->setFixedHeight(WidgetHeight); @@ -153,11 +156,9 @@ PsdSettingsPopup::PsdSettingsPopup() addSeparator(); m_loadMode = new QComboBox(); - QStringList modes; - modes.push_back("Single Image"); - modes.push_back("Frames"); - modes.push_back("Columns"); - m_loadMode->addItems(modes); + m_loadMode->addItem(tr("Single Image"), QString("Single Image")); + m_loadMode->addItem(tr("Frames"), QString("Frames")); + m_loadMode->addItem(tr("Columns"), QString("Columns")); m_loadMode->setFixedHeight(WidgetHeight); m_loadMode->setFixedWidth(120); @@ -225,13 +226,13 @@ PsdSettingsPopup::PsdSettingsPopup() addLayout(folderOptLayout, false); ret = ret && connect(m_loadMode, SIGNAL(currentIndexChanged(const QString &)), - SLOT(onModeChanged(const QString &))); + SLOT(onModeChanged())); assert(ret); ret = ret && connect(m_psdFolderOptions, SIGNAL(buttonClicked(int)), this, SLOT(onFolderOptionChange(int))); assert(ret); - m_okBtn = new QPushButton("OK", this); - m_cancelBtn = new QPushButton("Cancel", this); + m_okBtn = new QPushButton(tr("OK"), this); + m_cancelBtn = new QPushButton(tr("Cancel"), this); connect(m_okBtn, SIGNAL(clicked()), this, SLOT(onOk())); connect(m_cancelBtn, SIGNAL(clicked()), this, SLOT(close())); addButtonBarWidget(m_okBtn, m_cancelBtn); @@ -263,7 +264,8 @@ int PsdSettingsPopup::levelNameType() { return m_levelNameType->currentIndex(); } -void PsdSettingsPopup::onModeChanged(const QString &mode) { +void PsdSettingsPopup::onModeChanged() { + QString mode = m_loadMode->currentData().toString(); if (mode == "Single Image") { m_mode = FLAT; m_modeDescription->setText(modesDescription[0]); diff --git a/toonz/sources/toonz/psdsettingspopup.h b/toonz/sources/toonz/psdsettingspopup.h index 9e00498..a3ce529 100644 --- a/toonz/sources/toonz/psdsettingspopup.h +++ b/toonz/sources/toonz/psdsettingspopup.h @@ -79,7 +79,7 @@ private: void doPsdParser(); protected slots: - void onModeChanged(const QString &mode); + void onModeChanged(); void onFolderOptionChange(int id); }; diff --git a/toonz/sources/toonz/rendercommand.cpp b/toonz/sources/toonz/rendercommand.cpp index 75e3f97..c7e615b 100644 --- a/toonz/sources/toonz/rendercommand.cpp +++ b/toonz/sources/toonz/rendercommand.cpp @@ -154,7 +154,7 @@ public: isPreview ? *scene->getProperties()->getPreviewProperties() : *scene->getProperties()->getOutputProperties(); outputSettings.getRange(r0, r1, step); - const TRenderSettings rs = outputSettings.getRenderSettings(); + const TRenderSettings rs = outputSettings.getRenderSettings(); if (r0 == 0 && r1 == -1) r0 = 0, r1 = scene->getFrameCount() - 1; double timeStretchFactor = @@ -245,7 +245,7 @@ bool RenderCommand::init(bool isPreview) { m_r0 = 0; m_r1 = scene->getFrameCount() - 1; } - if (m_r0 < 0) m_r0 = 0; + if (m_r0 < 0) m_r0 = 0; if (m_r1 >= scene->getFrameCount()) m_r1 = scene->getFrameCount() - 1; if (m_r1 < m_r0) { DVGui::warning(QObject::tr( @@ -300,7 +300,7 @@ sprop->getOutputProperties()->setRenderSettings(rso);*/ fp.getType() == "pict") // pct e' un formato"livello" (ha i settings di // quicktime) ma fatto di diversi frames fp = fp.withFrame(TFrameId::EMPTY_FRAME); - fp = scene->decodeFilePath(fp); + fp = scene->decodeFilePath(fp); if (!TFileStatus(fp.getParentDir()).doesExist()) { try { TFilePath parent = fp.getParentDir(); @@ -417,8 +417,10 @@ class RenderListener final : public DVGui::ProgressDialog, if (m_frame == -1) m_pb->hide(); else { - m_pb->setLabelText("Rendering frame " + QString::number(m_frame) + "/" + - m_labelText); + m_pb->setLabelText( + QObject::tr("Rendering frame %1 / %2", "RenderListener") + .arg(m_frame) + .arg(m_labelText)); m_pb->setValue(m_frame); } } @@ -428,9 +430,11 @@ public: RenderListener(TRenderer *renderer, const TFilePath &path, int steps, bool isPreview) : DVGui::ProgressDialog( - "Precomputing " + QString::number(steps) + " Frames" + - ((isPreview) ? "" : " of " + toQString(path)), - "Cancel", 0, steps, TApp::instance()->getMainWindow()) + QObject::tr("Precomputing %1 Frames", "RenderListener").arg(steps) + + ((isPreview) ? "" + : QObject::tr(" of %1", "RenderListener") + .arg(toQString(path))), + QObject::tr("Cancel"), 0, steps, TApp::instance()->getMainWindow()) , m_renderer(renderer) , m_frameCounter(0) , m_error(false) { @@ -443,7 +447,10 @@ public: #endif setWindowFlags(Qt::Dialog | Qt::WindowTitleHint | Qt::CustomizeWindowHint); m_progressBarString = - QString::number(steps) + ((isPreview) ? "" : " of " + toQString(path)); + QString::number(steps) + + ((isPreview) + ? "" + : QObject::tr(" of %1", "RenderListener").arg(toQString(path))); // setMinimumDuration (0); m_totalFrames = steps; show(); @@ -455,7 +462,8 @@ public: if (m_frameCounter + 1 < m_totalFrames) Message(this, ret ? -1 : ++m_frameCounter, m_progressBarString).send(); else - setLabelText(tr("Finalizing render, please wait.")); + setLabelText( + QObject::tr("Finalizing render, please wait.", "RenderListener")); return !ret; } bool onFrameFailed(int frame, TException &) override { @@ -471,7 +479,7 @@ public: void onCancel() override { m_isCanceled = true; - setLabelText("Aborting render..."); + setLabelText(QObject::tr("Aborting render...", "RenderListener")); reset(); hide(); RenderCommand::resetBgColor(); @@ -588,7 +596,8 @@ void RenderCommand::rasterRender(bool isPreview) { buildSceneProgressBar->setMaximum(m_numFrames - 1); buildSceneProgressBar->setValue(0); buildSceneProgressBar->move(600, 500); - buildSceneProgressBar->setWindowTitle("Building Schematic..."); + buildSceneProgressBar->setWindowTitle( + QObject::tr("Building Schematic...", "RenderCommand")); buildSceneProgressBar->show(); for (int i = 0; i < m_numFrames; ++i, m_r += m_stepd) { @@ -666,13 +675,18 @@ class MultimediaProgressBar final : public DVGui::ProgressDialog, if (m_pbValue == -1) m_pb->hide(); else { - QString modeStr(m_pb->m_renderer->getMultimediaMode() == - MultimediaRenderer::COLUMNS - ? "column " - : "layer "); - m_pb->setLabelText("Rendering " + modeStr + QString::number(m_column) + - ", frame " + QString::number(m_frame) + "/" + - m_labelText); + QString modeStr( + m_pb->m_renderer->getMultimediaMode() == MultimediaRenderer::COLUMNS + ? QObject::tr("column ", + "MultimediaProgressBar label (mode name)") + : QObject::tr("layer ", + "MultimediaProgressBar label (mode name)")); + m_pb->setLabelText(QObject::tr("Rendering %1%2, frame %3 / %4", + "MultimediaProgressBar label") + .arg(modeStr) + .arg(m_column) + .arg(m_frame) + .arg(m_labelText)); m_pb->setValue(m_pbValue); } } @@ -683,9 +697,10 @@ class MultimediaProgressBar final : public DVGui::ProgressDialog, public: MultimediaProgressBar(MultimediaRenderer *renderer) : ProgressDialog( - "Rendering " + QString::number(renderer->getFrameCount()) + - " frames " + " of " + toQString(renderer->getFilePath()), - "Cancel", 0, + QObject::tr("Rendering %1 frames of %2", "MultimediaProgressBar") + .arg(renderer->getFrameCount()) + .arg(toQString(renderer->getFilePath())), + QObject::tr("Cancel"), 0, renderer->getFrameCount() * renderer->getColumnsCount()) , m_renderer(renderer) , m_frameCounter(0) @@ -699,8 +714,11 @@ public: setWindowModality(Qt::ApplicationModal); #endif setWindowFlags(Qt::WindowTitleHint | Qt::CustomizeWindowHint); - m_progressBarString = QString::number(m_renderer->getFrameCount()) + - " of " + toQString(m_renderer->getFilePath()); + m_progressBarString = + QObject::tr("%1 of %2", + "MultimediaProgressBar - [totalframe] of [path]") + .arg(m_renderer->getFrameCount()) + .arg(toQString(m_renderer->getFilePath())); show(); } @@ -734,7 +752,7 @@ public: void onCancel() override { m_isCanceled = true; - setLabelText("Aborting render..."); + setLabelText(QObject::tr("Aborting render...", "MultimediaProgressBar")); TRenderer *trenderer(m_renderer->getTRenderer()); if (m_renderer) trenderer->stopRendering(true); reset(); @@ -879,9 +897,11 @@ void RenderCommand::doRender(bool isPreview) { } } if (!isWritable) { - std::string str = "It is not possible to write the output: the file"; - str += isMultiFrame ? "s are read only." : " is read only."; - DVGui::warning(QString::fromStdString(str)); + QString str = QObject::tr( + "It is not possible to write the output: the file", "RenderCommand"); + str += isMultiFrame ? QObject::tr("s are read only.", "RenderCommand") + : QObject::tr(" is read only.", "RenderCommand"); + DVGui::warning(str); return; } diff --git a/toonz/sources/toonzqt/dvdialog.cpp b/toonz/sources/toonzqt/dvdialog.cpp index 76ca66c..aab5a1b 100644 --- a/toonz/sources/toonzqt/dvdialog.cpp +++ b/toonz/sources/toonzqt/dvdialog.cpp @@ -33,7 +33,7 @@ using namespace DVGui; -QString DialogTitle = QObject::tr("OpenToonz 1.3"); +QString DialogTitle = "OpenToonz 1.3"; //============================================================================= namespace { @@ -1340,9 +1340,9 @@ QString DVGui::getText(const QString &title, const QString &labelText, LineEdit *nameFld = new LineEdit(text, &dialog); layout->addWidget(nameFld); - QPushButton *okBtn = new QPushButton(dialog.tr("OK"), &dialog); + QPushButton *okBtn = new QPushButton(QObject::tr("OK"), &dialog); okBtn->setDefault(true); - QPushButton *cancelBtn = new QPushButton(dialog.tr("Cancel"), &dialog); + QPushButton *cancelBtn = new QPushButton(QObject::tr("Cancel"), &dialog); QObject::connect(okBtn, SIGNAL(clicked()), &dialog, SLOT(accept())); QObject::connect(cancelBtn, SIGNAL(clicked()), &dialog, SLOT(reject())); diff --git a/toonz/sources/toonzqt/infoviewer.cpp b/toonz/sources/toonzqt/infoviewer.cpp index a51e96a..feff475 100644 --- a/toonz/sources/toonzqt/infoviewer.cpp +++ b/toonz/sources/toonzqt/infoviewer.cpp @@ -157,7 +157,7 @@ void InfoViewerImp::onSliderChanged() { namespace { void setLabelStyle(QLabel *l) { l->setObjectName("TitleTxtLabel"); } -} +} // namespace //---------------------------------------------------------------- @@ -171,10 +171,10 @@ void InfoViewerImp::create(int index, QString str) { InfoViewerImp::InfoViewerImp() : m_palette(0) - , m_framesLabel("Current Frame: ") + , m_framesLabel(QObject::tr("Current Frame: ")) , m_framesSlider() , m_history() - , m_historyLabel("File History") { + , m_historyLabel(QObject::tr("File History")) { setLabelStyle(&m_framesLabel); TLevelReader::getSupportedFormats(m_formats); @@ -370,7 +370,7 @@ void InfoViewerImp::setImageInfo() { m_separator1.hide(); const TContentHistory *ch = 0; - if (lr) ch = lr->getContentHistory(); + if (lr) ch = lr->getContentHistory(); if (ch) { QString str = ch->serialize(); diff --git a/toonz/sources/toonzqt/studiopaletteviewer.cpp b/toonz/sources/toonzqt/studiopaletteviewer.cpp index 25f1419..b5f5095 100644 --- a/toonz/sources/toonzqt/studiopaletteviewer.cpp +++ b/toonz/sources/toonzqt/studiopaletteviewer.cpp @@ -5,7 +5,6 @@ // TnzQt includes #include "toonzqt/menubarcommand.h" #include "toonzqt/paletteviewer.h" -#include "toonzqt/dvdialog.h" #include "toonzqt/trepetitionguard.h" #include "toonzqt/gutil.h" #include "toonzqt/icongenerator.h" @@ -51,7 +50,7 @@ using namespace DVGui; namespace { //----------------------------------------------------------------------------- /*! Return true if path is in folder \b rootPath of \b StudioPalette. -*/ + */ bool isInStudioPaletteFolder(TFilePath path, TFilePath rootPath) { if (path.getType() != "tpl") return false; StudioPalette *studioPalette = StudioPalette::instance(); @@ -69,7 +68,7 @@ bool isInStudioPaletteFolder(TFilePath path, TFilePath rootPath) { //----------------------------------------------------------------------------- /*! Return true if path is in a \b StudioPalette folder. -*/ + */ bool isInStudioPalette(TFilePath path) { if (path.getType() != "tpl") return false; StudioPalette *studioPalette = StudioPalette::instance(); @@ -133,7 +132,7 @@ StudioPaletteTreeViewer::StudioPaletteTreeViewer( bool ret = connect(this, SIGNAL(itemChanged(QTreeWidgetItem *, int)), SLOT(onItemChanged(QTreeWidgetItem *, int))); - ret = ret && connect(this, SIGNAL(itemClicked(QTreeWidgetItem *, int)), + ret = ret && connect(this, SIGNAL(itemClicked(QTreeWidgetItem *, int)), SLOT(onItemClicked(QTreeWidgetItem *, int))); ret = ret && @@ -330,7 +329,7 @@ void StudioPaletteTreeViewer::refresh() { //----------------------------------------------------------------------------- /*!When expand a tree, prepare the child items of it -*/ + */ void StudioPaletteTreeViewer::onTreeItemExpanded(QTreeWidgetItem *item) { if (!item) return; @@ -343,14 +342,14 @@ void StudioPaletteTreeViewer::onTreeItemExpanded(QTreeWidgetItem *item) { //----------------------------------------------------------------------------- /*! Refresh tree only when this widget has focus -*/ + */ void StudioPaletteTreeViewer::onRefreshTreeShortcutTriggered() { if (hasFocus()) refresh(); } //----------------------------------------------------------------------------- /*! Update the content of item -*/ + */ void StudioPaletteTreeViewer::refreshItem(QTreeWidgetItem *item) { struct Locals { @@ -473,7 +472,7 @@ void StudioPaletteTreeViewer::onItemChanged(QTreeWidgetItem *item, int column) { //----------------------------------------------------------------------------- /*! Called when the current palette is switched -*/ + */ void StudioPaletteTreeViewer::onCurrentItemChanged(QTreeWidgetItem *current, QTreeWidgetItem *previous) { TFilePath oldPath = getItemPath(previous); @@ -485,13 +484,13 @@ void StudioPaletteTreeViewer::onCurrentItemChanged(QTreeWidgetItem *current, m_currentPalette->getGlobalName()); if (oldPath == newPath) return; wstring gname = m_currentPalette->getGlobalName(); - QString question; - question = "The current palette " + - QString::fromStdWString(oldPath.getWideString()) + - " \nin the studio palette has been modified. Do you want to " - "save your changes?"; - int ret = DVGui::MsgBox(question, QObject::tr("Save"), - QObject::tr("Discard"), QObject::tr("Cancel"), 0); + QString question = + tr("The current palette %1\nin the studio palette has been modified. " + "Do you want to " + "save your changes?") + .arg(QString::fromStdWString(oldPath.getWideString())); + int ret = + DVGui::MsgBox(question, tr("Save"), tr("Discard"), tr("Cancel"), 0); if (ret == 3) { setCurrentItem(getItem(oldPath)); return; @@ -556,7 +555,7 @@ void StudioPaletteTreeViewer::addNewFolder() { //----------------------------------------------------------------------------- /*! Convert level palette to studio palette. -*/ + */ void StudioPaletteTreeViewer::convertToStudioPalette() { TFilePath path = getItemPath(currentItem()); StudioPalette *studioPalette = StudioPalette::instance(); @@ -573,11 +572,10 @@ void StudioPaletteTreeViewer::convertToStudioPalette() { return; } - QString question; - question = QString::fromStdWString( - L"Convert " + path.getWideString() + - L" to Studio Palette and Overwrite. \nAre you sure ?"); - int ret = DVGui::MsgBox(question, QObject::tr("Yes"), QObject::tr("No")); + QString question = + tr("Convert %1 to Studio Palette and Overwrite. \nAre you sure ?") + .arg(QString::fromStdWString(path.getWideString())); + int ret = DVGui::MsgBox(question, tr("Convert"), tr("Cancel")); if (ret == 0 || ret == 2) return; // apply global name @@ -604,7 +602,7 @@ void StudioPaletteTreeViewer::deleteItem(QTreeWidgetItem *item) { if (item->childCount() > 0) { QString question; question = tr("This folder is not empty. Delete anyway?"); - int ret = DVGui::MsgBox(question, QObject::tr("Yes"), QObject::tr("No")); + int ret = DVGui::MsgBox(question, tr("Delete"), tr("Cancel")); if (ret == 0 || ret == 2) return; } @@ -685,35 +683,28 @@ public: //----------------------------------------------------------------------------- -class AdjustPaletteDialog final : public DVGui::Dialog { -private: - IntField *m_tolerance; +AdjustPaletteDialog::AdjustPaletteDialog() + : Dialog(0, true, true, "Adjust Current Level to This Palette") { + setWindowTitle(tr("Adjust Current Level to This Palette")); + + beginVLayout(); + m_tolerance = new IntField(this); + m_tolerance->setRange(0, 255); + m_tolerance->setValue(0); + addWidget(tr("Tolerance"), m_tolerance); + endVLayout(); + + QPushButton *okBtn = new QPushButton(tr("Apply"), this); + okBtn->setDefault(true); + QPushButton *cancelBtn = new QPushButton(tr("Cancel"), this); + bool ret = connect(okBtn, SIGNAL(clicked()), this, SLOT(accept())); + ret = ret && connect(cancelBtn, SIGNAL(clicked()), this, SLOT(reject())); + assert(ret); -public: - int getTolerance() { return m_tolerance->getValue(); } - - AdjustPaletteDialog() - : Dialog(0, true, true, "Adjust Current Level to This Palette") { - setWindowTitle(tr("Adjust Current Level to This Palette")); - - beginVLayout(); - m_tolerance = new IntField(this); - m_tolerance->setRange(0, 255); - m_tolerance->setValue(0); - addWidget(tr("Tolerance"), m_tolerance); - endVLayout(); - - QPushButton *okBtn = new QPushButton(tr("Apply"), this); - okBtn->setDefault(true); - QPushButton *cancelBtn = new QPushButton(tr("Cancel"), this); - bool ret = connect(okBtn, SIGNAL(clicked()), this, SLOT(accept())); - ret = ret && connect(cancelBtn, SIGNAL(clicked()), this, SLOT(reject())); - assert(ret); - - addButtonBarWidget(okBtn, cancelBtn); - } -}; + addButtonBarWidget(okBtn, cancelBtn); +} +int AdjustPaletteDialog::getTolerance() { return m_tolerance->getValue(); } //------------------------------------------------------------------------------------------------- void StudioPaletteTreeViewer::loadInCurrentPaletteAndAdaptLevel() { @@ -810,21 +801,20 @@ void StudioPaletteTreeViewer::replaceCurrentPalette() { QString label; if (count != 1) // replacing to multiple palettes - label = QString::fromStdWString( - L"Replacing all selected palettes with the palette \"" + - current->getPaletteName() + L"\". \nAre you sure ?"); + label = tr("Replacing all selected palettes with the palette \"%1\". \nAre " + "you sure ?") + .arg(QString::fromStdWString(current->getPaletteName())); else { TPalette *dstPalette = StudioPalette::instance()->getPalette(getItemPath(items[0])); if (!dstPalette) return; - label = QString::fromStdWString( - L"Replacing the palette \"" + dstPalette->getPaletteName() + - L"\" with the palette \"" + current->getPaletteName() + - L"\". \nAre you sure ?"); + label = tr("Replacing the palette \"%1\" with the palette \"%2\". \nAre " + "you sure ?") + .arg(QString::fromStdWString(dstPalette->getPaletteName())) + .arg(QString::fromStdWString(current->getPaletteName())); } - int ret = - DVGui::MsgBox(label, QObject::tr("Replace"), QObject::tr("Cancel"), 1); + int ret = DVGui::MsgBox(label, tr("Replace"), tr("Cancel"), 1); if (ret == 0 || ret == 2) return; TUndoManager::manager()->beginBlock(); @@ -940,8 +930,8 @@ void StudioPaletteTreeViewer::contextMenuEvent(QContextMenuEvent *event) { QTreeWidgetItem *item = items[i]; QRect rect = visualItemRect(item); if (QRect(0, rect.y(), width(), rect.height()).contains(event->pos())) - isClickInSelection = true; - TFilePath path = getItemPath(item); + isClickInSelection = true; + TFilePath path = getItemPath(item); if (studioPalette->isFolder(path)) areAllPalette = false; } if (!isClickInSelection) return; @@ -1122,7 +1112,7 @@ void StudioPaletteTreeViewer::dropEvent(QDropEvent *event) { pltName = tr("the palette \"%1\"") .arg(QString::fromStdWString(palettePaths[0].getWideName())); else - pltName = tr("the selected palettes"); + pltName = tr("the selected palettes"); QString dstName = QString::fromStdWString(newPath.getWideName()); QString question = @@ -1210,7 +1200,7 @@ StudioPaletteViewer::~StudioPaletteViewer() {} //----------------------------------------------------------------------------- /*! In order to save current palette from the tool button in the PageViewer. -*/ + */ TFilePath StudioPaletteViewer::getCurrentItemPath() { return m_studioPaletteTreeViewer->getCurrentItemPath(); } diff --git a/toonz/sources/toonzqt/styleeditor.cpp b/toonz/sources/toonzqt/styleeditor.cpp index 2791965..c1cd865 100644 --- a/toonz/sources/toonzqt/styleeditor.cpp +++ b/toonz/sources/toonzqt/styleeditor.cpp @@ -2001,7 +2001,9 @@ bool VectorBrushStyleChooserPage::event(QEvent *e) { QToolTip::showText(he->globalPos(), QString::fromStdString(pattern.m_patternName)); } else - QToolTip::showText(he->globalPos(), tr("Plain color")); + QToolTip::showText( + he->globalPos(), + QObject::tr("Plain color", "VectorBrushStyleChooserPage")); return true; } @@ -2175,8 +2177,11 @@ bool TextureStyleChooserPage::event(QEvent *e) { int index = posToIndex(pos); if (index >= 0 && index < (int)m_textures.size()) { toolTip = m_textures[index].m_name; - QToolTip::showText(helpEvent->globalPos(), - toolTip != QString() ? toolTip : "Custom Texture"); + QToolTip::showText( + helpEvent->globalPos(), + toolTip != QString() + ? toolTip + : QObject::tr("Custom Texture", "TextureStyleChooserPage")); } e->accept(); } @@ -2242,7 +2247,7 @@ public: QPoint pos = helpEvent->pos(); int index = posToIndex(pos); if (index == 0) { - toolTip = tr("Plain color"); + toolTip = QObject::tr("Plain color", "MyPaintBrushStyleChooserPage"); } else if (index > 0 && index <= (int)m_brushes.size()) { toolTip = m_brushes[index - 1].getPath().getQString(); } @@ -2391,7 +2396,7 @@ bool SpecialStyleChooserPage::event(QEvent *e) { QPoint pos = helpEvent->pos(); int index = posToIndex(pos); if (index == 0) - toolTip = tr("Plain color"); + toolTip = QObject::tr("Plain color", "SpecialStyleChooserPage"); else { int j = index - 1; if (0 <= j && j < (int)m_customStyles.size()) { diff --git a/toonz/sources/translations/chinese/tnztools.ts b/toonz/sources/translations/chinese/tnztools.ts index ee3e4ce..542ac10 100644 --- a/toonz/sources/translations/chinese/tnztools.ts +++ b/toonz/sources/translations/chinese/tnztools.ts @@ -642,6 +642,20 @@ + FullColorFillTool + + Fill Depth + 填充深度 + + + + HandToolOptionsBox + + Reset Position + + + + HookTool Snap @@ -1264,6 +1278,13 @@ Do you want to proceed? + RotateToolOptionsBox + + Reset Rotation + + + + RulerToolOptionsBox X: @@ -1662,4 +1683,11 @@ moved to the end of the first page of the palette. 矩形 + + ZoomToolOptionsBox + + Reset Zoom + + + diff --git a/toonz/sources/translations/chinese/toonz.ts b/toonz/sources/translations/chinese/toonz.ts index 9dffda3..c787ebb 100644 --- a/toonz/sources/translations/chinese/toonz.ts +++ b/toonz/sources/translations/chinese/toonz.ts @@ -110,11 +110,11 @@ ApplyMatchlinesCommand It is not possible to apply the match lines because no column was selected. - 无法应用适配线,因为没有列被选中。 + 无法应用适配线,因为没有列被选中。 It is not possible to apply the match lines because two columns have to be selected. - 无法应用适配线,因为有两列同时被选中。 + 无法应用适配线,因为有两列同时被选中。 @@ -1061,11 +1061,11 @@ What do you want to do? CloneLevelUndo::LevelNamePopup Clone Level - 克隆层级 + 克隆层级 Level Name: - 层级名称: + 层级名称: @@ -1242,6 +1242,10 @@ What do you want to do? (Flipped) (已翻转) + + :: Project: + + CommandBar @@ -1883,11 +1887,11 @@ contain the dpi information, then the current camera dpi will be used. ExportCurvePopup Export Curve - 导出曲线 + 导出曲线 Export - 导出 + 导出 @@ -2285,26 +2289,26 @@ contain the dpi information, then the current camera dpi will be used. FileData It is not possible to find the %1 level. - 找不到层级 %1。 + 找不到层级 %1。 There was an error copying %1 - 拷贝 %1 时发生了错误 + 拷贝 %1 时发生了错误 FileSelection Abort - 中断 + 中断 Collecting assets... - 正在收集素材... + 正在收集素材... Importing scenes... - 正在导入场景... + 正在导入场景... @@ -3209,6 +3213,10 @@ Please use the frame numbers for reference. Invalid data file. 无效的数据文件。 + + Drawing: + + LoadBoardPresetFilePopup @@ -3240,11 +3248,11 @@ Please use the frame numbers for reference. LoadCurvePopup Load Curve - 加载曲线 + 加载曲线 Load - 加载 + 加载 @@ -3394,15 +3402,15 @@ Please use the frame numbers for reference. LoadSettingsPopup Load Cleanup Settings - 加载清稿设置 + 加载清稿设置 Load - 加载 + 加载 %1 does not exist. - %1 不存在。 + %1 不存在。 @@ -3756,7 +3764,7 @@ Please use the frame numbers for reference. &Send Back - 置于底层(&S) + 置于底层(&S) &Send Backward @@ -5442,6 +5450,30 @@ Please use the frame numbers for reference. Flip Viewer Horizontally 水平翻转查看器 + + &Send to Back + + + + Reset Zoom + + + + Reset Rotation + + + + Reset Position + + + + Brush Tool - Eraser (Raster option) + + + + Brush Tool - Lock Alpha + + MatchlinesDialog @@ -5575,15 +5607,15 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m MergeCmappedCommand It is not possible to merge tlv columns because no column was selected. - 无法合并 TLV 列,因为未选择任何列。 + 无法合并 TLV 列,因为未选择任何列。 It is not possible to merge tlv columns because at least two columns have to be selected. - 无法合并 TLV 列,因为最少要选定两个列。 + 无法合并 TLV 列,因为最少要选定两个列。 Merging Tlv Levels... - 正在合并 TLV 层级... + 正在合并 TLV 层级... @@ -5612,16 +5644,20 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m Merge Tlv Levels 合并 TLV 层级 + + Level %1 already exists! Are you sure you want to overwrite it? + + MergeColumnsCommand It is not possible to execute the merge column command because no column was selected. - 无法执行合并列的命令,因为未选定任何列。 + 无法执行合并列的命令,因为未选定任何列。 It is not possible to execute the merge column command because only one columns is selected. - 无法执行合并列的命令,因为只选择了一个列。 + 无法执行合并列的命令,因为只选择了一个列。 @@ -5705,10 +5741,17 @@ What do you want to do? + MyVideoWidget + + Camera is not available + 摄影机不可用 + + + MyViewFinder Camera is not available - 摄影机不可用 + 摄影机不可用 @@ -6108,16 +6151,16 @@ What do you want to do? Overwrite - 覆盖 + 覆盖 Skip - 跳过 + 跳过 File "%1" already exists. Do you want to overwrite it? - 文件“%1”已经存在。 + 文件“%1”已经存在。 要覆盖它吗? @@ -6451,6 +6494,10 @@ WARNING : Image size mismatch. The saved image size is %1 x %2. in the scene with the name %2. 警告: 层级路径冲突。在名为 %2 的场景中,已经有个层级位于路径 %1 上。 + + Subcamera + + PencilTestSaveInFolderPopup @@ -7675,13 +7722,13 @@ in non alpha-enabled image format. Previewer The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | - 文件名不能为空也不能包含如下的任一字符: + 文件名不能为空也不能包含如下的任一字符: \ / : * ? " | File %1 already exists. Do you want to overwrite it? - 文件 %1 已经存在。 + 文件 %1 已经存在。 要覆盖它吗? @@ -7845,6 +7892,38 @@ Do you want to overwrite it? Level Name: 层级名: + + Single Image + + + + Frames + + + + Columns + + + + Flatten visible document layers into a single image. Layer styles are maintained. + + + + Load document layers as frames into a single xsheet column. + + + + Load document layers as xhseet columns. + + + + OK + 确定 + + + Cancel + 取消 + QApplication @@ -8783,11 +8862,11 @@ Do you want to overwrite it? Level - 层级 + 层级 already exists! Are you sure you want to overwrite it? - 已经存在!您确定要覆盖它吗? + 已经存在!您确定要覆盖它吗? It is not possible to merge tlv columns containing more than one level @@ -9610,6 +9689,240 @@ to use the duplicate command in the xsheet / timeline. Clear All Relative Onion Skin Markers 清理全部相关的洋葱皮标记器 + + Always Overwrite in This Scene + + + + + %1 more level(s) + + + + + Fx Settings + 特效设置 + + + Save Curve + 保存曲线 + + + Load Curve + 加载曲线 + + + Export Curve + 导出曲线 + + + Rendering frame %1 / %2 + RenderListener + + + + Precomputing %1 Frames + RenderListener + + + + of %1 + RenderListener + + + + Finalizing render, please wait. + RenderListener + 完成渲染最后阶段,请稍等。 + + + Aborting render... + RenderListener + + + + Building Schematic... + RenderCommand + + + + column + MultimediaProgressBar label (mode name) + + + + layer + MultimediaProgressBar label (mode name) + + + + Rendering %1%2, frame %3 / %4 + MultimediaProgressBar label + + + + Rendering %1 frames of %2 + MultimediaProgressBar + + + + %1 of %2 + MultimediaProgressBar - [totalframe] of [path] + + + + Aborting render... + MultimediaProgressBar + + + + It is not possible to write the output: the file + RenderCommand + + + + s are read only. + RenderCommand + + + + is read only. + RenderCommand + + + + Save Cleanup Settings + 保存清稿设置 + + + Load Cleanup Settings + 加载清稿设置 + + + It is not possible to find the %1 level. + FileData + 找不到层级 %1。 + + + There was an error copying %1 + FileData + 拷贝 %1 时发生了错误 + + + Clone Level + CloneLevelUndo::LevelNamePopup + 克隆层级 + + + Level Name: + CloneLevelUndo::LevelNamePopup + + + + Collecting assets... + 正在收集素材... + + + Abort + 中断 + + + Importing scenes... + 正在导入场景... + + + It is not possible to execute the merge column command because no column was selected. + 无法执行合并列的命令,因为未选定任何列。 + + + It is not possible to execute the merge column command because only one columns is selected. + + + + It is not possible to apply the match lines because no column was selected. + 无法应用适配线,因为没有列被选中。 + + + It is not possible to apply the match lines because two columns have to be selected. + 无法应用适配线,因为有两列同时被选中。 + + + It is not possible to merge tlv columns because no column was selected. + 无法合并 TLV 列,因为未选择任何列。 + + + It is not possible to merge tlv columns because at least two columns have to be selected. + 无法合并 TLV 列,因为最少要选定两个列。 + + + Merging Tlv Levels... + 正在合并 TLV 层级... + + + Save Previewed Images + 保存预览过的图像 + + + The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | + + + + Unsopporter raster format, cannot save + + + + Cannot create %1 : %2 + Previewer warning %1:path %2:message + + + + Cannot create %1 + Previewer warning %1:path + + + + Saved %1 frames out of %2 in %3 + Previewer %1:savedframes %2:framecount %3:filepath + 保存了 %2 中的 %1 帧到 %3 里 + + + Canceled! + Previewer + + + + No frame to save! + + + + Already saving! + + + + Warning! + OverwriteDialog + 警告! + + + Overwrite + OverwriteDialog + 覆盖 + + + Skip + OverwriteDialog + 跳过 + + + File "%1" already exists. +Do you want to overwrite it? + OverwriteDialog + 文件“%1”已经存在。 +要覆盖它吗? + + + %1 does not exist. + %1 不存在。 + ReframePopup @@ -9717,7 +10030,7 @@ The audio file will not be included in the rendered clip. RenderListener Finalizing render, please wait. - 完成渲染最后阶段,请稍等。 + 完成渲染最后阶段,请稍等。 @@ -10612,11 +10925,11 @@ Please commit or revert changes first. SaveCurvePopup Save Curve - 保存曲线 + 保存曲线 Save - 保存 + 保存 @@ -10691,11 +11004,11 @@ Please commit or revert changes first. SavePreviewedPopup Save Previewed Images - 保存预览过的图像 + 保存预览过的图像 Save - 保存 + 保存 @@ -10713,11 +11026,11 @@ Please commit or revert changes first. SaveSettingsPopup Save Cleanup Settings - 保存清稿设置 + 保存清稿设置 Save - 保存 + 保存 @@ -10950,6 +11263,14 @@ Please commit or revert changes first. Select %1 选择 %1 + + Flip View + + + + Reset View + 重置视图 + SceneViewerPanel @@ -11013,6 +11334,10 @@ Please commit or revert changes first. (Flipped) (已翻转) + + :: Project: + + SeparateColorsPopup @@ -11514,7 +11839,7 @@ Assign to '%3'? Choose Project - 选择项目 + 选择项目 Create a New Scene @@ -11522,7 +11847,7 @@ Assign to '%3'? Open Scene - 打开场景 + 打开场景 Scene Name: @@ -11680,6 +12005,18 @@ Possibly the preset file has been corrupted Minutes 分钟 + + Current Project + + + + Recent Scenes [Project] + + + + The selected scene project '%1' is not in the Current Project list and may not open automatically. + + StudioPaletteTreeViewer @@ -12845,5 +13182,13 @@ Hold F3 Key on the Viewer to Show This Frame Only Zoom in/out of timeline 放大/缩小时间轴 + + :: Project: + + + + Frame + + diff --git a/toonz/sources/translations/chinese/toonzqt.ts b/toonz/sources/translations/chinese/toonzqt.ts index 5266c5d..c718f14 100644 --- a/toonz/sources/translations/chinese/toonzqt.ts +++ b/toonz/sources/translations/chinese/toonzqt.ts @@ -295,11 +295,11 @@ Possibly the preset file has been corrupted DVGui OK - 确定 + 确定 Cancel - 取消 + 取消 @@ -1025,6 +1025,30 @@ Possibly the preset file has been corrupted Step 4 第 4 步 + + Activate Cycle + 启用循环 + + + Deactivate Cycle + 禁用循环 + + + Show Inbetween Values + + + + Hide Inbetween Values + + + + Change Interpolation + + + + Change Step + + FunctionToolbar @@ -1389,7 +1413,7 @@ Select FX nodes and related links before copying or cutting the selection you wa MyPaintBrushStyleChooserPage Plain color - 纯色 + 纯色 @@ -1640,6 +1664,17 @@ Select FX nodes and related links before copying or cutting the selection you wa + PlaneViewer + + Reset View + + + + Fit To Window + + + + PointParamField Y: @@ -1719,19 +1754,19 @@ Select FX nodes and related links before copying or cutting the selection you wa Save - 保存 + 保存 Discard - 放弃更改 + 放弃更改 Yes - + No - + Stage Schematic @@ -2053,7 +2088,7 @@ Are you sure? Replace - 替换 + 替换 Modify Fx Param : %1 @@ -2194,7 +2229,43 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< OpenToonz 1.2 - OpenToonz 1.2 + OpenToonz 1.2 + + + Custom Texture + TextureStyleChooserPage + + + + Current Frame: + + + + File History + + + + OpenToonz 1.3 + OpenToonz 1.3 + + + Plain color + VectorBrushStyleChooserPage + 纯色 + + + Plain color + MyPaintBrushStyleChooserPage + 纯色 + + + Plain color + SpecialStyleChooserPage + 纯色 + + + OK + 确定 @@ -2303,7 +2374,7 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< SpecialStyleChooserPage Plain color - 纯色 + 纯色 @@ -2437,6 +2508,50 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< Cancel 取消 + + The current palette %1 +in the studio palette has been modified. Do you want to save your changes? + + + + Save + 保存 + + + Discard + 放弃更改 + + + Convert %1 to Studio Palette and Overwrite. +Are you sure ? + + + + Yes + + + + No + + + + Replacing all selected palettes with the palette "%1". +Are you sure ? + + + + Replacing the palette "%1" with the palette "%2". +Are you sure ? + + + + Replace + 替换 + + + Convert + + StudioPaletteViewer @@ -2701,6 +2816,17 @@ Apply + SwatchViewer + + Reset View + + + + Fit To Window + + + + TMessageViewer Errors @@ -2749,7 +2875,7 @@ Apply VectorBrushStyleChooserPage Plain color - 纯色 + 纯色 diff --git a/toonz/sources/translations/czech/tnzcore.ts b/toonz/sources/translations/czech/tnzcore.ts index b6e0439..f4d42db 100644 --- a/toonz/sources/translations/czech/tnzcore.ts +++ b/toonz/sources/translations/czech/tnzcore.ts @@ -35,7 +35,7 @@ QObject - + colors barvy diff --git a/toonz/sources/translations/czech/tnztools.ts b/toonz/sources/translations/czech/tnztools.ts index f9cb7f8..b624c9a 100644 --- a/toonz/sources/translations/czech/tnztools.ts +++ b/toonz/sources/translations/czech/tnztools.ts @@ -4,101 +4,101 @@ ArrowToolOptionsBox - + Z: Z: - + Position: Poloha: - - + + E/W: V/Z: - - + + N/S: S/J: - + SO: SO: - + Rotation: Otočení: - + Global: Celkové: - - + + H: V: - - + + V: S: - + Pick: Vybrat předmět: - + Position Poloha - + ( ( - + ) ) - + Rotation Otočení - + Scale Měřítko - + Maintain: Zachovat: - + Shear Stříhat - + Center Position Střední poloha - + Table Tabulka @@ -240,17 +240,17 @@ BrushToolOptionsBox - + Preset Name - + OK OK - + Cancel Zrušit @@ -279,7 +279,7 @@ DVGui::StyleIndexLineEdit - + current Nynější @@ -631,44 +631,44 @@ FullColorBrushTool - - + + Size Velikost - + Pressure Tlak - - + + Opacity Neprůhlednost - + Hardness: Tvrdost: - + Preset: Přednastavení: - + Eraser Guma - + Lock Alpha Zamknout alfu - + <custom> <vlastní> @@ -727,6 +727,22 @@ + FullColorFillTool + + + Fill Depth + Hloubka výplně + + + + HandToolOptionsBox + + + Reset Position + + + + HookTool @@ -796,27 +812,27 @@ PlasticTool - + Swap Edge Vyměnit okraj - + Collapse Edge Sbalit okraj - + Split Edge Rozdělit okraj - + Cut Mesh Vyjmout síť - + Delete Vertex Smazat vrchol @@ -1190,14 +1206,14 @@ Chcete pokračovat? Vložit - - + + Min: Nejméně: - - + + Max: Nejvíce: @@ -1405,7 +1421,7 @@ Chcete pokračovat? RGBPickerToolOptionsBox - + Pick Screen Zvolit obrazovku @@ -1490,39 +1506,47 @@ Chcete pokračovat? + RotateToolOptionsBox + + + Reset Rotation + + + + RulerToolOptionsBox - + X: ruler tool option X: - + Y: ruler tool option Y: - + W: ruler tool option Š: - + H: ruler tool option V: - + A: ruler tool option A: - + L: ruler tool option D: @@ -1554,48 +1578,48 @@ Chcete pokračovat? SelectionToolOptionsBox - + H: V: - + V: S: - + Link Stanovit poměr stran - - + + Rotation Otočení - + E/W: X: - + N/S: Y: - + Scale Měřítko - + Position Poloha - + Thickness Tloušťka @@ -1603,22 +1627,22 @@ Chcete pokračovat? ShiftTraceToolOptionBox - + Reset Previous Nastavit znovu předchozí - + Reset Following Nastavit znovu následující - + Previous Drawing Předchozí kresba - + Following Drawing Následující kresba @@ -1664,47 +1688,47 @@ Chcete pokračovat? StylePickerTool - + No current level. Žádná nynější úroveň. - + Current level has no available palette. Nynější úroveň nemá žádnou dostupnou paletu. - + Palette must have more than one palette to be organized. Paleta musí mít více než jednu paletu, aby byla uspořádána. - + Mode: Režim: - + Lines Čáry - + Areas Plochy - + Lines & Areas Čáry a plochy - + Passive Pick Pasivní volba - + Organize Palette Uspořádat paletu @@ -1712,7 +1736,7 @@ Chcete pokračovat? StylePickerToolOptionsBox - + With this option being activated, the picked style will be moved to the end of the first page of the palette. Se zapnutím této volby bude zvolený styl @@ -1981,4 +2005,12 @@ přesunut na konec první strany palety. Obdélníkový + + ZoomToolOptionsBox + + + Reset Zoom + + + diff --git a/toonz/sources/translations/czech/toonz.ts b/toonz/sources/translations/czech/toonz.ts index 476542f..bdc69b9 100644 --- a/toonz/sources/translations/czech/toonz.ts +++ b/toonz/sources/translations/czech/toonz.ts @@ -109,11 +109,11 @@ ApplyMatchlinesCommand It is not possible to apply the match lines because no column was selected. - Není možné použít dělicí čáry, protože nebyl vybrán žádný sloupec. + Není možné použít dělicí čáry, protože nebyl vybrán žádný sloupec. It is not possible to apply the match lines because two columns have to be selected. - Je možné použít dělicí čáry, protože musí být vybrány dva sloupce. + Je možné použít dělicí čáry, protože musí být vybrány dva sloupce. @@ -801,11 +801,11 @@ Bitte löschen Sie die vorhandene Ebene und erstellen eine Neue wenn Sie den Sä Cleanup all selected drawings overwriting those previously cleaned up. - Vyčistit všechny vybrané kresby a ty vyčištěné předtím přepsat. + Vyčistit všechny vybrané kresby a ty vyčištěné předtím přepsat. Cleanup only non-cleaned up drawings and keep those previously cleaned up. - Vyčistit jen nevyčištěné kresby a ty vyčištěné předtím zachovat. + Vyčistit jen nevyčištěné kresby a ty vyčištěné předtím zachovat. Delete existing level and create a new level with selected drawings only. @@ -1050,22 +1050,22 @@ Co chcete dělat? CloneLevelUndo:: LevelNamePopup Clone Level - Zdvojit úroveň + Zdvojit úroveň Level Name: - Název úrovně: + Název úrovně: CloneLevelUndo::LevelNamePopup Clone Level - Zdvojit úroveň + Zdvojit úroveň Level Name: - Název úrovně: + Název úrovně: @@ -1242,6 +1242,10 @@ Co chcete dělat? (Flipped) (převráceno) + + :: Project: + + CommandBar @@ -1397,7 +1401,7 @@ Co chcete dělat? Palette: -      Paleta: +      Paleta: Tolerance: @@ -1405,7 +1409,7 @@ Co chcete dělat? End: - Konec: + Konec: File to convert: @@ -1413,7 +1417,7 @@ Co chcete dělat? Output Name: - Název výstupu: + Název výstupu: Same as Painted @@ -1501,7 +1505,7 @@ Co chcete dělat? StrOke Mode: - Převést z PLI na SVG: + Převést z PLI na SVG: Centerline @@ -1629,7 +1633,7 @@ contain the dpi information, then the current camera dpi will be used. Ok - OK + OK OK @@ -1652,11 +1656,11 @@ contain the dpi information, then the current camera dpi will be used. Style Index: - Číslo stylu: + Číslo stylu: Apply to Frames: - Použít na oblast snímků: + Použít na oblast snímků: Style Index: @@ -1683,7 +1687,7 @@ contain the dpi information, then the current camera dpi will be used. Cancel - Zrušit + Zrušit Close @@ -1770,7 +1774,7 @@ contain the dpi information, then the current camera dpi will be used. Thumbnails View - Zobrazení náhledů + Zobrazení náhledů List View @@ -1824,50 +1828,50 @@ contain the dpi information, then the current camera dpi will be used. DvTopBar File - Soubor + Soubor Edit - Upravit + Upravit Scan && Cleanup - Skenovat a vyčistit + Skenovat a vyčistit Level - Úroveň + Úroveň Xsheet - Xsheet + Xsheet Cells - Buňky + Buňky View - Pohled + Pohled Windows - Okna + Okna Scan - Skenovat + Skenovat ExportCurvePopup Export Curve - Vyvést křivku + Vyvést křivku Export - Vyvést + Vyvést @@ -1909,67 +1913,67 @@ contain the dpi information, then the current camera dpi will be used. ExportLevelPopup:: ExportOptions Background Color: - Barva pozadí: + Barva pozadí: No Antialias - Žádné vyhlazování + Žádné vyhlazování Vectors Export Box - Nastavení vyvedení vektoru + Nastavení vyvedení vektoru Width: - Šířka: + Šířka: Height: - Výška: + Výška: H Resolution: - Vodorovné rozlišení: + Vodorovné rozlišení: V Resolution: - Svislé rozlišení: + Svislé rozlišení: DPI: - DPI: + DPI: Vectors Thickness - Tloušťka vektorů + Tloušťka vektorů Mode: - Režim: + Režim: Scale Thickness - Změnit tloušťku čáry + Změnit tloušťku čáry Add Thickness - Přidat tloušťku čáry + Přidat tloušťku čáry Constant Thickness - Stálá tloušťka + Stálá tloušťka Start: - Začátek: + Začátek: End: - Konec: + Konec: Scale: - Změnit velikost: + Změnit velikost: @@ -2299,7 +2303,7 @@ contain the dpi information, then the current camera dpi will be used. Ok - OK + OK Cancel @@ -2311,11 +2315,11 @@ contain the dpi information, then the current camera dpi will be used. From: - Od: + Od: To: - Do: + Do: Apply @@ -2334,26 +2338,26 @@ contain the dpi information, then the current camera dpi will be used. FileData It is not possible to find the %1 level. - Úroveň %1 nelze najít. + Úroveň %1 nelze najít. There was an error copying %1 - Při kopírování %1 se vyskytla chyba + Při kopírování %1 se vyskytla chyba FileSelection Abort - Zrušit + Zrušit Collecting assets... - Sbírá se materiál... + Sbírá se materiál... Importing scenes... - Zavádí se záběry... + Zavádí se záběry... @@ -2431,44 +2435,44 @@ Hold F3 Key on the Viewer to Show This Frame Only FlipBoOk FlipboOk - FlipboOk + FlipboOk Rendered Frames :: From %1 To %2 :: Step %3 - Zpracované snímky :: Od %1 do %2 :: Krok %3 + Zpracované snímky :: Od %1 do %2 :: Krok %3 :: Shrink - :: Zmenšit + :: Zmenšit It is not possible to save FlipboOk content. - Obsah FlipboOk nelze uložit. + Obsah FlipboOk nelze uložit. Saved %1 frames out of %2 in %3 - %1 snímků z %2 bylo uloženo v %3 + %1 snímků z %2 bylo uloženo v %3 The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | - Název souboru nesmí být prázdný nebo obsahovat následující znaky: (nový řádek) \ / : * ? " | + Název souboru nesmí být prázdný nebo obsahovat následující znaky: (nový řádek) \ / : * ? " | It is not possible to save because the selected file format is not supported. - Nelze uložit, protože vybraný formát souboru není podporován. + Nelze uložit, protože vybraný formát souboru není podporován. There are no rendered images to save. - Nejsou žádné zpracované obrázky k uložení. + Nejsou žádné zpracované obrázky k uložení. It is not possible to take or compare snapshots for Toonz vector levels. - Není možné vytvořit nebo porovnat ukázky vektorových úrovní Toonz. + Není možné vytvořit nebo porovnat ukázky vektorových úrovní Toonz. File %1 already exists. Do you want to overwrite it? - Soubor %1 již existuje. + Soubor %1 již existuje. Chcete jej přepsat? @@ -2547,7 +2551,7 @@ Chcete jej přepsat? Relative Onion Skin Toggle - Přepnout relativní cibulový vzhled + Přepnout relativní cibulový vzhled Fixed Onion Skin Toggle @@ -2565,7 +2569,7 @@ Chcete jej přepsat? ImageViewer FlipboOk Histogram - Histogram FlipboOk + Histogram FlipboOk Clone Preview @@ -2605,11 +2609,11 @@ Chcete jej přepsat? Load Images - Nahrát obrázky + Nahrát obrázky Append Images - Připojit obrázky + Připojit obrázky Save Images @@ -2861,7 +2865,7 @@ Chcete jej přepsat? Save in: - Uložit v: + Uložit v: Width: @@ -2873,7 +2877,7 @@ Chcete jej přepsat? Create - Vytvořit + Vytvořit Cancel @@ -2915,7 +2919,7 @@ Chcete ji vytvořit? Ok - OK + OK Apply @@ -2990,7 +2994,7 @@ Chcete ji vytvořit? Image Resolution: - Rozlišení obrázku: + Rozlišení obrázku: Premultiply @@ -3002,7 +3006,7 @@ Chcete ji vytvořit? Subsampling: - Podvzorkování: + Podvzorkování: DPI: @@ -3298,6 +3302,10 @@ Please use the frame numbers for reference. Invalid data file. Neplatný soubor s daty. + + Drawing: + + LoadBoardPresetFilePopup @@ -3318,7 +3326,7 @@ Please use the frame numbers for reference. Palette from Frame: - Paleta ze snímku: + Paleta ze snímku: Frames : @@ -3329,11 +3337,11 @@ Please use the frame numbers for reference. LoadCurvePopup Load Curve - Nahrát křivku (parametr efektu) + Nahrát křivku (parametr efektu) Load - Nahrát + Nahrát @@ -3355,7 +3363,7 @@ Please use the frame numbers for reference. Append Images - Připojit obrázky + Připojit obrázky From: @@ -3406,7 +3414,7 @@ Please use the frame numbers for reference. %1 does not exist. - %1 neexistuje. + %1 neexistuje. TLV Caching Behavior @@ -3476,15 +3484,15 @@ Please use the frame numbers for reference. LoadSettingsPopup Load Cleanup Settings - Nahrát nastavení vyčištění + Nahrát nastavení vyčištění Load - Nahrát + Nahrát %1 does not exist. - %1 neexistuje. + %1 neexistuje. @@ -3545,7 +3553,7 @@ Please use the frame numbers for reference. %1 is not a TNZ file. - %1 není soubor TNZ. + %1 není soubor TNZ. you can load only TNZ files for render task. @@ -3614,11 +3622,11 @@ Please use the frame numbers for reference. Visit Web Site - Navštívit internetovou stránku + Navštívit internetovou stránku Cancel - Zrušit + Zrušit &New Scene @@ -3798,7 +3806,7 @@ Please use the frame numbers for reference. &Paste - &Vložit + &Vložit &Merge @@ -3810,7 +3818,7 @@ Please use the frame numbers for reference. Paste RGBA Values - Vložit hodnotu RGBA + Vložit hodnotu RGBA &Delete @@ -3838,7 +3846,7 @@ Please use the frame numbers for reference. &Send Back - &Poslat zpět + &Poslat zpět &Send Backward @@ -3910,7 +3918,7 @@ Please use the frame numbers for reference. &Revert to Last Saved Version - &Vrátit na naposledy uloženou verzi + &Vrátit na naposledy uloženou verzi &Expose in Xsheet @@ -4210,7 +4218,7 @@ Please use the frame numbers for reference. Matte Channel - Alfa + Alfa Red Channel Greyscale @@ -4234,7 +4242,7 @@ Please use the frame numbers for reference. &FlipboOk - &Flipbook + &Flipbook &Function Editor @@ -4318,7 +4326,7 @@ Please use the frame numbers for reference. Onion Skin - Cibulová slupka + Cibulová slupka Duplicate @@ -4346,7 +4354,7 @@ Please use the frame numbers for reference. Premultiply - Přednásobit [černá-pozadí] + Přednásobit [černá-pozadí] Convert to Vectors... @@ -4430,79 +4438,79 @@ Please use the frame numbers for reference. Activate this column only - Zapnout jen tento sloupec + Zapnout jen tento sloupec Activate selected columns - Zapnout vybrané sloupce + Zapnout vybrané sloupce Activate all columns - Zapnout všechny sloupce + Zapnout všechny sloupce Deactivate selected columns - Vypnout vybrané sloupce + Vypnout vybrané sloupce Deactivate all columns - Vypnout všechny sloupce + Vypnout všechny sloupce Toggle columns activation - Zapnout pohled na sloupce + Zapnout pohled na sloupce Enable this column only - Zapnout jen tento sloupec + Zapnout jen tento sloupec Enable selected columns - Povolit vybrané sloupce + Povolit vybrané sloupce Enable all columns - Povolit všechny sloupce + Povolit všechny sloupce Disable all columns - Zakázat všechny sloupce + Zakázat všechny sloupce Disable selected columns - Zakázat vybrané sloupce + Zakázat vybrané sloupce Swap enabled columns - Vyměnit povolené sloupce + Vyměnit povolené sloupce Lock this column only - Uzamknout jen tento sloupec + Uzamknout jen tento sloupec Lock selected columns - Uzamknout vybrané sloupce + Uzamknout vybrané sloupce Lock all columns - Uzamknout všechny sloupce + Uzamknout všechny sloupce Unlock selected columns - Odemknout vybrané sloupce + Odemknout vybrané sloupce Unlock all columns - Odemknout všechny sloupce + Odemknout všechny sloupce Swap locked columns - Vyměnit uzamknuté sloupce + Vyměnit uzamknuté sloupce Edit Tool - Nástroj na úpravy + Nástroj na úpravy Selection Tool @@ -4598,7 +4606,7 @@ Please use the frame numbers for reference. HoOk Tool - Haken-Tool + Haken-Tool Zoom Tool @@ -4650,11 +4658,11 @@ Please use the frame numbers for reference. Increase brush hardness - Zvětšit tvrdost štětce + Zvětšit tvrdost štětce Decrease brush hardness - Zmenšit tvrdost štětce + Zmenšit tvrdost štětce Auto Group @@ -4698,7 +4706,7 @@ Please use the frame numbers for reference. Pressure sensibility - Tlaková citlivost + Tlaková citlivost Segment Ink @@ -4750,15 +4758,15 @@ Please use the frame numbers for reference. Areas Mode - Režim oblasti + Režim oblasti Lines Mode - Režim čáry + Režim čáry Lines & Areas Mode - Režim čáry a oblasti + Režim čáry a oblasti Type @@ -4766,19 +4774,19 @@ Please use the frame numbers for reference. Normal Type - Standardní + Standardní Rectangular Type - Pravoúhlý + Pravoúhlý Freehand Type - Kreslení od ruky + Kreslení od ruky Polyline Type - Lomená čára + Lomená čára TypeTool Font @@ -4854,23 +4862,23 @@ Please use the frame numbers for reference. Drawing - Kreslení + Kreslení Animation - Animace + Animace Browser - Prohlížeč + Prohlížeč Pltedit - Paleta + Paleta Farm - Zpracování + Zpracování Reload qss @@ -4930,19 +4938,19 @@ Please use the frame numbers for reference. Increase max brush thickness - Zvětšit největší tloušťku štětce + Zvětšit největší tloušťku štětce Decrease max brush thickness - Zmenšit největší tloušťku štětce + Zmenšit největší tloušťku štětce Increase min brush thickness - Zvětšit nejmenší tloušťku štětce + Zvětšit nejmenší tloušťku štětce Decrease min brush thickness - Zmenšit nejmenší tloušťku štětce + Zmenšit nejmenší tloušťku štětce &Binarize... @@ -4958,7 +4966,7 @@ Please use the frame numbers for reference. Linetest - Čárová zkouška + Čárová zkouška &Load As Sub-xsheet... @@ -4990,7 +4998,7 @@ Please use the frame numbers for reference. Link FlipboOks - Propojit FlipboOk + Propojit FlipboOk &Message Center @@ -5018,7 +5026,7 @@ Please use the frame numbers for reference. Toggle &Opacity Check - Přepnout ověření &neprůhlednosti + Přepnout ověření &neprůhlednosti &Load Folder... @@ -5062,7 +5070,7 @@ Please use the frame numbers for reference. &Clear Recent FlipboOk Image List - &Vyprázdnit předchozí seznam obrázků FlipboOk + &Vyprázdnit předchozí seznam obrázků FlipboOk Preview Fx @@ -5070,7 +5078,7 @@ Please use the frame numbers for reference. &Insert Paste - Přidat/&Vložit + Přidat/&Vložit &Paste Color && Name @@ -5266,7 +5274,7 @@ Please use the frame numbers for reference. &Abount OpenToonz... - &O programu OpenToonz... + &O programu OpenToonz... &ComboViewer @@ -5536,20 +5544,44 @@ Please use the frame numbers for reference. Flip Viewer Horizontally Převrátit prohlížeč vodorovně + + &Send to Back + + + + Reset Zoom + + + + Reset Rotation + + + + Reset Position + + + + Brush Tool - Eraser (Raster option) + + + + Brush Tool - Lock Alpha + + MatchlinesDialog Apply Match Lines - Použít dělicí čáry + Použít dělicí čáry Add Match Line Styles - Přidat styl dělicí čáry + Přidat styl dělicí čáry Use Style: - Použít styl: + Použít styl: Line Prevalence @@ -5618,7 +5650,7 @@ Otherwise, a new style will be added to "match lines" page. MenuBarPopup Customize Menu Bar of Room "%1" - + Přizpůsobit nabídkový pruh pracovní plochy "%1" OK @@ -5665,15 +5697,15 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m MergeCmappedCommand It is not possible to merge tlv columns because no column was selected. - Sloupce TLV nelze sloučit, protože nebyly vybrány žádné sloupce. + Sloupce TLV nelze sloučit, protože nebyly vybrány žádné sloupce. It is not possible to merge tlv columns because at least two columns have to be selected. - Sloupce TLV nelze sloučit, protože musí být vybrány alespoň dva sloupce. + Sloupce TLV nelze sloučit, protože musí být vybrány alespoň dva sloupce. Merging Tlv Levels... - Slučují se úrovně TLV... + Slučují se úrovně TLV... @@ -5702,16 +5734,20 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m Merge Tlv Levels Sloučit úrovně TLV + + Level %1 already exists! Are you sure you want to overwrite it? + + MergeColumnsCommand It is not possible to execute the merge column command because no column was selected. - Sloupce nelze sloučit, protože nebyly vybrány žádné sloupce. + Sloupce nelze sloučit, protože nebyly vybrány žádné sloupce. It is not possible to execute the merge column command because only one columns is selected. - Sloupce nelze sloučit, protože byly vybrán jen jeden sloupec. + Sloupce nelze sloučit, protože byly vybrán jen jeden sloupec. @@ -5795,10 +5831,17 @@ Co chcete dělat? + MyVideoWidget + + Camera is not available + Kamera není dostupná + + + MyViewFinder Camera is not available - Kamera není dostupná + Kamera není dostupná @@ -5809,11 +5852,11 @@ Co chcete dělat? File Name: - Název souboru: + Název souboru: File Format: - Formát souboru: + Formát souboru: Output Camera: @@ -5821,11 +5864,11 @@ Co chcete dělat? To Frame: - Ke snímku: + Ke snímku: From Frame: - Od snímku: + Od snímku: Shrink: @@ -5849,7 +5892,7 @@ Co chcete dělat? Multiple Rendering: - Vícenásobné zpracování: + Vícenásobné zpracování: Do stereoscopy @@ -5893,7 +5936,7 @@ Co chcete dělat? to FPS: - Posunutí k FPS: + Posunutí k FPS: Stretch from FPS: @@ -5953,15 +5996,15 @@ Co chcete dělat? 8 bits - 8-bitů + 8-bitů 16 bits - 16-bitů + 16-bitů Columns - Sloupce + Sloupce Camera Shift: @@ -5969,7 +6012,7 @@ Co chcete dělat? Stereoscopic Render: - Stereoskopické zpracování: + Stereoskopické zpracování: Camera Settings @@ -6192,16 +6235,16 @@ Co chcete dělat? Overwrite - Přepsat + Přepsat Skip - Přeskočit + Přeskočit File "%1" already exists. Do you want to overwrite it? - Soubor %1 již existuje. + Soubor %1 již existuje. Chcete jej přepsat? @@ -6516,6 +6559,10 @@ WARNING : Image size mismatch. The size of level with the same path is %1 x %2.< VAROVÁNÍ: Nesoulad ve velikosti obrázku. Velikost úrovně se stejnou cestou je %1 x %2. + + Subcamera + + PencilTestSaveInFolderPopup @@ -6634,19 +6681,19 @@ Nastavit cestu k výstupní složce také na podsložku. Luminance: - Svítivost: + Svítivost: Saturation: - Sytost: + Sytost: Hue: - Odstín: + Odstín: Transparency: - Průhlednost: + Průhlednost: Fade to Color @@ -6654,7 +6701,7 @@ Nastavit cestu k výstupní složce také na podsložku. Color: - Barva: + Barva: Fade @@ -6666,11 +6713,11 @@ Nastavit cestu k výstupní složce také na podsložku. Full Matte - Plné pozadí + Plné pozadí Zero Matte - Žádné pozadí + Žádné pozadí Scale (%) @@ -6694,7 +6741,7 @@ Nastavit cestu k výstupní složce také na podsložku. Matte - Alfa + Alfa Color @@ -6729,11 +6776,11 @@ Nastavit cestu k výstupní složce také na podsložku. Minimize Raster Memory Fragmentation* - Zmenšit tříštění rastrové paměti* + Zmenšit tříštění rastrové paměti* Save Automatically Every Minutes - Uložit automaticky po stanoveném počtu minut + Uložit automaticky po stanoveném počtu minut Backup Animation Levels when Saving @@ -6749,11 +6796,11 @@ Nastavit cestu k výstupní složce také na podsložku. Style: - Styl: + Styl: Open FlipboOk after Rendering - Po zpracování otevřít FlipboOk + Po zpracování otevřít FlipboOk Unit: @@ -6765,15 +6812,15 @@ Nastavit cestu k výstupní složce také na podsložku. FlipboOk Shrink: - Zmenšit FlipboOk: + Zmenšit FlipboOk: Step: - Krok: + Krok: Height*: - Výška*: + Výška*: Loading @@ -6801,7 +6848,7 @@ Nastavit cestu k výstupní složce také na podsložku. Default Interpolation: - Výchozí interpolace obrazu: + Výchozí interpolace obrazu: Linear @@ -6813,7 +6860,7 @@ Nastavit cestu k výstupní složce také na podsložku. Ease In / Ease Out - + Ease In/Ease Out Ease In / Ease Out % @@ -6837,7 +6884,7 @@ Nastavit cestu k výstupní složce také na podsložku. Display in a New FlipboOk Window - Zobrazit v novém okně FlipboOk + Zobrazit v novém okně FlipboOk Rewind after Playback @@ -6849,11 +6896,11 @@ Nastavit cestu k výstupní složce také na podsložku. Following Frames Correction: - Nastavení barvy následujících snímků: + Nastavení barvy následujících snímků: Previous Frames Correction: - Nastavení barvy předcházejících snímků: + Nastavení barvy předcházejících snímků: Display Lines Only @@ -6877,11 +6924,11 @@ Nastavit cestu k výstupní složce také na podsložku. Language*: - Jazyk*: + Jazyk*: Undo Memory Size (MB): - Velikost paměti (MB) pro návrat zpět: + Velikost paměti (MB) pro návrat zpět: Render Task Chunk Size: @@ -6893,7 +6940,7 @@ Nastavit cestu k výstupní složce také na podsložku. *Changes will take effect the next time you run Toonz - *Změny se projeví při příštím spuštění Toonz + *Změny se projeví při příštím spuštění Toonz cm @@ -6917,15 +6964,15 @@ Nastavit cestu k výstupní složce také na podsložku. Level Strip Frames Width*: - Šířka proužku snímků úrovně*: + Šířka proužku snímků úrovně*: Capture - Zachytávání + Zachytávání Frame Rate: - Snímkování: + Snímkování: Scan File Format: @@ -6937,7 +6984,7 @@ Nastavit cestu k výstupní složce také na podsložku. Height: - Výška: + Výška: DPI: @@ -6957,7 +7004,7 @@ Nastavit cestu k výstupní složce také na podsložku. Enable Version Control * - Povolit správu verzí * + Povolit správu verzí * Default Level Type: @@ -6985,19 +7032,19 @@ Nastavit cestu k výstupní složce také na podsložku. Ink Color on White Bg: -  Barva čar a vektorů na bílém pozadí: +  Barva čar a vektorů na bílém pozadí: Ink Color on Black Bg: -  Barva čar a vektorů na černém pozadí: +  Barva čar a vektorů na černém pozadí: Paint Color: - Barva malby: + Barva malby: Fit to FlipboOk - Ukázat vše ve FlipboOk + Ukázat vše ve FlipboOk New Level Format @@ -7049,7 +7096,7 @@ Nastavit cestu k výstupní složce také na podsložku. Replace Level after SaveLevelAs command - Nahradit úroveň po příkazu Uložit úroveň jako + Nahradit úroveň po příkazu Uložit úroveň jako * Changes will take effect the next time you run Toonz @@ -7069,11 +7116,11 @@ Nastavit cestu k výstupní složce také na podsložku. Show Raster Images Darken Blended in Camstand View - Zobrazit rastrové obrázky v pohledu na stav kamery (tmavě smícháno) + Zobrazit rastrové obrázky v pohledu na stav kamery (tmavě smícháno) Show "ABC" to the Frame Number in Xsheet Cell - Ukázat dodatek "ABC" u čísla snímku v buňce Xsheet + Ukázat dodatek "ABC" u čísla snímku v buňce Xsheet Automatically Remove Scene Number from Loaded Level Name @@ -7141,11 +7188,11 @@ Nastavit cestu k výstupní složce také na podsložku. Default TLV Caching Behavior - Výchozí chování ukládání do vyrovnávací paměti TLV + Výchozí chování ukládání do vyrovnávací paměti TLV Column Icon - Ikona sloupce + Ikona sloupce Height: @@ -7193,15 +7240,15 @@ Nastavit cestu k výstupní složce také na podsložku. Pick Every Colors as Different Styles - Zvolit každou barvu jako jednotlivý styl + Zvolit každou barvu jako jednotlivý styl Integrate Similar Colors as One Style - Zvolit podobné barvy jako jeden styl + Zvolit podobné barvy jako jeden styl Palette Type on Loading Raster Image as Color Model - Typ palety při nahrání rastrového obrázku jako barevný model + Typ palety při nahrání rastrového obrázku jako barevný model Mouse Cursor @@ -7694,19 +7741,19 @@ in non alpha-enabled image format. PreferencesPopup:: FormatProperties Level Settings by File Format - Nastavení úrovní podle souborového formátu + Nastavení úrovní podle souborového formátu Name: - Název: + Název: Regular Expression: - Formát souboru(regulární výrazy): + Formát souboru(regulární výrazy): Priority - Přednost + Přednost @@ -7732,12 +7779,12 @@ in non alpha-enabled image format. Previewer The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | - Název souboru nesmí být prázdný nebo obsahovat následující znaky: (nový řádek) \ / : * ? " | + Název souboru nesmí být prázdný nebo obsahovat následující znaky: (nový řádek) \ / : * ? " | File %1 already exists. Do you want to overwrite it? - Soubor %1 již existuje. + Soubor %1 již existuje. Chcete jej přepsat? @@ -7800,7 +7847,7 @@ Chcete jej přepsat? Ok - OK + OK It is not possible to create the %1 project. @@ -7814,7 +7861,7 @@ Chcete jej přepsat? Bad project name: '%1' loOks like an absolute file path - Neplatný název projektu: '%1' vypadá, že je to absolutní cesta + Neplatný název projektu: '%1' vypadá, že je to absolutní cesta Project '%1' already exists @@ -7909,6 +7956,38 @@ Chcete jej přepsat? Level Name: Název úrovně: + + Single Image + + + + Frames + Snímky + + + Columns + Sloupce + + + Flatten visible document layers into a single image. Layer styles are maintained. + + + + Load document layers as frames into a single xsheet column. + + + + Load document layers as xhseet columns. + + + + OK + OK + + + Cancel + Zrušit + QApplication @@ -7958,16 +8037,16 @@ Chcete jej přepsat? The color model palette is different from the destination palette. What do you want to do? - Paleta s barevným modelem se liší od cílové palety. + Paleta s barevným modelem se liší od cílové palety. Co chcete dělat? Overwrite the destination palette. - Přepsat cílovou paletu. + Přepsat cílovou paletu. Keep the destination palette and apply it to the color model. - Ponechat cílovou paletu. a použít ji na barevný model. + Ponechat cílovou paletu. a použít ji na barevný model. It is not possible to paste the columns: there is a circular reference. @@ -8103,7 +8182,7 @@ Chcete jej zavést nebo nebo jej nahrát z jeho původního umístění? System date tampered. - Do sytémového data bylo zasáhnuto. + Do sytémového data bylo zasáhnuto. No more Undo operations available. @@ -8121,7 +8200,7 @@ Navštivte, prosím, internetové stránky pro více informací. Quit - Ukončit + Ukončit Scan @@ -8133,7 +8212,7 @@ Navštivte, prosím, internetové stránky pro více informací. Select an empty cell or a sub-xsheet cell. - Vyberte prázdnou buňku nebo buňku pod-Xsheet. + Vyberte prázdnou buňku nebo buňku pod-Xsheet. Collapsing columns: what you want to do? @@ -8244,7 +8323,7 @@ the level has to be saved first. It is not possible to track the level: undefinied error. - Nelze sledovat úroveň: + Nelze sledovat úroveň: Neurčená chyba. @@ -8309,7 +8388,7 @@ Neurčená chyba. FlipBoOk - FlipBoOk + FlipBoOk Deactivate Onion Skin @@ -8356,7 +8435,7 @@ Jste si jistý, že se chcete vrátit k předchozí uložené verzi? %1: the current scene has been modified. Do you want to save your changes? - %1: Nynější záběr byl změněn. + %1: Nynější záběr byl změněn. Chcete uložit změny? @@ -8434,7 +8513,7 @@ Co chcete dělat? The license validation process was not able to confirm the right to use this software on this computer. Please contact [ support@toonz.com ] for assistance. - Licenční schvalovací postup nebyl schopen potvrdit oprávnění k používání software na tomto počítači. + Licenční schvalovací postup nebyl schopen potvrdit oprávnění k používání software na tomto počítači. Spojte se, prosím, kvůli podpoře s support@toonz.com. @@ -8447,7 +8526,7 @@ Spojte se, prosím, kvůli podpoře s support@toonz.com. Change project - Změnit projekt + Změnit projekt It is not possible to delete the selection. @@ -8539,7 +8618,7 @@ Chcete jej přepsat? File %1 doesn't loOk like a TOONZ Scene - Soubor %1 nevypadá jako záběr Toonz + Soubor %1 nevypadá jako záběr Toonz It is not possible to load the scene %1 because it does not belong to any project. @@ -8579,7 +8658,7 @@ Některé úrovně nebyly nahrány, protože jejich verze není podporována The Revert to Last Saved command is not supported for the current selection. - Příkaz "Vrátit se k naposledy uložené verzi" není pro nynější výběr podporován. + Příkaz "Vrátit se k naposledy uložené verzi" není pro nynější výběr podporován. The selected column is empty. @@ -8829,7 +8908,7 @@ Chcete uložit změny? The scene %1 was created with Toonz and cannot be loaded in LineTest. - Záběr %1 byl vytvořen s Toonz a nelze jej nahrát do čárové zkoušky. + Záběr %1 byl vytvořen s Toonz a nelze jej nahrát do čárové zkoušky. File %1 already exists. @@ -8855,11 +8934,11 @@ Chcete jej přepsat? Level - Úroveň + Úroveň already exists! Are you sure you want to overwrite it? - již existuje. Chcete ji přepsat? + již existuje. Chcete ji přepsat? It is not possible to merge tlv columns containing more than one level @@ -8969,19 +9048,19 @@ Jste si jistý? Following file(s) are modified. - Následující soubor(y) jsou změněny. + Následující soubor(y) jsou změněny. Are you sure to - + Jste si jistý anyway ? - přesto? + přesto? Overwrite Palette @@ -8997,7 +9076,7 @@ Jste si jistý Toonz cannot Save this Level - Tuto úroveň nelze uložit + Tuto úroveň nelze uložit No Current Scene @@ -9057,7 +9136,7 @@ Jste si jistý Inbeteween : Level %1, - Mezi to: Úroveň %1 + Mezi to: Úroveň %1 Paste Column : @@ -9189,7 +9268,7 @@ Jste si jistý Paste (StrOkes) - Vložit (tah) + Vložit (tah) Paste @@ -9227,7 +9306,7 @@ Ve schránce nejsou žádná data k vložení Set Keyframe : %1 at Frame %2 - nastavit klíčový snímek: %1 snímek %2 + nastavit klíčový snímek: %1 snímek %2 Move Columns @@ -9251,7 +9330,7 @@ Ve schránce nejsou žádná data k vložení Cleeanup Settings - Nastavení vyčištění + Nastavení vyčištění Move Level to Cast Folder @@ -9689,6 +9768,240 @@ to use the duplicate command in the xsheet / timeline. Clear All Relative Onion Skin Markers Vyprázdnit všechny relativní značky cibulového vzhledu + + Always Overwrite in This Scene + + + + + %1 more level(s) + + + + + Fx Settings + Nastavení efektu + + + Save Curve + Uložit křivku + + + Load Curve + Nahrát křivku (parametr efektu) + + + Export Curve + Vyvést křivku + + + Rendering frame %1 / %2 + RenderListener + + + + Precomputing %1 Frames + RenderListener + + + + of %1 + RenderListener + + + + Finalizing render, please wait. + RenderListener + Dokončuje se zpracování. Počkejte, prosím. + + + Aborting render... + RenderListener + + + + Building Schematic... + RenderCommand + + + + column + MultimediaProgressBar label (mode name) + + + + layer + MultimediaProgressBar label (mode name) + + + + Rendering %1%2, frame %3 / %4 + MultimediaProgressBar label + + + + Rendering %1 frames of %2 + MultimediaProgressBar + + + + %1 of %2 + MultimediaProgressBar - [totalframe] of [path] + + + + Aborting render... + MultimediaProgressBar + + + + It is not possible to write the output: the file + RenderCommand + + + + s are read only. + RenderCommand + + + + is read only. + RenderCommand + + + + Save Cleanup Settings + Uložit nastavení vyčištění + + + Load Cleanup Settings + Nahrát nastavení vyčištění + + + It is not possible to find the %1 level. + FileData + Úroveň %1 nelze najít. + + + There was an error copying %1 + FileData + Při kopírování %1 se vyskytla chyba + + + Clone Level + CloneLevelUndo::LevelNamePopup + Zdvojit úroveň + + + Level Name: + CloneLevelUndo::LevelNamePopup + Název úrovně: + + + Collecting assets... + Sbírá se materiál... + + + Abort + Zrušit + + + Importing scenes... + Zavádí se záběry... + + + It is not possible to execute the merge column command because no column was selected. + Sloupce nelze sloučit, protože nebyly vybrány žádné sloupce. + + + It is not possible to execute the merge column command because only one columns is selected. + + + + It is not possible to apply the match lines because no column was selected. + Není možné použít dělicí čáry, protože nebyl vybrán žádný sloupec. + + + It is not possible to apply the match lines because two columns have to be selected. + Je možné použít dělicí čáry, protože musí být vybrány dva sloupce. + + + It is not possible to merge tlv columns because no column was selected. + Sloupce TLV nelze sloučit, protože nebyly vybrány žádné sloupce. + + + It is not possible to merge tlv columns because at least two columns have to be selected. + Sloupce TLV nelze sloučit, protože musí být vybrány alespoň dva sloupce. + + + Merging Tlv Levels... + Slučují se úrovně TLV... + + + Save Previewed Images + Uložit snímky s náhledem + + + The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | + Název souboru nesmí být prázdný nebo obsahovat následující znaky: (nový řádek) \ / : * ? " | + + + Unsopporter raster format, cannot save + + + + Cannot create %1 : %2 + Previewer warning %1:path %2:message + + + + Cannot create %1 + Previewer warning %1:path + + + + Saved %1 frames out of %2 in %3 + Previewer %1:savedframes %2:framecount %3:filepath + %1 snímků z %2 bylo uloženo v %3 + + + Canceled! + Previewer + + + + No frame to save! + + + + Already saving! + + + + Warning! + OverwriteDialog + Varování! + + + Overwrite + OverwriteDialog + Přepsat + + + Skip + OverwriteDialog + Přeskočit + + + File "%1" already exists. +Do you want to overwrite it? + OverwriteDialog + Soubor %1 již existuje. +Chcete jej přepsat? + + + %1 does not exist. + %1 neexistuje. + ReframePopup @@ -9795,7 +10108,7 @@ Výsledek výstupu se může lišit od toho, který byl očekáván. Co chcete d RenderListener Finalizing render, please wait. - Dokončuje se zpracování. Počkejte, prosím. + Dokončuje se zpracování. Počkejte, prosím. @@ -9829,7 +10142,7 @@ Výsledek výstupu se může lišit od toho, který byl očekáván. Co chcete d Nothing to replace: no cells selected. - Není nic k nahrazenín: Nebyly vybrány žádné buňky. + Není nic k nahrazenín: Nebyly vybrány žádné buňky. File not found @@ -9850,7 +10163,7 @@ Výsledek výstupu se může lišit od toho, který byl očekáván. Co chcete d Nothing to replace: no cells or columns selected. - Není nic k nahrazenín: Nebyly vybrány ani buňky ani sloupce. + Není nic k nahrazenín: Nebyly vybrány ani buňky ani sloupce. @@ -9861,7 +10174,7 @@ Výsledek výstupu se může lišit od toho, který byl očekáván. Co chcete d Delete Room - Smazat pracovní plochu + Smazat pracovní plochu Room @@ -10037,11 +10350,11 @@ Výsledek výstupu se může lišit od toho, který byl očekáván. Co chcete d Adding hoOk file to repository... - Soubor háčku se přidává do úložiště... + Soubor háčku se přidává do úložiště... Setting the needs-lock property to hoOk file... - Vlastnost "Zámek nutný" se nastavuje v souboru háčku... + Vlastnost "Zámek nutný" se nastavuje v souboru háčku... Adding hook file to repository... @@ -10698,18 +11011,18 @@ Nejprve, prosím, změny odešlete, nebo je vraťte zpět. SaveCurvePopup Save Curve - Uložit křivku + Uložit křivku Save - Uložit + Uložit SaveImagesPopup Save FlipboOk Images - Uložit obrázky FlipboOk + Uložit obrázky FlipboOk Save @@ -10781,11 +11094,11 @@ Nejprve, prosím, změny odešlete, nebo je vraťte zpět. SavePreviewedPopup Save Previewed Images - Uložit snímky s náhledem + Uložit snímky s náhledem Save - Uložit + Uložit @@ -10803,11 +11116,11 @@ Nejprve, prosím, změny odešlete, nebo je vraťte zpět. SaveSettingsPopup Save Cleanup Settings - Uložit nastavení vyčištění + Uložit nastavení vyčištění Save - Uložit + Uložit @@ -10879,7 +11192,7 @@ Nejprve, prosím, změny odešlete, nebo je vraťte zpět. Frame Rate: - Snímkování: + Snímkování: Camera BG Color: @@ -10887,19 +11200,19 @@ Nejprve, prosím, změny odešlete, nebo je vraťte zpět. Viewer BG Color: - Barva pozadí prohlížeče: + Barva pozadí prohlížeče: Preview BG Color: - Barva pozadí náhledu: + Barva pozadí náhledu: Checkerboard Color 1: - Barva šachovnice 1: + Barva šachovnice 1: Checkerboard Color 2: - Barva šachovnice 2: + Barva šachovnice 2: Image Subsampling: @@ -10907,7 +11220,7 @@ Nejprve, prosím, změny odešlete, nebo je vraťte zpět. Marker Interval: - Interval značky: + Interval značky: A/R: @@ -10915,11 +11228,11 @@ Nejprve, prosím, změny odešlete, nebo je vraťte zpět. Safe Area Box 2: - Rámeček bezpečné oblasti 2: + Rámeček bezpečné oblasti 2: Safe Area Box 1: - Rámeček bezpečné oblasti 1: + Rámeček bezpečné oblasti 1: TLV Subsampling: @@ -10927,11 +11240,11 @@ Nejprve, prosím, změny odešlete, nebo je vraťte zpět. Start Frame: - Začáteční snímek: + Začáteční snímek: Level And Column Icon: - Ikona úrovní a sloupců: + Ikona úrovní a sloupců: Field Guide Size: @@ -11028,6 +11341,14 @@ Nejprve, prosím, změny odešlete, nebo je vraťte zpět. Select %1 Vybrat %1 + + Flip View + + + + Reset View + + SceneViewerPanel @@ -11091,6 +11412,10 @@ Nejprve, prosím, změny odešlete, nebo je vraťte zpět. (Flipped) (převráceno) + + :: Project: + + SeparateColorsPopup @@ -11593,7 +11918,7 @@ Přiřadit k '%3'? Choose Project - Vybrat projekt + Vybrat projekt Create a New Scene @@ -11601,7 +11926,7 @@ Přiřadit k '%3'? Open Scene - Otevřít záběr + Otevřít záběr Scene Name: @@ -11745,42 +12070,54 @@ Možná byl soubor s přednastavením poškozen The height must be greater than zero. Výška musí být větší než nula. + + Current Project + + + + Recent Scenes [Project] + + + + The selected scene project '%1' is not in the Current Project list and may not open automatically. + + SubSheetBar Sub-scene controls: Click the arrow button to create a new sub-xsheet - Ovládání podzáběru: + Ovládání podzáběru: Klepněte na tlačítko pro vytvoření nového pod-Xsheet Disable Edit in Place - Zakázat úpravy v místě + Zakázat úpravy v místě Enable Edit in Place - Povolit úpravy v místě + Povolit úpravy v místě Exit Sub-xsheet (1 Level Up) - Zavřít pod-xsheet (1 úroveň nahoru) + Zavřít pod-xsheet (1 úroveň nahoru) Exit Sub-xsheet (2 Levels Up) - Zavřít pod-xsheet (2 úrovně nahoru) + Zavřít pod-xsheet (2 úrovně nahoru) Exit Sub-xsheet (3 or More Levels Up) - Zavřít pod-xsheet (3 úrovně nahoru) + Zavřít pod-xsheet (3 úrovně nahoru) Enter Sub-xsheet - Upravit pod-xsheet + Upravit pod-xsheet Current Scene - Nynější záběr + Nynější záběr @@ -11798,7 +12135,7 @@ Klepněte na tlačítko pro vytvoření nového pod-Xsheet It is not possible to save automatically an untitled scene. - Nelze uložit nepojmenovaný záběr. + Nelze uložit nepojmenovaný záběr. @@ -11853,7 +12190,7 @@ Klepněte na tlačítko pro vytvoření nového pod-Xsheet Successfull Steps: - Počet úspěšných kroků: + Počet úspěšných kroků: Priority: @@ -11885,7 +12222,7 @@ Klepněte na tlačítko pro vytvoření nového pod-Xsheet Multiple Rendering: - Vícenásobné zpracování: + Vícenásobné zpracování: None @@ -11945,11 +12282,11 @@ Klepněte na tlačítko pro vytvoření nového pod-Xsheet Remove -> - Odstranit -> + Odstranit -> <- Add - <- Přidat + <- Přidat Multimedia: @@ -12435,7 +12772,7 @@ Please refer to the user guide for details. Replace - Nahradit + Nahradit Edit Cell Numbers @@ -12466,11 +12803,11 @@ Please refer to the user guide for details. Camera Stand Toggle - Přepnout stav kamery + Přepnout stav kamery Render Toggle - Přepnout pohled na zpracování + Přepnout pohled na zpracování Lock Toggle @@ -12486,7 +12823,7 @@ Please refer to the user guide for details. Click to select the type of motion path - Klepnout pro vybrání typu cesty pohybu + Klepnout pro vybrání typu cesty pohybu Click to select column, drag to move it @@ -12494,15 +12831,15 @@ Please refer to the user guide for details. Click to unlink column - Klepnout pro odpojení sloupce + Klepnout pro odpojení sloupce Click and drag to link column - Klepnout a táhnout pro spojení sloupce + Klepnout a táhnout pro spojení sloupce Master column of linked columns - Hlavní sloupec spojených sloupců + Hlavní sloupec spojených sloupců &Subsampling 1 @@ -12654,7 +12991,7 @@ Please refer to the user guide for details. XsheetGUI::RowArea Onion Skin Toggle - Přepnout cibulový vzhled + Přepnout cibulový vzhled Current Frame @@ -12690,7 +13027,7 @@ Please refer to the user guide for details. Curren Frame - Nynější snímek + Nynější snímek Preview This @@ -12784,5 +13121,13 @@ Hold F3 Key on the Viewer to Show This Frame Only columns sloupce + + :: Project: + + + + Frame + + diff --git a/toonz/sources/translations/czech/toonzlib.ts b/toonz/sources/translations/czech/toonzlib.ts index d8fcff0..655d87c 100644 --- a/toonz/sources/translations/czech/toonzlib.ts +++ b/toonz/sources/translations/czech/toonzlib.ts @@ -214,113 +214,113 @@ Pravděpodobně kodek nemůže pracovat řádně. Obnovit barvy použitím vybraných poloh v paletě %1 - + Add Fx : Přidat efekt: - + Insert Fx : Vložit efekt: - - + + Create Linked Fx : %1 Vytvořit propojený efekt: %1 - + Replace Fx : Nahradit efekt: %1 - + Unlink Fx : %1 - - %2 Zrušit propojení efektu: %1 - - %2 - + Make Macro Fx : %1 Vytvořit makro efekt: %1 - + Explode Macro Fx : %1 Rozbalit makro efekt: %1 - + Create Output Fx Vytvořit výstupní efekt - + Connect to Xsheet : Spojit s Xsheet: - + Disconnect from Xsheet : Odpojit od Xsheet: - + Delete Link Smazat spojení - + Delete Fx Node : %1 Smazat uzel efektu: %1 - + Paste Fx : Vložit efekt: - + Disconnect Fx Odpojit od efekt - + Connect Fx : %1 - %2 Spojit efekt: %1 - %2 - + Rename Fx : %1 > %2 Přejmenovat efekt: %1 - %2 - + Group Fx Seskupit efekt - + Ungroup Fx Zrušit seskupení efektu - + Rename Group : %1 > %2 Přejmenovat skupinu: %1 > %2 - + Set Keyframe Nastavit klíčový snímek - + Remove Keyframe Odstranit klíčový snímek - + Cycle Koloběh diff --git a/toonz/sources/translations/czech/toonzqt.ts b/toonz/sources/translations/czech/toonzqt.ts index 440c9b1..fcc217f 100644 --- a/toonz/sources/translations/czech/toonzqt.ts +++ b/toonz/sources/translations/czech/toonzqt.ts @@ -68,22 +68,22 @@ AdjustPaletteDialog - + Adjust Current Level to This Palette Přizpůsobit nynější úroveň této paletě - + Tolerance Tolerance - + Apply Použít - + Cancel Zrušit @@ -267,14 +267,12 @@ Možná byl soubor s přednastavením poškozen DVGui - OK - OK + OK - Cancel - Zrušit + Zrušit @@ -386,7 +384,7 @@ Možná byl soubor s přednastavením poškozen DVGui::ProgressDialog - + OpenToonz OpenToonz @@ -394,7 +392,7 @@ Možná byl soubor s přednastavením poškozen DVGui::RadioButtonDialog - + OpenToonz OpenToonz @@ -889,7 +887,7 @@ Možná byl soubor s přednastavením poškozen FunctionSegmentViewer - + Linear Lineární @@ -920,7 +918,7 @@ Možná byl soubor s přednastavením poškozen - + File Soubor @@ -940,74 +938,74 @@ Možná byl soubor s přednastavením poškozen Interpolace: - + Apply Použít - + From Od - + To Do - + Step Krok - - + + < < - - + + > > - + Speed Rychlost - + Ease - + Ease% - + Expo Expo - + Expr Výraz - + Const Stálý - + Similar Podobný - + ???? ???? @@ -1023,7 +1021,7 @@ Možná byl soubor s přednastavením poškozen FunctionSheet - + Function Editor Editor funkce @@ -1031,75 +1029,105 @@ Možná byl soubor s přednastavením poškozen FunctionSheetCellViewer - + Delete Key Smazat klíčový snímek - + Set Key Nastavit klíčový snímek - + Linear Interpolation Lineární interpolace - + Speed In / Speed Out Interpolation - + Ease In / Ease Out Interpolation - + Ease In / Ease Out (%) Interpolation - + Exponential Interpolation Exponenciální interpolace - + Expression Interpolation Výrazová interpolace - + File Interpolation Souborová interpolace - + Constant Interpolation Stálá interpolace - + Step 1 Krok 1 - + Step 2 Krok 2 - + Step 3 Krok 3 - + Step 4 Krok 4 + + + Activate Cycle + Zapnout koloběh + + + + Deactivate Cycle + Vypnout koloběh + + + + Show Inbetween Values + + + + + Hide Inbetween Values + + + + + Change Interpolation + + + + + Change Step + + FunctionToolbar @@ -1117,17 +1145,17 @@ Možná byl soubor s přednastavením poškozen FunctionTreeModel - + Stage Fáze - + FX Efekt - + Plastic Skeleton Tvárná kostra @@ -1135,34 +1163,34 @@ Možná byl soubor s přednastavením poškozen FunctionTreeView - + Table Tabulka - + Save Curve Uložit křivku - + Load Curve Nahrát křivku (parametr efektu) - + Export Data Vyvést data - - + + Show Animated Only Ukázat jen kreslené - - + + Show All Ukázat vše @@ -1170,32 +1198,32 @@ Možná byl soubor s přednastavením poškozen FxColumnPainter - + &Disconnect from Xsheet &Odpojit od Xsheet - + &Connect to Xsheet &Spojit s Xsheet - + &Paste Add &Vložit/Přidat - + &Preview &Náhled - + &Uncache Fx &Smazat efekt z vyrovnávací paměti - + &Cache FX &Vytvořit vyrovnávací paměť pro efekt @@ -1203,17 +1231,17 @@ Možná byl soubor s přednastavením poškozen FxOutputPainter - + Output Výstup - + &Delete S&mazat - + &Activate &Zapnout @@ -1221,77 +1249,77 @@ Možná byl soubor s přednastavením poškozen FxPainter - + &Open Group &Otevřít skupinu - + &Paste Replace &Vložit/Nahradit - + &Paste Add &Vložit/Přidat - + &Delete S&mazat - + &Disconnect from Xsheet &Odpojit od Xsheet - + &Connect to Xsheet &Spojit s Xsheet - + &Create Linked FX &Vytvořit propojený efekt - + &Unlink &Zrušit propojení - + &Make Macro FX &Vytvořit makro efekt - + &Explode Macro FX &Rozbalit makro efekt - + &Open Macro FX &Otevřít makro efekt - + &Save As Preset... &Uložit jako přednastavení - + &Preview &Náhled - + &Uncache FX &Smazat efekt z vyrovnávací paměti - + &Cache FX &Vytvořit vyrovnávací paměť pro efekt @@ -1299,17 +1327,17 @@ Možná byl soubor s přednastavením poškozen FxPalettePainter - + &Disconnect from Xsheet &Odpojit od Xsheet - + &Connect to Xsheet &Spojit s Xsheet - + &Preview &Náhled @@ -1317,12 +1345,12 @@ Možná byl soubor s přednastavením poškozen FxSchematicLink - + &Delete S&mazat - + &Paste Insert &Vložit/Přidat @@ -1330,7 +1358,7 @@ Možná byl soubor s přednastavením poškozen FxSchematicOutputNode - + Output Výstup @@ -1338,12 +1366,12 @@ Možná byl soubor s přednastavením poškozen FxSchematicPort - + &Disconnect from Xsheet &Odpojit od Xsheet - + &Connect to Xsheet &Spojit s Xsheet @@ -1351,21 +1379,21 @@ Možná byl soubor s přednastavením poškozen FxSchematicScene - + Cannot Paste Insert a selection of unconnected FX nodes. Select FX nodes and related links before copying or cutting the selection you want to paste. Nelze vložit/přidat výběr nespojených efektových uzlů. Vyberte uzly efektů a příbuzné odkazy, jež chcete vložit, před kopírováním nebo vyjmutím výběru. - + Cannot Paste Add a selection of unconnected FX nodes. Select FX nodes and related links before copying or cutting the selection you want to paste. Nelze vložit/přidat výběr nespojených efektových uzlů. Vyberte uzly efektů a příbuzné odkazy, jež chcete vložit, před kopírováním nebo vyjmutím výběru. - + Cannot Paste Replace a selection of unconnected FX nodes. Select FX nodes and related links before copying or cutting the selection you want to paste. Nelze vložit/nahradit výběr nespojených efektových uzlů. @@ -1375,7 +1403,7 @@ Vyberte uzly efektů a příbuzné odkazy, jež chcete vložit, před kopírová FxSchematicXSheetNode - + XSheet XSheet @@ -1383,37 +1411,37 @@ Vyberte uzly efektů a příbuzné odkazy, jež chcete vložit, před kopírová FxSettings - + &Camera Preview &Náhled kamery - + &Preview &Náhled - + &White Background &Bílé pozadí - + &Black Background Č&erné pozadí - + &Checkered Background Ša&chovnicové pozadí - + Fx Settings Nastavení efektu - + : : @@ -1421,17 +1449,17 @@ Vyberte uzly efektů a příbuzné odkazy, jež chcete vložit, před kopírová FxXSheetPainter - + XSheet Xsheet - + &Paste Add &Vložit/Přidat - + &Preview &Náhled @@ -1513,9 +1541,8 @@ Vyberte uzly efektů a příbuzné odkazy, jež chcete vložit, před kopírová MyPaintBrushStyleChooserPage - Plain color - Normální barva + Normální barva @@ -1539,139 +1566,139 @@ Vyberte uzly efektů a příbuzné odkazy, jež chcete vložit, před kopírová PaletteViewer - - - + + + &Save Palette As &Uložit paletu jako - - - + + + &Save Palette &Uložit paletu - - + + Lock Palette Uzamknout paletu - + &Lock Palette &Uzamknout paletu - + Options Volby - + &Small Thumbnails View &Malé náhledy - + &Medium Thumbnails View &Střední náhledy - + &Large Thumbnails View &Velké náhledy - + &List View &Pohled se seznamem - + Style Name Název stylu - + StudioPalette Name Název studiové palety - + Both Names Oba názvy - + &New Page &Nová strana - - + + &New Style &Nový styl - - + + &Move Palette &Posunout paletu - + &Palette Gizmo Upravit &paletu - + New Page Nová strana - + Delete Page Smazat stranu - + Overwrite Přepsat - + Don't Overwrite Nepřepisovat - + Palette Paleta - + Level Palette: Paleta úrovně: - + Cleanup Palette Vyčistit paletu - + Studio Palette Studiová paleta - + (Color Model: (Barevný model: - + ) ) @@ -1679,22 +1706,22 @@ Vyberte uzly efektů a příbuzné odkazy, jež chcete vložit, před kopírová PaletteViewerGUI::PageViewer - + - No Styles - - Žádné styly - - + Name Editor Editor názvu stylu - + New Style Nový styl - + New Page Nová strana @@ -1747,6 +1774,19 @@ Vyberte uzly efektů a příbuzné odkazy, jež chcete vložit, před kopírová + PlaneViewer + + + Reset View + + + + + Fit To Window + + + + PointParamField @@ -1762,72 +1802,72 @@ Vyberte uzly efektů a příbuzné odkazy, jež chcete vložit, před kopírová QObject - + Failed to compile m_textureShader.vert. gl Nepodařilo se přeložit m_textureShader.vert. - + Failed to compile m_shader.frag. gl Nepodařilo se přeložit m_shader.frag. - + Failed to add m_shader.vert. gl Nepodařilo se přidat m_shader.vert. - + Failed to add m_shader.frag. gl Nepodařilo se přidat m_shader.frag. - + Failed to link simple shader: %1 gl Nepodařilo se spojit jednoduchý stínovač: %1 - - + + Failed to get attribute location of %1 gl Nepodařilo se získat umístění vlastnosti %1 - - + + Failed to get uniform location of %1 gl Nepodařilo se získat jednotné umístění %1 - + Failed to Open 3DLUT File. Nepodařilo se otevřít soubor 3DLUT. - + Failed to Load 3DLUT File. It should start with "3DMESH" keyword. Nepodařilo se nahrát soubor 3DLUT. Měl by začít s klíčovým slovem "3DMESH". - + Failed to Load 3DLUT File. The second line should be "Mesh [Input bit depth] [Output bit depth]" Nepodařilo se nahrát soubor 3DLUT. Druhý řádek by měl být "Mesh [Input bit depth] [Output bit depth]" - - + + Failed to Load 3DLUT File. Nepodařilo se nahrát soubor 3DLUT. @@ -1847,11 +1887,10 @@ Jste si jistý? - - - - - + + + + Cancel Zrušit @@ -1998,12 +2037,12 @@ Jste si jistý? Není možné nahrát cestu pohybu. - + Stage Schematic Náčrtek jeviště - + FX Schematic Náčrtek efektu @@ -2013,31 +2052,48 @@ Jste si jistý? Změnit styl Paleta: %1 Styl #%2 [R%3 G%4 B%5] -> [R%6 G%7 B%8] - + + Plain color + VectorBrushStyleChooserPage + Normální barva + + + + Custom Texture + TextureStyleChooserPage + + + + + Plain color + MyPaintBrushStyleChooserPage + Normální barva + + + + Plain color + SpecialStyleChooserPage + Normální barva + + Save - Uložit + Uložit - Discard - Zahodit + Zahodit - - Yes - Ano + Ano - - No - Ne + Ne - Replace - Nahradit + Nahradit @@ -2101,17 +2157,17 @@ Jste si jistý? %1: Lineární VYPNUTO - + Palette Paleta - + Overwrite Přepsat - + Don't Overwrite Nepřepisovat @@ -2121,6 +2177,16 @@ Jste si jistý? Není možné přiřadit klávesovou zkratku s modifikátory k příkazům pro znázornění. + + Current Frame: + + + + + File History + + + Fullpath: Plná cesta: @@ -2341,9 +2407,8 @@ Jste si jistý? Název souboru nesmí být prázdný nebo obsahovat následující znaky: (nový řádek) \ / : * ? " | - OpenToonz 1.3 - OpenToonz 1.3 + OpenToonz 1.3 @@ -2366,39 +2431,44 @@ Jste si jistý? Otázka - + Apply Použít - + + OK + OK + + + Styles you are going to delete are used to paint lines and areas in the animation level. Styly, jež se chystáte smazat, se používají k malování čar a ploch v animační úrovni. - + How do you want to proceed? Jak chcete pokračovat? - + Delete Styles Only Smazat jen styly - + Delete Styles, Lines and Areas Smazat styly, čáry a plochy - + Ok OK - + Deletion of Lines and Areas from raster-based levels is not undoable. Are you sure? Smazání čar a ploch z na rastrech založených úrovní se nedá vrátit zpět. @@ -2418,7 +2488,7 @@ Jste si jistý? QPushButton - + OK OK @@ -2426,61 +2496,61 @@ Jste si jistý? SchematicViewer - + &Fit to Window &Přizpůsobit oknu - + &Focus on Current &Zaměřit na nynější předmět - + &Reorder Nodes &Přeuspořádat uzly - + &Reset Size &Obnovit výchozí velikost - - - + + + &Minimize Nodes &Zmenšit uzly - - - + + + &Maximize Nodes &Zvětšit uzly - + &New Pegbar &Nový pruh na kolíky - + &New Camera &Nová kamera - + &New Motion Path &Nová cesta pohybu - + &Swtich output port display mode &Přepnout režim zobrazení výstupní přípojky (port) - + &Toggle node icons &Přepnout ikony uzlů @@ -2519,9 +2589,8 @@ Jste si jistý? SpecialStyleChooserPage - Plain color - Normální barva + Normální barva @@ -2598,90 +2667,147 @@ Jste si jistý? StudioPaletteTreeViewer - + + The current palette %1 +in the studio palette has been modified. Do you want to save your changes? + + + + + Save + Uložit + + + + Discard + Zahodit + + + + Convert %1 to Studio Palette and Overwrite. +Are you sure ? + + + + Yes + Ano + + + No + Ne + + + This folder is not empty. Delete anyway? Tato složka je prázdná. Přesto smazat? - + + Convert + + + + + Replacing all selected palettes with the palette "%1". +Are you sure ? + + + + + Replacing the palette "%1" with the palette "%2". +Are you sure ? + + + + + Replace + Nahradit + + + New Palette Nová paleta - + New Folder Nová složka - + Delete Folder Smazat složku - - + + Load into Current Palette Nahrát do nynější palety - + Adjust Current Level to This Palette Přizpůsobit nynější úroveň této paletě - - + + Merge to Current Palette Sloučit do nynější palety - - + + Replace with Current Palette Nahradit nynější paletou - + Delete Palette Smazat paletu - + Convert to Studio Palette and Overwrite Převést do studiové palety a přepsat - + Search for Palettes Hledat palety - + + Delete Smazat - + the palette "%1" paleta "%1" - + the selected palettes vybraná paleta - + Move %1 to "%2". Are you sure ? Přesunout %1 do "%2". Jste si jistý? - + Move Přesunout - + + + + + Cancel Zrušit @@ -2689,135 +2815,135 @@ Jste si jistý? StyleEditor - + Wheel Barevné kolo - + HSV HSV - + Alpha Alfa - + RGB RGB - + Show or hide parts of the Color Page. Ukázat nebo skrýt části barevné strany. - + Toggle orientation of the Color Page. Přepnout natočeníi barevné strany. - + Auto Automaticky - + Apply Použít - + Apply changes to current style Použít změny na nynější styl - + Automatically update style changes Automaticky aktualizovat změny stylu - + Return To Previous Style Vrátit se k předchozímu stylu - + Current Style Nynější styl - + Generated Vytvořeno - + Trail Stopa - + Vector Brush Vektorový štětec - - - + + + Color Barva - + Texture Textura (povrch) - + Vector Vektor - + Raster Rastr - - + + Settings Nastavení - + No Style Selected Nevybrán žádný styl - + [CLEANUP] [VYČIŠTĚNÍ] - + [STUDIO] [STUDIO] - + [LEVEL] [ÚROVEŇ] - + Palette Paleta - + Style Editor - No Valid Style Selected Editor stylu - Nevybrán žádný platný styl @@ -2825,37 +2951,37 @@ Jste si jistý? StyleEditorGUI::ColorChannelControl - + R Č - + G Z - + B M - + A A - + H O - + S S - + V V @@ -2863,12 +2989,12 @@ Jste si jistý? StyleEditorGUI::SettingsPage - + Autopaint for Lines Automatické malování pro čáry - + Reset to default Vrátit na výchozí @@ -2912,6 +3038,19 @@ Jste si jistý? + SwatchViewer + + + Reset View + + + + + Fit To Window + + + + TMessageViewer @@ -2955,9 +3094,8 @@ Jste si jistý? VectorBrushStyleChooserPage - Plain color - Normální barva + Normální barva diff --git a/toonz/sources/translations/french/tnztools.ts b/toonz/sources/translations/french/tnztools.ts index e6ae44b..8999628 100644 --- a/toonz/sources/translations/french/tnztools.ts +++ b/toonz/sources/translations/french/tnztools.ts @@ -618,6 +618,20 @@ + FullColorFillTool + + Fill Depth + Profondeur de Remplissage + + + + HandToolOptionsBox + + Reset Position + + + + HookTool Snap @@ -1241,6 +1255,13 @@ Voulez-vous continuer? + RotateToolOptionsBox + + Reset Rotation + + + + RulerToolOptionsBox X: @@ -1639,4 +1660,11 @@ moved to the end of the first page of the palette. + + ZoomToolOptionsBox + + Reset Zoom + + + diff --git a/toonz/sources/translations/french/toonz.ts b/toonz/sources/translations/french/toonz.ts index 80c517d..b44bec7 100644 --- a/toonz/sources/translations/french/toonz.ts +++ b/toonz/sources/translations/french/toonz.ts @@ -109,11 +109,11 @@ ApplyMatchlinesCommand It is not possible to apply the match lines because no column was selected. - Il n'est pas possible d'appliquer les lignes de correspondance, car aucune colonne a été sélectionné. + Il n'est pas possible d'appliquer les lignes de correspondance, car aucune colonne a été sélectionné. It is not possible to apply the match lines because two columns have to be selected. - Il n'est pas possible d'appliquer les lignes de match parce que les deux colonnes doivent être sélectionnés. + Il n'est pas possible d'appliquer les lignes de match parce que les deux colonnes doivent être sélectionnés. @@ -1054,11 +1054,11 @@ Que voulez-vous faire? CloneLevelUndo::LevelNamePopup Clone Level - Cloner Niveau + Cloner Niveau Level Name: - Nom du Niveau: + Nom du Niveau: @@ -1235,6 +1235,10 @@ Que voulez-vous faire? (Flipped) + + :: Project: + + CommandBar @@ -1848,11 +1852,11 @@ contain the dpi information, then the current camera dpi will be used. ExportCurvePopup Export Curve - Exporter la Courbe + Exporter la Courbe Export - Exporter + Exporter @@ -2249,26 +2253,26 @@ contain the dpi information, then the current camera dpi will be used. FileData It is not possible to find the %1 level. - Il n'est pas possible de trouver le niveau %1. + Il n'est pas possible de trouver le niveau %1. There was an error copying %1 - Il y avait une erreur de copie de %1 + Il y avait une erreur de copie de %1 FileSelection Abort - Avorter + Avorter Collecting assets... - Recueil des éléments en cours. + Recueil des éléments en cours. Importing scenes... - Importation des scenes en cours. + Importation des scenes en cours. @@ -3161,6 +3165,10 @@ Please use the frame numbers for reference. Invalid data file. + + Drawing: + + LoadBoardPresetFilePopup @@ -3192,11 +3200,11 @@ Please use the frame numbers for reference. LoadCurvePopup Load Curve - Charger une Courbe + Charger une Courbe Load - Charger + Charger @@ -3339,15 +3347,15 @@ Please use the frame numbers for reference. LoadSettingsPopup Load Cleanup Settings - Charger les Paramètres de Nettoyage + Charger les Paramètres de Nettoyage Load - Charger + Charger %1 does not exist. - %1 n'existe pas. + %1 n'existe pas. @@ -3701,7 +3709,7 @@ Please use the frame numbers for reference. &Send Back - &Arrière-plan + &Arrière-plan &Send Backward @@ -5375,6 +5383,30 @@ Please use the frame numbers for reference. Flip Viewer Horizontally + + &Send to Back + + + + Reset Zoom + + + + Reset Rotation + + + + Reset Position + + + + Brush Tool - Eraser (Raster option) + + + + Brush Tool - Lock Alpha + + MatchlinesDialog @@ -5502,15 +5534,15 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m MergeCmappedCommand It is not possible to merge tlv columns because no column was selected. - Il n'est pas possible de fusionner les colonnes tlv car aucune colonne a été sélectionné. + Il n'est pas possible de fusionner les colonnes tlv car aucune colonne a été sélectionné. It is not possible to merge tlv columns because at least two columns have to be selected. - Il n'est pas possible de fusionner les colonnes tlv parce qu'au moins deux colonnes doivent être sélectionnés. + Il n'est pas possible de fusionner les colonnes tlv parce qu'au moins deux colonnes doivent être sélectionnés. Merging Tlv Levels... - Fusion des niveaux TLV en cours... + Fusion des niveaux TLV en cours... @@ -5539,16 +5571,20 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m Apply Appliquer + + Level %1 already exists! Are you sure you want to overwrite it? + + MergeColumnsCommand It is not possible to execute the merge column command because no column was selected. - Il n'est pas possible d'exécuter le commande de fusion de niveaux parce que pas de colonnes ont été sélectionné. + Il n'est pas possible d'exécuter le commande de fusion de niveaux parce que pas de colonnes ont été sélectionné. It is not possible to execute the merge column command because only one columns is selected. - Il n'est pas possible d'exécuter le commande de fusion de niveaux parce que seulement une colonnes a été sélectionné. + Il n'est pas possible d'exécuter le commande de fusion de niveaux parce que seulement une colonnes a été sélectionné. @@ -5632,7 +5668,7 @@ Que voulez-vous faire? - MyViewFinder + MyVideoWidget Camera is not available @@ -6024,16 +6060,16 @@ Que voulez-vous faire? Overwrite - Remplacer + Remplacer Skip - Sauter + Sauter File "%1" already exists. Do you want to overwrite it? - Le fichier "%1" existe déjà. + Le fichier "%1" existe déjà. Que voulez-vous faire? @@ -6346,6 +6382,10 @@ WARNING : Image size mismatch. The size of level with the same name is is %1 x % WARNING : Image size mismatch. The size of level with the same path is %1 x %2. + + Subcamera + + PencilTestSaveInFolderPopup @@ -7490,13 +7530,13 @@ in non alpha-enabled image format. Previewer The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | - Le nom du fichier ne peut pas être vide ou contenir aucun des caractères suivants: + Le nom du fichier ne peut pas être vide ou contenir aucun des caractères suivants: \ /: *? "| File %1 already exists. Do you want to overwrite it? - Le fichier %1 existe déjà. + Le fichier %1 existe déjà. Voulez-vous le remplacer? @@ -7660,6 +7700,38 @@ Voulez-vous le remplacer? Level Name: Nom du Niveau: + + Single Image + + + + Frames + Images + + + Columns + Colonnes + + + Flatten visible document layers into a single image. Layer styles are maintained. + + + + Load document layers as frames into a single xsheet column. + + + + Load document layers as xhseet columns. + + + + OK + OK + + + Cancel + Annuler + QApplication @@ -8596,11 +8668,11 @@ Voulez-vous l'écraser? Level - Niveau + Niveau already exists! Are you sure you want to overwrite it? - existe déjà! Êtes-vous sûr de vouloir l'écraser? + existe déjà! Êtes-vous sûr de vouloir l'écraser? It is not possible to merge tlv columns containing more than one level @@ -9363,6 +9435,240 @@ to use the duplicate command in the xsheet / timeline. Clear All Relative Onion Skin Markers + + Always Overwrite in This Scene + + + + + %1 more level(s) + + + + + Fx Settings + Paramètres de l'Effet Spécial + + + Save Curve + Enregistrer la Courbe + + + Load Curve + Charger une Courbe + + + Export Curve + Exporter la Courbe + + + Rendering frame %1 / %2 + RenderListener + + + + Precomputing %1 Frames + RenderListener + + + + of %1 + RenderListener + + + + Finalizing render, please wait. + RenderListener + + + + Aborting render... + RenderListener + + + + Building Schematic... + RenderCommand + + + + column + MultimediaProgressBar label (mode name) + + + + layer + MultimediaProgressBar label (mode name) + + + + Rendering %1%2, frame %3 / %4 + MultimediaProgressBar label + + + + Rendering %1 frames of %2 + MultimediaProgressBar + + + + %1 of %2 + MultimediaProgressBar - [totalframe] of [path] + + + + Aborting render... + MultimediaProgressBar + + + + It is not possible to write the output: the file + RenderCommand + + + + s are read only. + RenderCommand + + + + is read only. + RenderCommand + + + + Save Cleanup Settings + Enregistrer les Paramètres de Nettoyage + + + Load Cleanup Settings + Charger les Paramètres de Nettoyage + + + It is not possible to find the %1 level. + FileData + Il n'est pas possible de trouver le niveau %1. + + + There was an error copying %1 + FileData + Il y avait une erreur de copie de %1 + + + Clone Level + CloneLevelUndo::LevelNamePopup + Cloner Niveau + + + Level Name: + CloneLevelUndo::LevelNamePopup + Nom du Niveau: + + + Collecting assets... + Recueil des éléments en cours. + + + Abort + Avorter + + + Importing scenes... + Importation des scenes en cours. + + + It is not possible to execute the merge column command because no column was selected. + Il n'est pas possible d'exécuter le commande de fusion de niveaux parce que pas de colonnes ont été sélectionné. + + + It is not possible to execute the merge column command because only one columns is selected. + + + + It is not possible to apply the match lines because no column was selected. + Il n'est pas possible d'appliquer les lignes de correspondance, car aucune colonne a été sélectionné. + + + It is not possible to apply the match lines because two columns have to be selected. + Il n'est pas possible d'appliquer les lignes de match parce que les deux colonnes doivent être sélectionnés. + + + It is not possible to merge tlv columns because no column was selected. + Il n'est pas possible de fusionner les colonnes tlv car aucune colonne a été sélectionné. + + + It is not possible to merge tlv columns because at least two columns have to be selected. + Il n'est pas possible de fusionner les colonnes tlv parce qu'au moins deux colonnes doivent être sélectionnés. + + + Merging Tlv Levels... + Fusion des niveaux TLV en cours... + + + Save Previewed Images + Enregistrer les Images de Preview + + + The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | + + + + Unsopporter raster format, cannot save + + + + Cannot create %1 : %2 + Previewer warning %1:path %2:message + + + + Cannot create %1 + Previewer warning %1:path + + + + Saved %1 frames out of %2 in %3 + Previewer %1:savedframes %2:framecount %3:filepath + Enregistré %1 images sur %2 dans %3 + + + Canceled! + Previewer + + + + No frame to save! + + + + Already saving! + + + + Warning! + OverwriteDialog + Alerte! + + + Overwrite + OverwriteDialog + Remplacer + + + Skip + OverwriteDialog + Sauter + + + File "%1" already exists. +Do you want to overwrite it? + OverwriteDialog + Le fichier "%1" existe déjà. +Que voulez-vous faire? + + + %1 does not exist. + + ReframePopup @@ -9467,13 +9773,6 @@ Les fichiers audio ne seront pas inclus dans le clip rendu. - RenderListener - - Finalizing render, please wait. - - - - RenumberPopup Renumber @@ -10360,11 +10659,11 @@ S'il vous plaît commettre ou annuler les modifications avant.SaveCurvePopup Save Curve - Enregistrer la Courbe + Enregistrer la Courbe Save - Enregistrer + Enregistrer @@ -10439,11 +10738,11 @@ S'il vous plaît commettre ou annuler les modifications avant.SavePreviewedPopup Save Previewed Images - Enregistrer les Images de Preview + Enregistrer les Images de Preview Save - Enregistrer + Enregistrer @@ -10461,11 +10760,11 @@ S'il vous plaît commettre ou annuler les modifications avant.SaveSettingsPopup Save Cleanup Settings - Enregistrer les Paramètres de Nettoyage + Enregistrer les Paramètres de Nettoyage Save - Enregistrer + Enregistrer @@ -10686,6 +10985,14 @@ S'il vous plaît commettre ou annuler les modifications avant.Select %1 + + Flip View + + + + Reset View + Réinitialiser l'Affichage + SceneViewerPanel @@ -10749,6 +11056,10 @@ S'il vous plaît commettre ou annuler les modifications avant. (Flipped) + + :: Project: + + SeparateColorsPopup @@ -11249,18 +11560,10 @@ Attribuer à '3%'? - Choose Project - - - Create a New Scene - Open Scene - - - Scene Name: @@ -11401,6 +11704,18 @@ Possibly the preset file has been corrupted The height must be greater than zero. + + Current Project + + + + Recent Scenes [Project] + + + + The selected scene project '%1' is not in the Current Project list and may not open automatically. + + SubSheetBar @@ -12431,5 +12746,13 @@ Hold F3 Key on the Viewer to Show This Frame Only columns + + :: Project: + + + + Frame + + diff --git a/toonz/sources/translations/french/toonzqt.ts b/toonz/sources/translations/french/toonzqt.ts index 87b0f8e..6a7b250 100644 --- a/toonz/sources/translations/french/toonzqt.ts +++ b/toonz/sources/translations/french/toonzqt.ts @@ -289,11 +289,11 @@ Possibly the preset file has been corrupted DVGui OK - OK + OK Cancel - Annuler + Annuler @@ -1019,6 +1019,30 @@ Possibly the preset file has been corrupted Step 4 Pas 4 + + Activate Cycle + Activer le Cycle + + + Deactivate Cycle + Deactiver le Cycle + + + Show Inbetween Values + + + + Hide Inbetween Values + + + + Change Interpolation + + + + Change Step + + FunctionToolbar @@ -1372,13 +1396,6 @@ Sélectionnez les nœuds FX et les liens connexes avant de copier ou couper la s - MyPaintBrushStyleChooserPage - - Plain color - - - - NewWordDialog OK @@ -1587,6 +1604,17 @@ Sélectionnez les nœuds FX et les liens connexes avant de copier ou couper la s + PlaneViewer + + Reset View + + + + Fit To Window + + + + PointParamField Y: @@ -1666,19 +1694,19 @@ Sélectionnez les nœuds FX et les liens connexes avant de copier ou couper la s Save - Enregistrer + Enregistrer Discard - Jeter + Jeter Yes - Oui + Oui No - Non + Non Stage Schematic @@ -2000,10 +2028,6 @@ Are you sure? - Replace - - - Modify Fx Param : %1 @@ -2125,9 +2149,37 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< - OpenToonz 1.2 + Custom Texture + TextureStyleChooserPage + + + + Current Frame: + + + + File History + + + + Plain color + VectorBrushStyleChooserPage + + + + Plain color + MyPaintBrushStyleChooserPage + + + + Plain color + SpecialStyleChooserPage + + OK + OK + QPushButton @@ -2224,7 +2276,7 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< SpecialStyleChooserPage Plain color - Couleur plan + Couleur plan @@ -2358,6 +2410,50 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< Cancel Annuler + + The current palette %1 +in the studio palette has been modified. Do you want to save your changes? + + + + Save + Enregistrer + + + Discard + Jeter + + + Convert %1 to Studio Palette and Overwrite. +Are you sure ? + + + + Yes + Oui + + + No + Non + + + Replacing all selected palettes with the palette "%1". +Are you sure ? + + + + Replacing the palette "%1" with the palette "%2". +Are you sure ? + + + + Replace + + + + Convert + + StudioPaletteViewer @@ -2575,6 +2671,17 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< + SwatchViewer + + Reset View + + + + Fit To Window + + + + TMessageViewer Errors @@ -2623,7 +2730,7 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< VectorBrushStyleChooserPage Plain color - Il est impossible de supprimer %1. + Il est impossible de supprimer %1. diff --git a/toonz/sources/translations/german/tnztools.ts b/toonz/sources/translations/german/tnztools.ts index a770247..0ac451d 100644 --- a/toonz/sources/translations/german/tnztools.ts +++ b/toonz/sources/translations/german/tnztools.ts @@ -622,6 +622,20 @@ + FullColorFillTool + + Fill Depth + Fülltiefe + + + + HandToolOptionsBox + + Reset Position + + + + HookTool Snap @@ -1244,6 +1258,13 @@ Möchten Sie fortfahren? + RotateToolOptionsBox + + Reset Rotation + + + + RulerToolOptionsBox X: @@ -1642,4 +1663,11 @@ moved to the end of the first page of the palette. + + ZoomToolOptionsBox + + Reset Zoom + + + diff --git a/toonz/sources/translations/german/toonz.ts b/toonz/sources/translations/german/toonz.ts index f829f7b..3806b31 100644 --- a/toonz/sources/translations/german/toonz.ts +++ b/toonz/sources/translations/german/toonz.ts @@ -109,11 +109,11 @@ ApplyMatchlinesCommand It is not possible to apply the match lines because no column was selected. - Es ist nicht möglich die Anpassungslinien anzuweden, da keine Spalte gewählt wurde. + Es ist nicht möglich die Anpassungslinien anzuweden, da keine Spalte gewählt wurde. It is not possible to apply the match lines because two columns have to be selected. - Es ist nicht möglich die Anpassungslinien anzuwenden, da zwei Spalten gewählt sein müssen. + Es ist nicht möglich die Anpassungslinien anzuwenden, da zwei Spalten gewählt sein müssen. @@ -1058,11 +1058,11 @@ What do you want to do? CloneLevelUndo::LevelNamePopup Clone Level - Ebene duplizieren + Ebene duplizieren Level Name: - Name der Ebene: + Name der Ebene: @@ -1239,6 +1239,10 @@ Was möchten Sie tun? (Flipped) + + :: Project: + + CommandBar @@ -1860,11 +1864,11 @@ contain the dpi information, then the current camera dpi will be used. ExportCurvePopup Export Curve - Kurve exportieren + Kurve exportieren Export - Exportieren + Exportieren @@ -2331,26 +2335,26 @@ contain the dpi information, then the current camera dpi will be used. FileData It is not possible to find the %1 level. - Ebene %1 kann nicht gefunden werden. + Ebene %1 kann nicht gefunden werden. There was an error copying %1 - Beim kopieren von %1 trat ein Fehler ein. + Beim kopieren von %1 trat ein Fehler ein. FileSelection Abort - Unterbrechen + Unterbrechen Collecting assets... - Sammle Material... + Sammle Material... Importing scenes... - Importiere Szenen... + Importiere Szenen... @@ -3294,6 +3298,10 @@ Please use the frame numbers for reference. Invalid data file. + + Drawing: + + LoadBoardPresetFilePopup @@ -3325,11 +3333,11 @@ Please use the frame numbers for reference. LoadCurvePopup Load Curve - Effekt-Parameter importieren + Effekt-Parameter importieren Load - Laden + Laden @@ -3472,15 +3480,15 @@ Please use the frame numbers for reference. LoadSettingsPopup Load Cleanup Settings - Säuberungs-Einstellungen laden + Säuberungs-Einstellungen laden Load - Laden + Laden %1 does not exist. - %1 existiert nicht. + %1 existiert nicht. @@ -3834,7 +3842,7 @@ Please use the frame numbers for reference. &Send Back - Nach Hinten schicken (&S) + Nach Hinten schicken (&S) &Send Backward @@ -5532,6 +5540,30 @@ Please use the frame numbers for reference. Flip Viewer Horizontally + + &Send to Back + + + + Reset Zoom + + + + Reset Rotation + + + + Reset Position + + + + Brush Tool - Eraser (Raster option) + + + + Brush Tool - Lock Alpha + + MatchlinesDialog @@ -5661,15 +5693,15 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m MergeCmappedCommand It is not possible to merge tlv columns because no column was selected. - TLV-Spalten können nicht vereint werden, da keine Spalten gewählt wurden. + TLV-Spalten können nicht vereint werden, da keine Spalten gewählt wurden. It is not possible to merge tlv columns because at least two columns have to be selected. - TLV-Spalten können nicht vereint werden, da mindestens zwei Spalten gewählt werden müssen. + TLV-Spalten können nicht vereint werden, da mindestens zwei Spalten gewählt werden müssen. Merging Tlv Levels... - TLV-Ebenen weden vereint... + TLV-Ebenen weden vereint... @@ -5698,16 +5730,20 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m Merge Tlv Levels TLV-Ebenen vereinen + + Level %1 already exists! Are you sure you want to overwrite it? + + MergeColumnsCommand It is not possible to execute the merge column command because no column was selected. - Es können keine Spalten vereint werden, da keine Spalten gewählt wurden. + Es können keine Spalten vereint werden, da keine Spalten gewählt wurden. It is not possible to execute the merge column command because only one columns is selected. - Es können keine Spalten vereint werden, da nur eine Spalte gewählt wurde. + Es können keine Spalten vereint werden, da nur eine Spalte gewählt wurde. @@ -5792,7 +5828,7 @@ Was möchten Sie tun? - MyViewFinder + MyVideoWidget Camera is not available @@ -6189,16 +6225,16 @@ Was möchten Sie tun? Overwrite - Überschreiben + Überschreiben Skip - Überspringen + Überspringen File "%1" already exists. Do you want to overwrite it? - Datei "%1"existiert bereits. + Datei "%1"existiert bereits. Überschreiben? @@ -6501,6 +6537,10 @@ WARNING : Image size mismatch. The size of level with the same name is is %1 x % WARNING : Image size mismatch. The size of level with the same path is %1 x %2. + + Subcamera + + PencilTestSaveInFolderPopup @@ -7716,12 +7756,12 @@ in non alpha-enabled image format. Previewer The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | - Der Dateiname darf nicht leer sein oder folgende Zeichen enthalten: (new line) \ / : * ? " | + Der Dateiname darf nicht leer sein oder folgende Zeichen enthalten: (new line) \ / : * ? " | File %1 already exists. Do you want to overwrite it? - Datei %1 existiert bereits. + Datei %1 existiert bereits. Möchte Sie sie überschreiben? @@ -7892,6 +7932,38 @@ Möchte Sie sie überschreiben? Level Name: Name der Ebene: + + Single Image + + + + Frames + Frame + + + Columns + Spalten + + + Flatten visible document layers into a single image. Layer styles are maintained. + + + + Load document layers as frames into a single xsheet column. + + + + Load document layers as xhseet columns. + + + + OK + + + + Cancel + Abbrechen + QApplication @@ -8834,11 +8906,11 @@ Möchten Sie sie überschreiben? Level - Ebene + Ebene already exists! Are you sure you want to overwrite it? - existiert bereits! Sind Sie sich sicher, dass Sie überschreiben möchten? + existiert bereits! Sind Sie sich sicher, dass Sie überschreiben möchten? It is not possible to merge tlv columns containing more than one level @@ -9652,6 +9724,240 @@ to use the duplicate command in the xsheet / timeline. Clear All Relative Onion Skin Markers + + Always Overwrite in This Scene + + + + + %1 more level(s) + + + + + Fx Settings + Effekt-Einstellungen + + + Save Curve + Die Kurve speichern + + + Load Curve + Effekt-Parameter importieren + + + Export Curve + Kurve exportieren + + + Rendering frame %1 / %2 + RenderListener + + + + Precomputing %1 Frames + RenderListener + + + + of %1 + RenderListener + + + + Finalizing render, please wait. + RenderListener + + + + Aborting render... + RenderListener + + + + Building Schematic... + RenderCommand + + + + column + MultimediaProgressBar label (mode name) + + + + layer + MultimediaProgressBar label (mode name) + + + + Rendering %1%2, frame %3 / %4 + MultimediaProgressBar label + + + + Rendering %1 frames of %2 + MultimediaProgressBar + + + + %1 of %2 + MultimediaProgressBar - [totalframe] of [path] + + + + Aborting render... + MultimediaProgressBar + + + + It is not possible to write the output: the file + RenderCommand + + + + s are read only. + RenderCommand + + + + is read only. + RenderCommand + + + + Save Cleanup Settings + Säuberungs-Einstellungen speichern + + + Load Cleanup Settings + Säuberungs-Einstellungen laden + + + It is not possible to find the %1 level. + FileData + Ebene %1 kann nicht gefunden werden. + + + There was an error copying %1 + FileData + Beim kopieren von %1 trat ein Fehler ein. + + + Clone Level + CloneLevelUndo::LevelNamePopup + Ebene duplizieren + + + Level Name: + CloneLevelUndo::LevelNamePopup + Name der Ebene: + + + Collecting assets... + Sammle Material... + + + Abort + Unterbrechen + + + Importing scenes... + Importiere Szenen... + + + It is not possible to execute the merge column command because no column was selected. + Es können keine Spalten vereint werden, da keine Spalten gewählt wurden. + + + It is not possible to execute the merge column command because only one columns is selected. + + + + It is not possible to apply the match lines because no column was selected. + Es ist nicht möglich die Anpassungslinien anzuweden, da keine Spalte gewählt wurde. + + + It is not possible to apply the match lines because two columns have to be selected. + Es ist nicht möglich die Anpassungslinien anzuwenden, da zwei Spalten gewählt sein müssen. + + + It is not possible to merge tlv columns because no column was selected. + TLV-Spalten können nicht vereint werden, da keine Spalten gewählt wurden. + + + It is not possible to merge tlv columns because at least two columns have to be selected. + TLV-Spalten können nicht vereint werden, da mindestens zwei Spalten gewählt werden müssen. + + + Merging Tlv Levels... + TLV-Ebenen weden vereint... + + + Save Previewed Images + Vorgeschaute Bilder speichern + + + The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | + + + + Unsopporter raster format, cannot save + + + + Cannot create %1 : %2 + Previewer warning %1:path %2:message + + + + Cannot create %1 + Previewer warning %1:path + + + + Saved %1 frames out of %2 in %3 + Previewer %1:savedframes %2:framecount %3:filepath + %1 Frames von %2 wurden in %3 gespeichert + + + Canceled! + Previewer + + + + No frame to save! + + + + Already saving! + + + + Warning! + OverwriteDialog + + + + Overwrite + OverwriteDialog + Überschreiben + + + Skip + OverwriteDialog + Überspringen + + + File "%1" already exists. +Do you want to overwrite it? + OverwriteDialog + Datei "%1"existiert bereits. +Überschreiben? + + + %1 does not exist. + %1 existiert nicht. + ReframePopup @@ -9756,13 +10062,6 @@ Das Ergebnis des Outputs könnte anders sein als erwartet. Was möchten Sie tun? - RenderListener - - Finalizing render, please wait. - - - - RenumberPopup Renumber @@ -10662,11 +10961,11 @@ Bitte tragen Sie die Änderungen ein oder setzen sie zurück. SaveCurvePopup Save Curve - Die Kurve speichern + Die Kurve speichern Save - Speichern + Speichern @@ -10745,11 +11044,11 @@ Bitte tragen Sie die Änderungen ein oder setzen sie zurück. SavePreviewedPopup Save Previewed Images - Vorgeschaute Bilder speichern + Vorgeschaute Bilder speichern Save - Speichern + Speichern @@ -10767,11 +11066,11 @@ Bitte tragen Sie die Änderungen ein oder setzen sie zurück. SaveSettingsPopup Save Cleanup Settings - Säuberungs-Einstellungen speichern + Säuberungs-Einstellungen speichern Save - Speichern + Speichern @@ -10992,6 +11291,14 @@ Bitte tragen Sie die Änderungen ein oder setzen sie zurück. Select %1 + + Flip View + + + + Reset View + + SceneViewerPanel @@ -11055,6 +11362,10 @@ Bitte tragen Sie die Änderungen ein oder setzen sie zurück. (Flipped) + + :: Project: + + SeparateColorsPopup @@ -11555,18 +11866,10 @@ Zu '%3' zuweisen? - Choose Project - - - Create a New Scene - Open Scene - - - Scene Name: @@ -11707,6 +12010,18 @@ Possibly the preset file has been corrupted The height must be greater than zero. + + Current Project + + + + Recent Scenes [Project] + + + + The selected scene project '%1' is not in the Current Project list and may not open automatically. + + SubSheetBar @@ -12751,5 +13066,13 @@ Hold F3 Key on the Viewer to Show This Frame Only columns Spalte + + :: Project: + + + + Frame + + diff --git a/toonz/sources/translations/german/toonzqt.ts b/toonz/sources/translations/german/toonzqt.ts index 8023f9d..c92b163 100644 --- a/toonz/sources/translations/german/toonzqt.ts +++ b/toonz/sources/translations/german/toonzqt.ts @@ -296,11 +296,7 @@ Possibly the preset file has been corrupted Cancel - Abbrechen - - - OK - + Abbrechen @@ -1026,6 +1022,30 @@ Possibly the preset file has been corrupted Step 4 Schritt 4 + + Activate Cycle + Zyklus aktivieren + + + Deactivate Cycle + Zyklus deaktivieren + + + Show Inbetween Values + + + + Hide Inbetween Values + + + + Change Interpolation + + + + Change Step + + FunctionToolbar @@ -1390,7 +1410,7 @@ Wählen Sie Effekt-Nodes und verwandte Links, die Sie einfügen möchten, bevor MyPaintBrushStyleChooserPage Plain color - Normale Farbe + Normale Farbe @@ -1614,6 +1634,17 @@ Wählen Sie Effekt-Nodes und verwandte Links, die Sie einfügen möchten, bevor + PlaneViewer + + Reset View + + + + Fit To Window + + + + PointParamField Y: @@ -1689,19 +1720,19 @@ Wählen Sie Effekt-Nodes und verwandte Links, die Sie einfügen möchten, bevor Save - Speichern + Speichern Discard - Änderungen verwerfen + Änderungen verwerfen Yes - Ja + Ja No - Nein + Nein Stage Schematic @@ -2030,7 +2061,7 @@ Sind Sie sicher? Replace - Ersetzen + Ersetzen Modify Fx Param : %1 @@ -2168,7 +2199,35 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< - OpenToonz 1.2 + Custom Texture + TextureStyleChooserPage + + + + Current Frame: + + + + File History + + + + Plain color + VectorBrushStyleChooserPage + Normale Farbe + + + Plain color + MyPaintBrushStyleChooserPage + Normale Farbe + + + Plain color + SpecialStyleChooserPage + Normale Farbe + + + OK @@ -2271,7 +2330,7 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< SpecialStyleChooserPage Plain color - Normale Farbe + Normale Farbe @@ -2405,6 +2464,50 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< Cancel Abbrechen + + The current palette %1 +in the studio palette has been modified. Do you want to save your changes? + + + + Save + Speichern + + + Discard + Änderungen verwerfen + + + Convert %1 to Studio Palette and Overwrite. +Are you sure ? + + + + Yes + Ja + + + No + Nein + + + Replacing all selected palettes with the palette "%1". +Are you sure ? + + + + Replacing the palette "%1" with the palette "%2". +Are you sure ? + + + + Replace + Ersetzen + + + Convert + + StudioPaletteViewer @@ -2655,6 +2758,17 @@ anwenden + SwatchViewer + + Reset View + + + + Fit To Window + + + + TMessageViewer Errors @@ -2703,7 +2817,7 @@ anwenden VectorBrushStyleChooserPage Plain color - Normale Farbe + Normale Farbe diff --git a/toonz/sources/translations/italian/tnztools.ts b/toonz/sources/translations/italian/tnztools.ts index 5bb2860..9be3feb 100644 --- a/toonz/sources/translations/italian/tnztools.ts +++ b/toonz/sources/translations/italian/tnztools.ts @@ -618,6 +618,20 @@ + FullColorFillTool + + Fill Depth + Profondità di Riempimento + + + + HandToolOptionsBox + + Reset Position + + + + HookTool Snap @@ -1239,6 +1253,13 @@ Procedere? + RotateToolOptionsBox + + Reset Rotation + + + + RulerToolOptionsBox X: @@ -1637,4 +1658,11 @@ moved to the end of the first page of the palette. + + ZoomToolOptionsBox + + Reset Zoom + + + diff --git a/toonz/sources/translations/italian/toonz.ts b/toonz/sources/translations/italian/toonz.ts index 42484d6..531523c 100644 --- a/toonz/sources/translations/italian/toonz.ts +++ b/toonz/sources/translations/italian/toonz.ts @@ -109,11 +109,11 @@ ApplyMatchlinesCommand It is not possible to apply the match lines because no column was selected. - Impossibile applicare le match lines poichè non è stata selezionata nessuna colonna. + Impossibile applicare le match lines poichè non è stata selezionata nessuna colonna. It is not possible to apply the match lines because two columns have to be selected. - Impossibile applicare le match lines poichè devono essere selezionate due colonne. + Impossibile applicare le match lines poichè devono essere selezionate due colonne. @@ -1053,11 +1053,11 @@ Cosa vuoi fare? CloneLevelUndo::LevelNamePopup Clone Level - Clona Livello + Clona Livello Level Name: - Nome del Livello: + Nome del Livello: @@ -1234,6 +1234,10 @@ Cosa vuoi fare? (Flipped) + + :: Project: + + CommandBar @@ -1849,11 +1853,11 @@ contain the dpi information, then the current camera dpi will be used. ExportCurvePopup Export Curve - Esporta la Curva + Esporta la Curva Export - Esporta + Esporta @@ -2251,26 +2255,26 @@ contain the dpi information, then the current camera dpi will be used. FileData It is not possible to find the %1 level. - Impossibile trovare il livello %1. + Impossibile trovare il livello %1. There was an error copying %1 - Errore durante la copia di %1 + Errore durante la copia di %1 FileSelection Abort - Interrompi + Interrompi Collecting assets... - Recupero componenti in corso + Recupero componenti in corso Importing scenes... - Importazione delle scene in corso + Importazione delle scene in corso @@ -3163,6 +3167,10 @@ Please use the frame numbers for reference. Invalid data file. + + Drawing: + + LoadBoardPresetFilePopup @@ -3194,11 +3202,11 @@ Please use the frame numbers for reference. LoadCurvePopup Load Curve - Carica Curva + Carica Curva Load - Carica + Carica @@ -3341,15 +3349,15 @@ Please use the frame numbers for reference. LoadSettingsPopup Load Cleanup Settings - Carica le Impostazioni per il Cleanup + Carica le Impostazioni per il Cleanup Load - Carica + Carica %1 does not exist. - %1 non esiste. + %1 non esiste. @@ -3703,7 +3711,7 @@ Please use the frame numbers for reference. &Send Back - &Porta Sotto + &Porta Sotto &Send Backward @@ -5378,6 +5386,30 @@ Decrementa lo spessore minimo del pennello Flip Viewer Horizontally + + &Send to Back + + + + Reset Zoom + + + + Reset Rotation + + + + Reset Position + + + + Brush Tool - Eraser (Raster option) + + + + Brush Tool - Lock Alpha + + MatchlinesDialog @@ -5505,15 +5537,15 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m MergeCmappedCommand It is not possible to merge tlv columns because no column was selected. - Non è possibile fondere le colonne perchè non ci sono colonne selezionate. + Non è possibile fondere le colonne perchè non ci sono colonne selezionate. It is not possible to merge tlv columns because at least two columns have to be selected. - Non è possibile fondere le colonne perchè devono essere selezionate due colonne. + Non è possibile fondere le colonne perchè devono essere selezionate due colonne. Merging Tlv Levels... - Fusiome livelli Tlv in corso... + Fusiome livelli Tlv in corso... @@ -5542,16 +5574,20 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m Apply Applica + + Level %1 already exists! Are you sure you want to overwrite it? + + MergeColumnsCommand It is not possible to execute the merge column command because no column was selected. - Impossibile eseguire il comando unisci colonne poichè nessuna colonna è stata selezionata. + Impossibile eseguire il comando unisci colonne poichè nessuna colonna è stata selezionata. It is not possible to execute the merge column command because only one columns is selected. - Impossibile eseguire il comando unisci colonne poichè è stata selezionata una sola colonna. + Impossibile eseguire il comando unisci colonne poichè è stata selezionata una sola colonna. @@ -5635,7 +5671,7 @@ Cosa vuoi fare? - MyViewFinder + MyVideoWidget Camera is not available @@ -6025,16 +6061,16 @@ Cosa vuoi fare? Overwrite - Sovrascrivi + Sovrascrivi Skip - Salta + Salta File "%1" already exists. Do you want to overwrite it? - Il file "%1" esiste già. + Il file "%1" esiste già. Lo vuoi sovrascrivere? @@ -6347,6 +6383,10 @@ WARNING : Image size mismatch. The size of level with the same name is is %1 x % WARNING : Image size mismatch. The size of level with the same path is %1 x %2. + + Subcamera + + PencilTestSaveInFolderPopup @@ -7491,13 +7531,13 @@ in non alpha-enabled image format. Previewer The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | - Il nome del file non può essere vuoto o contenere i seguenti caratteri: + Il nome del file non può essere vuoto o contenere i seguenti caratteri: \ / : * ? " | File %1 already exists. Do you want to overwrite it? - Il file %1 esiste già. + Il file %1 esiste già. Vuoi sovrascriverlo? @@ -7661,6 +7701,38 @@ Vuoi sovrascriverlo? Level Name: Nome del Livello: + + Single Image + + + + Frames + Fotogrammi + + + Columns + Colonne + + + Flatten visible document layers into a single image. Layer styles are maintained. + + + + Load document layers as frames into a single xsheet column. + + + + Load document layers as xhseet columns. + + + + OK + OK + + + Cancel + Annullare + QApplication @@ -8600,11 +8672,11 @@ Vuoi sovrascriverlo? Level - Livello + Livello already exists! Are you sure you want to overwrite it? - esiste già; lo vuoi sovrascrivere? + esiste già; lo vuoi sovrascrivere? It is not possible to merge tlv columns containing more than one level @@ -9364,6 +9436,240 @@ to use the duplicate command in the xsheet / timeline. Clear All Relative Onion Skin Markers + + Always Overwrite in This Scene + + + + + %1 more level(s) + + + + + Fx Settings + Impostazioni dell'Effetto + + + Save Curve + Salva la Curva + + + Load Curve + Carica Curva + + + Export Curve + Esporta la Curva + + + Rendering frame %1 / %2 + RenderListener + + + + Precomputing %1 Frames + RenderListener + + + + of %1 + RenderListener + + + + Finalizing render, please wait. + RenderListener + + + + Aborting render... + RenderListener + + + + Building Schematic... + RenderCommand + + + + column + MultimediaProgressBar label (mode name) + + + + layer + MultimediaProgressBar label (mode name) + + + + Rendering %1%2, frame %3 / %4 + MultimediaProgressBar label + + + + Rendering %1 frames of %2 + MultimediaProgressBar + + + + %1 of %2 + MultimediaProgressBar - [totalframe] of [path] + + + + Aborting render... + MultimediaProgressBar + + + + It is not possible to write the output: the file + RenderCommand + + + + s are read only. + RenderCommand + + + + is read only. + RenderCommand + + + + Save Cleanup Settings + Salve i Parametri di Cleanup + + + Load Cleanup Settings + Carica le Impostazioni per il Cleanup + + + It is not possible to find the %1 level. + FileData + Impossibile trovare il livello %1. + + + There was an error copying %1 + FileData + Errore durante la copia di %1 + + + Clone Level + CloneLevelUndo::LevelNamePopup + Clona Livello + + + Level Name: + CloneLevelUndo::LevelNamePopup + Nome del Livello: + + + Collecting assets... + Recupero componenti in corso + + + Abort + + + + Importing scenes... + Importazione delle scene in corso + + + It is not possible to execute the merge column command because no column was selected. + Impossibile eseguire il comando unisci colonne poichè nessuna colonna è stata selezionata. + + + It is not possible to execute the merge column command because only one columns is selected. + + + + It is not possible to apply the match lines because no column was selected. + Impossibile applicare le match lines poichè non è stata selezionata nessuna colonna. + + + It is not possible to apply the match lines because two columns have to be selected. + Impossibile applicare le match lines poichè devono essere selezionate due colonne. + + + It is not possible to merge tlv columns because no column was selected. + Non è possibile fondere le colonne perchè non ci sono colonne selezionate. + + + It is not possible to merge tlv columns because at least two columns have to be selected. + Non è possibile fondere le colonne perchè devono essere selezionate due colonne. + + + Merging Tlv Levels... + Fusiome livelli Tlv in corso... + + + Save Previewed Images + Salva l'Anteprima + + + The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | + + + + Unsopporter raster format, cannot save + + + + Cannot create %1 : %2 + Previewer warning %1:path %2:message + + + + Cannot create %1 + Previewer warning %1:path + + + + Saved %1 frames out of %2 in %3 + Previewer %1:savedframes %2:framecount %3:filepath + Sono stati salvati %1 fotogrammi su %2 in %3 + + + Canceled! + Previewer + + + + No frame to save! + + + + Already saving! + + + + Warning! + OverwriteDialog + Attenzione! + + + Overwrite + OverwriteDialog + Sovrascrivi + + + Skip + OverwriteDialog + Salta + + + File "%1" already exists. +Do you want to overwrite it? + OverwriteDialog + Il file "%1" esiste già. +Lo vuoi sovrascrivere? + + + %1 does not exist. + %1 non esiste. + ReframePopup @@ -9468,13 +9774,6 @@ Il risultato del render può essere diverso dal previsto. Cosa vuoi fare? - RenderListener - - Finalizing render, please wait. - - - - RenumberPopup Renumber @@ -10361,11 +10660,11 @@ Per favore sottometti o ripristina i cambiamenti prima di proseguire.SaveCurvePopup Save Curve - Salva la Curva + Salva la Curva Save - Salva + Salva @@ -10440,11 +10739,11 @@ Per favore sottometti o ripristina i cambiamenti prima di proseguire.SavePreviewedPopup Save Previewed Images - Salva l'Anteprima + Salva l'Anteprima Save - Salva + Salva @@ -10462,11 +10761,11 @@ Per favore sottometti o ripristina i cambiamenti prima di proseguire.SaveSettingsPopup Save Cleanup Settings - Salve i Parametri di Cleanup + Salve i Parametri di Cleanup Save - Salva + Salva @@ -10687,6 +10986,14 @@ Per favore sottometti o ripristina i cambiamenti prima di proseguire.Select %1 + + Flip View + + + + Reset View + + SceneViewerPanel @@ -10750,6 +11057,10 @@ Per favore sottometti o ripristina i cambiamenti prima di proseguire. (Flipped) + + :: Project: + + SeparateColorsPopup @@ -11250,18 +11561,10 @@ Lo assegno a %3? - Choose Project - - - Create a New Scene - Open Scene - - - Scene Name: @@ -11402,6 +11705,18 @@ Possibly the preset file has been corrupted The height must be greater than zero. + + Current Project + + + + Recent Scenes [Project] + + + + The selected scene project '%1' is not in the Current Project list and may not open automatically. + + SubSheetBar @@ -12432,5 +12747,13 @@ Hold F3 Key on the Viewer to Show This Frame Only columns + + :: Project: + + + + Frame + + diff --git a/toonz/sources/translations/italian/toonzqt.ts b/toonz/sources/translations/italian/toonzqt.ts index eba0a53..cfe3267 100644 --- a/toonz/sources/translations/italian/toonzqt.ts +++ b/toonz/sources/translations/italian/toonzqt.ts @@ -289,11 +289,11 @@ E' possibile che il file sia corrotto. DVGui OK - OK + OK Cancel - Annulla + Annulla @@ -1019,6 +1019,30 @@ E' possibile che il file sia corrotto. Step 4 Passo 4 + + Activate Cycle + Attiva il Ciclo + + + Deactivate Cycle + Disattiva il Ciclo + + + Show Inbetween Values + + + + Hide Inbetween Values + + + + Change Interpolation + + + + Change Step + + FunctionToolbar @@ -1375,7 +1399,7 @@ Seleziona i nodi Effetto ed i relativi collegamenti prima di copiare o tagliare MyPaintBrushStyleChooserPage Plain color - Colore Piatto + Colore Piatto @@ -1587,6 +1611,17 @@ Seleziona i nodi Effetto ed i relativi collegamenti prima di copiare o tagliare + PlaneViewer + + Reset View + + + + Fit To Window + + + + PointParamField Y: @@ -1665,19 +1700,19 @@ Seleziona i nodi Effetto ed i relativi collegamenti prima di copiare o tagliare Save - Salva + Salva Discard - Scarta + Scarta Yes - + No - No + No Stage Schematic @@ -1999,10 +2034,6 @@ Are you sure? - Replace - - - Modify Fx Param : %1 @@ -2124,9 +2155,37 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< - OpenToonz 1.2 + Custom Texture + TextureStyleChooserPage + + + + Current Frame: + + + + File History + + Plain color + VectorBrushStyleChooserPage + Colore Piatto + + + Plain color + MyPaintBrushStyleChooserPage + Colore Piatto + + + Plain color + SpecialStyleChooserPage + Colore Piatto + + + OK + OK + QPushButton @@ -2223,7 +2282,7 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< SpecialStyleChooserPage Plain color - Colore Piatto + Colore Piatto @@ -2357,6 +2416,50 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< Cancel Annulla + + The current palette %1 +in the studio palette has been modified. Do you want to save your changes? + + + + Save + Salva + + + Discard + Scarta + + + Convert %1 to Studio Palette and Overwrite. +Are you sure ? + + + + Yes + + + + No + No + + + Replacing all selected palettes with the palette "%1". +Are you sure ? + + + + Replacing the palette "%1" with the palette "%2". +Are you sure ? + + + + Replace + + + + Convert + + StudioPaletteViewer @@ -2574,6 +2677,17 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< + SwatchViewer + + Reset View + + + + Fit To Window + + + + TMessageViewer Errors @@ -2622,7 +2736,7 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< VectorBrushStyleChooserPage Plain color - Colore Piatto + Colore Piatto diff --git a/toonz/sources/translations/japanese/tnztools.ts b/toonz/sources/translations/japanese/tnztools.ts index 8681364..2262f87 100644 --- a/toonz/sources/translations/japanese/tnztools.ts +++ b/toonz/sources/translations/japanese/tnztools.ts @@ -638,6 +638,20 @@ + FullColorFillTool + + Fill Depth + 塗りの浸透度 + + + + HandToolOptionsBox + + Reset Position + 表示位置をリセット + + + HookTool Snap @@ -1260,6 +1274,13 @@ Do you want to proceed? + RotateToolOptionsBox + + Reset Rotation + 回転をリセット + + + RulerToolOptionsBox X: @@ -1659,4 +1680,11 @@ moved to the end of the first page of the palette. 長方形 + + ZoomToolOptionsBox + + Reset Zoom + ズームをリセット + + diff --git a/toonz/sources/translations/japanese/toonz.ts b/toonz/sources/translations/japanese/toonz.ts index 0731fbc..e873c01 100644 --- a/toonz/sources/translations/japanese/toonz.ts +++ b/toonz/sources/translations/japanese/toonz.ts @@ -109,11 +109,11 @@ ApplyMatchlinesCommand It is not possible to apply the match lines because no column was selected. - 列が選択されていないので、マッチラインを合成できません。 + 列が選択されていないので、マッチラインを合成できません。 It is not possible to apply the match lines because two columns have to be selected. - 二つの列が選択されていないので、マッチラインを合成できません。 + 二つの列が選択されていないので、マッチラインを合成できません。 @@ -1052,11 +1052,11 @@ What do you want to do? CloneLevelUndo::LevelNamePopup Clone Level - レベルのクローンを作る + レベルのクローンを作る Level Name: - レベル名: + レベル名: @@ -1233,6 +1233,10 @@ What do you want to do? (Flipped) (反転表示) + + :: Project: + :: プロジェクト: + CommandBar @@ -1850,11 +1854,11 @@ contain the dpi information, then the current camera dpi will be used. ExportCurvePopup Export Curve - パラメータの書き出し + パラメータの書き出し Export - 書き出し + 書き出し @@ -2250,26 +2254,26 @@ contain the dpi information, then the current camera dpi will be used. FileData It is not possible to find the %1 level. - レベル %1 を見つけることができません。 + レベル %1 を見つけることができません。 There was an error copying %1 - %1 をコピーする時、エラーが発生しました + %1 をコピーする時、エラーが発生しました FileSelection Abort - 中断 + 中断 Collecting assets... - 素材を集めています... + 素材を集めています... Importing scenes... - シーンを読み込み中... + シーンを読み込み中... @@ -3170,6 +3174,10 @@ Please use the frame numbers for reference. Invalid data file. 無効なデータファイルです。 + + Drawing: + 画像: + LoadBoardPresetFilePopup @@ -3201,11 +3209,11 @@ Please use the frame numbers for reference. LoadCurvePopup Load Curve - エフェクトパラメータを読み込み + エフェクトパラメータを読み込み Load - 読み込み + 読み込み @@ -3348,15 +3356,15 @@ Please use the frame numbers for reference. LoadSettingsPopup Load Cleanup Settings - トレース設定の読み込み + トレース設定の読み込み Load - 読み込み + 読み込み %1 does not exist. - %1 は存在しません。 + %1 は存在しません。 @@ -3710,7 +3718,7 @@ Please use the frame numbers for reference. &Send Back - 最背面へ移動 (&S) + 最背面へ移動 (&S) &Send Backward @@ -4494,7 +4502,7 @@ Please use the frame numbers for reference. Reset View - ズームをリセット + 表示をリセット Fit to Window @@ -5396,6 +5404,30 @@ Please use the frame numbers for reference. Flip Viewer Horizontally ビューアを水平方向に反転 + + &Send to Back + 最背面へ移動 (&S) + + + Reset Zoom + ズームをリセット + + + Reset Rotation + 回転をリセット + + + Reset Position + 表示位置をリセット + + + Brush Tool - Eraser (Raster option) + ブラシツール(ラスターMyPaintブラシ) - 消しゴムモード + + + Brush Tool - Lock Alpha + ブラシツール(ラスターMyPaintブラシ) - 透明部分の保護 + MatchlinesDialog @@ -5528,15 +5560,15 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m MergeCmappedCommand It is not possible to merge tlv columns because no column was selected. - 列が選択されていないため、TLVレベル列を結合できません。 + 列が選択されていないため、TLVレベル列を結合できません。 It is not possible to merge tlv columns because at least two columns have to be selected. - 少なくとも2列以上を選択しなくてはいけません。TLVレベル列を結合できません。 + 少なくとも2列以上を選択しなくてはいけません。TLVレベル列を結合できません。 Merging Tlv Levels... - TLVレベルを結合中... + TLVレベルを結合中... @@ -5565,16 +5597,20 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m Merge Tlv Levels TLVレベルを結合 + + Level %1 already exists! Are you sure you want to overwrite it? + レベル %1 は既に存在します。上書きしてもよろしいですか? + MergeColumnsCommand It is not possible to execute the merge column command because no column was selected. - 列が選択されていないので、列を結合できません。 + 列が選択されていないので、列を結合できません。 It is not possible to execute the merge column command because only one columns is selected. - 2つの列が選択されていないので、列を結合できません。 + 2つの列が選択されていないので、列を結合できません。 @@ -5659,13 +5695,20 @@ What do you want to do? - MyViewFinder + MyVideoWidget Camera is not available 使用できるカメラがありません + MyViewFinder + + Camera is not available + 使用できるカメラがありません + + + OutputSettingsPopup Save in: @@ -6063,16 +6106,16 @@ What do you want to do? Overwrite - 上書き + 上書き Skip - 飛ばす + 飛ばす File "%1" already exists. Do you want to overwrite it? - ファイル"%1"は既に存在します。 + ファイル"%1"は既に存在します。 上書きしますか? @@ -6405,6 +6448,10 @@ WARNING : Image size mismatch. The saved image size is %1 x %2. Black & White 白黒二値 + + Subcamera + サブカメラ + PencilTestSaveInFolderPopup @@ -7638,12 +7685,12 @@ in non alpha-enabled image format. Previewer The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | - ファイル名は空であることができません。また、次の記号のどれかを含むことができません: \ / : * ? " | + ファイル名は空であることができません。また、次の記号のどれかを含むことができません: \ / : * ? " | File %1 already exists. Do you want to overwrite it? - ファイル %1 は、既に存在します。 + ファイル %1 は、既に存在します。 上書きしてもよろしいですか? @@ -7807,6 +7854,38 @@ Do you want to overwrite it? Level Name: レベル名: + + Single Image + 1枚の画像にまとめる + + + Frames + フレームに分ける + + + Columns + 列に分ける + + + Flatten visible document layers into a single image. Layer styles are maintained. + レイヤーを1枚の画像に統合します。レイヤーのスタイルは維持されます。 + + + Load document layers as frames into a single xsheet column. + 各レイヤーをフレームに分けてタイムシートの1つの列に読み込みます。 + + + Load document layers as xhseet columns. + 各レイヤーをタイムシートの列に分けて読み込みます。 + + + OK + OK + + + Cancel + キャンセル + QApplication @@ -8744,11 +8823,11 @@ Do you want to overwrite it? Level - レベル + レベル already exists! Are you sure you want to overwrite it? - は既に存在します! 上書きしてもよろしいですか? + は既に存在します! 上書きしてもよろしいですか? It is not possible to merge tlv columns containing more than one level @@ -9560,6 +9639,241 @@ to use the duplicate command in the xsheet / timeline. Clear All Relative Onion Skin Markers 全ての連結オニオンスキンをクリア + + Always Overwrite in This Scene + このシーンでは常に上書き + + + + %1 more level(s) + + + %1 個のレベル + + + + Fx Settings + エフェクト設定 + + + Save Curve + パラメータを保存 + + + Load Curve + パラメータを読み込み + + + Export Curve + パラメータの書き出し + + + Rendering frame %1 / %2 + RenderListener + レンダリング中: フレーム %1 / %2 + + + Precomputing %1 Frames + RenderListener + 前計算中: %1 フレーム + + + of %1 + RenderListener + / %1 + + + Finalizing render, please wait. + RenderListener + ファイナライズ中です。お待ちください。 + + + Aborting render... + RenderListener + レンダリングを中断しています... + + + Building Schematic... + RenderCommand + スキマティックを構築しています... + + + column + MultimediaProgressBar label (mode name) + + + + layer + MultimediaProgressBar label (mode name) + レイヤー + + + Rendering %1%2, frame %3 / %4 + MultimediaProgressBar label + レンダリング中: %1%2, フレーム %3 /%4 + + + Rendering %1 frames of %2 + MultimediaProgressBar + レンダリング中: フレーム %1 / %2 + + + %1 of %2 + MultimediaProgressBar - [totalframe] of [path] + %1 [出力先] %2 + + + Aborting render... + MultimediaProgressBar + レンダリングを中断しています... + + + It is not possible to write the output: the file + RenderCommand + 出力ファイルを保存できません。:ファイル + + + s are read only. + RenderCommand + は読み取り専用です。 + + + is read only. + RenderCommand + は読み取り専用です。 + + + Save Cleanup Settings + トレース設定を保存 + + + Load Cleanup Settings + トレース設定の読み込み + + + It is not possible to find the %1 level. + FileData + レベル %1 を見つけることができません。 + + + There was an error copying %1 + FileData + %1 をコピーする時、エラーが発生しました + + + Clone Level + CloneLevelUndo::LevelNamePopup + レベルのクローンを作る + + + Level Name: + CloneLevelUndo::LevelNamePopup + レベル名: + + + Collecting assets... + 素材を集めています... + + + Abort + 中断 + + + Importing scenes... + シーンをインポート中... + + + It is not possible to execute the merge column command because no column was selected. + 列が選択されていないため、列を結合できません。 + + + It is not possible to execute the merge column command because only one columns is selected. + 1つの列しか選択されていないため、列を結合できません。 + + + It is not possible to apply the match lines because no column was selected. + 列が選択されていないため、マッチラインを合成できません。 + + + It is not possible to apply the match lines because two columns have to be selected. + 2つの列が選択されていないため、マッチラインを合成できません。 + + + It is not possible to merge tlv columns because no column was selected. + 列が選択されていないため、TLVレベル列を結合できません。 + + + It is not possible to merge tlv columns because at least two columns have to be selected. + 少なくとも2列以上を選択しなくてはいけません。TLVレベル列を結合できません。 + + + Merging Tlv Levels... + TLVレベルを結合中... + + + Save Previewed Images + プレビュー画像を保存 + + + The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | + ファイル名は空であることができません。また、次の記号のどれかを含むことができません: :(new line) \ / : * ? " | + + + Unsopporter raster format, cannot save + サポートされていないラスター形式です。保存できません + + + Cannot create %1 : %2 + Previewer warning %1:path %2:message + %1を作成できません: %2 + + + Cannot create %1 + Previewer warning %1:path + %1 を作成できません + + + Saved %1 frames out of %2 in %3 + Previewer %1:savedframes %2:framecount %3:filepath + %2 フレーム中 %1 フレームが %3 に保存されました + + + Canceled! + Previewer + キャンセルされました。 + + + No frame to save! + 保存するフレームがありません! + + + Already saving! + すでに保存中です! + + + Warning! + OverwriteDialog + 警告! + + + Overwrite + OverwriteDialog + 上書き + + + Skip + OverwriteDialog + スキップ + + + File "%1" already exists. +Do you want to overwrite it? + OverwriteDialog + ファイル"%1"は既に存在します。 +上書きしますか? + + + %1 does not exist. + %1 は存在しません。 + ReframePopup @@ -9667,7 +9981,7 @@ The audio file will not be included in the rendered clip. RenderListener Finalizing render, please wait. - ファイナライズ中です。お待ちください。 + ファイナライズ中です。お待ちください。 @@ -10562,11 +10876,11 @@ Please commit or revert changes first. SaveCurvePopup Save Curve - パラメータを保存 + パラメータを保存 Save - 保存 + 保存 @@ -10641,11 +10955,11 @@ Please commit or revert changes first. SavePreviewedPopup Save Previewed Images - プレビュー画像を保存 + プレビュー画像を保存 Save - 保存 + 保存 @@ -10663,11 +10977,11 @@ Please commit or revert changes first. SaveSettingsPopup Save Cleanup Settings - トレース設定を保存 + トレース設定を保存 Save - 保存 + 保存 @@ -10900,6 +11214,14 @@ Please commit or revert changes first. Select %1 %1 を選択 + + Flip View + 表示を反転 + + + Reset View + 表示をリセット + SceneViewerPanel @@ -10963,6 +11285,10 @@ Please commit or revert changes first. (Flipped) (反転表示) + + :: Project: + :: プロジェクト: + SeparateColorsPopup @@ -11464,7 +11790,7 @@ Assign to '%3'? Choose Project - プロジェクトを選択 + プロジェクトを選択 Create a New Scene @@ -11472,7 +11798,7 @@ Assign to '%3'? Open Scene - シーンを開く + シーンを開く Scene Name: @@ -11624,6 +11950,18 @@ Possibly the preset file has been corrupted Minutes 分間隔 + + Current Project + 現在のプロジェクト + + + Recent Scenes [Project] + 最近開いたシーン [プロジェクト] + + + The selected scene project '%1' is not in the Current Project list and may not open automatically. + 選択したシーンのプロジェクト '%1' は現在のプロジェクトリストにはありません。自動的に開かない場合があります。 + SubSheetBar @@ -12722,5 +13060,13 @@ Hold F3 Key on the Viewer to Show This Frame Only Zoom in/out of timeline タイムラインの拡大/縮小 + + :: Project: + :: プロジェクト: + + + Frame + フレーム + diff --git a/toonz/sources/translations/japanese/toonzqt.ts b/toonz/sources/translations/japanese/toonzqt.ts index fe5bb06..6e253f2 100644 --- a/toonz/sources/translations/japanese/toonzqt.ts +++ b/toonz/sources/translations/japanese/toonzqt.ts @@ -289,11 +289,11 @@ Possibly the preset file has been corrupted DVGui OK - OK + OK Cancel - キャンセル + キャンセル @@ -1019,6 +1019,30 @@ Possibly the preset file has been corrupted Step 4 ステップ4 + + Activate Cycle + サイクルを有効化 + + + Deactivate Cycle + サイクルを無効化 + + + Show Inbetween Values + キー以外の値を表示する + + + Hide Inbetween Values + キー以外の値を隠す + + + Change Interpolation + 補間形式を変更 + + + Change Step + ステップを変更 + FunctionToolbar @@ -1383,7 +1407,7 @@ Select FX nodes and related links before copying or cutting the selection you wa MyPaintBrushStyleChooserPage Plain color - 通常の色 + 単色 @@ -1607,6 +1631,17 @@ Select FX nodes and related links before copying or cutting the selection you wa + PlaneViewer + + Reset View + 表示をリセット + + + Fit To Window + ウィンドウに全体を表示 + + + PointParamField Y: @@ -1682,19 +1717,19 @@ Select FX nodes and related links before copying or cutting the selection you wa Save - 保存 + 保存 Discard - 変更を破棄 + 変更を破棄 Yes - はい + はい No - いいえ + いいえ Stage Schematic @@ -2018,7 +2053,7 @@ Are you sure? Replace - 置き換え + 置き換え Modify Fx Param : %1 @@ -2154,8 +2189,36 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< 3DLUTファイルの読み込みに失敗しました。 - OpenToonz 1.2 - + Custom Texture + TextureStyleChooserPage + カスタムテクスチャ + + + Current Frame: + 現在のフレーム: + + + File History + 更新履歴 + + + Plain color + VectorBrushStyleChooserPage + 単色 + + + Plain color + MyPaintBrushStyleChooserPage + 単色 + + + Plain color + SpecialStyleChooserPage + 単色 + + + OK + OK @@ -2253,7 +2316,7 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< SpecialStyleChooserPage Plain color - 通常の色 + 単色 @@ -2387,6 +2450,54 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< Cancel キャンセル + + The current palette %1 +in the studio palette has been modified. Do you want to save your changes? + スタジオパレット内のパレット %1 は変更されました。 +変更を保存しますか? + + + Save + 保存 + + + Discard + 変更を破棄 + + + Convert %1 to Studio Palette and Overwrite. +Are you sure ? + %1 をスタジオパレットに変換して上書き保存します。 +よろしいですか? + + + Yes + はい + + + No + いいえ + + + Replacing all selected palettes with the palette "%1". +Are you sure ? + 選択中の全てのパレットをパレット "%1" と置き換えます。 +よろしいですか? + + + Replacing the palette "%1" with the palette "%2". +Are you sure ? + パレット "%1" をパレット "%2" に置き換えます。 +よろしいですか? + + + Replace + 置き換える + + + Convert + 変換する + StudioPaletteViewer @@ -2645,6 +2756,17 @@ Apply + SwatchViewer + + Reset View + 表示をリセット + + + Fit To Window + ウィンドウに全体を表示 + + + TMessageViewer Errors @@ -2693,7 +2815,7 @@ Apply VectorBrushStyleChooserPage Plain color - 通常の色 + 通常の色 diff --git a/toonz/sources/translations/korean/tnzcore.ts b/toonz/sources/translations/korean/tnzcore.ts index 71d5612..4630e79 100644 --- a/toonz/sources/translations/korean/tnzcore.ts +++ b/toonz/sources/translations/korean/tnzcore.ts @@ -35,7 +35,7 @@ QObject - + colors diff --git a/toonz/sources/translations/korean/tnztools.ts b/toonz/sources/translations/korean/tnztools.ts index 1e0921f..8089f61 100644 --- a/toonz/sources/translations/korean/tnztools.ts +++ b/toonz/sources/translations/korean/tnztools.ts @@ -4,101 +4,101 @@ ArrowToolOptionsBox - + Z: - + Position: - - + + E/W: - - + + N/S: - + SO: - + Rotation: - + Global: - - + + H: - - + + V: - + Position - + ( - + ) - + Rotation - + Scale - + Maintain: - + Shear - + Center Position - + Table - + Pick: @@ -240,17 +240,17 @@ BrushToolOptionsBox - + Preset Name - + OK - + Cancel @@ -279,7 +279,7 @@ DVGui::StyleIndexLineEdit - + current @@ -631,44 +631,44 @@ FullColorBrushTool - - + + Size - + Pressure - - + + Opacity - + Hardness: - + Preset: - + Eraser - + Lock Alpha - + <custom> @@ -727,6 +727,22 @@ + FullColorFillTool + + + Fill Depth + + + + + HandToolOptionsBox + + + Reset Position + + + + HookTool @@ -796,27 +812,27 @@ PlasticTool - + Swap Edge - + Collapse Edge - + Split Edge - + Cut Mesh - + Delete Vertex @@ -1174,14 +1190,14 @@ Do you want to proceed? - - + + Min: - - + + Max: @@ -1263,78 +1279,78 @@ Do you want to proceed? - + The current column is locked. - + The current column is hidden. - + It is not possible to edit the audio column. - + Note columns can only be edited in the xsheet or timeline. - + The current tool cannot be used on a Level column. - + The current tool cannot be used on a Mesh column. - + The current tool cannot be used in Level Strip mode. - + The current tool cannot be used to edit a motion path. - - + + The current level is not editable. - + The current tool cannot be used on a Vector Level. - + The current tool cannot be used on a Toonz Level. - + The current tool cannot be used on a Raster Level. - + The current tool cannot be used on a Mesh Level. - + The current tool cannot be used on a mesh-deformed level - + The current frame is locked: any editing is forbidden. @@ -1401,7 +1417,7 @@ Do you want to proceed? RGBPickerToolOptionsBox - + Pick Screen @@ -1486,39 +1502,47 @@ Do you want to proceed? + RotateToolOptionsBox + + + Reset Rotation + + + + RulerToolOptionsBox - + X: ruler tool option - + Y: ruler tool option - + W: ruler tool option - + H: ruler tool option - + A: ruler tool option - + L: ruler tool option @@ -1550,48 +1574,48 @@ Do you want to proceed? SelectionToolOptionsBox - + H: - + V: - + Link - - + + Rotation - + E/W: - + N/S: - + Scale - + Position - + Thickness @@ -1599,22 +1623,22 @@ Do you want to proceed? ShiftTraceToolOptionBox - + Reset Previous - + Reset Following - + Previous Drawing - + Following Drawing @@ -1660,47 +1684,47 @@ Do you want to proceed? StylePickerTool - + No current level. - + Current level has no available palette. - + Palette must have more than one palette to be organized. - + Mode: - + Lines - + Areas - + Lines & Areas - + Passive Pick - + Organize Palette @@ -1708,7 +1732,7 @@ Do you want to proceed? StylePickerToolOptionsBox - + With this option being activated, the picked style will be moved to the end of the first page of the palette. @@ -1759,7 +1783,7 @@ moved to the end of the first page of the palette. - + <custom> @@ -1976,4 +2000,12 @@ moved to the end of the first page of the palette. + + ZoomToolOptionsBox + + + Reset Zoom + + + diff --git a/toonz/sources/translations/korean/toonz.ts b/toonz/sources/translations/korean/toonz.ts index 51bb25f..36854a8 100644 --- a/toonz/sources/translations/korean/toonz.ts +++ b/toonz/sources/translations/korean/toonz.ts @@ -65,42 +65,42 @@ AdjustThicknessPopup - + Adjust Thickness - + Mode: - + Scale Thickness - + Add Thickness - + Constant Thickness - + Start: - + End: - + Apply @@ -129,19 +129,6 @@ - ApplyMatchlinesCommand - - - It is not possible to apply the match lines because no column was selected. - - - - - It is not possible to apply the match lines because two columns have to be selected. - - - - AudioRecordingPopup @@ -577,12 +564,12 @@ Do you want to save your changes? BrowserPopup - + Choose - + Path %1 doesn't exists. @@ -1273,19 +1260,6 @@ What do you want to do? - CloneLevelUndo::LevelNamePopup - - - Clone Level - - - - - Level Name: - - - - ColorModelBehaviorPopup @@ -1410,94 +1384,99 @@ What do you want to do? ComboViewerPanel - + GUI Show / Hide - + Toolbar - + Tool Options Bar - + Console - + Safe Area (Right Click to Select) - + Field Guide - + Camera Stand View - + 3D View - + Camera View - + Freeze - + Preview - + Sub-camera Preview - + Untitled - + Scene: + :: Project: + + + + :: Frame: - - - + + + (Flipped) - + :: Level: - + Level: @@ -1907,12 +1886,12 @@ contain the dpi information, then the current camera dpi will be used. DVGui::ProgressDialog - + Loading "%1"... - + Importing "%1"... @@ -2173,19 +2152,6 @@ contain the dpi information, then the current camera dpi will be used. - ExportCurvePopup - - - Export Curve - - - - - Export - - - - ExportLevelPopup @@ -2619,12 +2585,12 @@ contain the dpi information, then the current camera dpi will be used. - + New Folder - + It is not possible to create the %1 folder. @@ -2665,38 +2631,6 @@ contain the dpi information, then the current camera dpi will be used. - FileData - - - It is not possible to find the %1 level. - - - - - There was an error copying %1 - - - - - FileSelection - - - Collecting assets... - - - - - - Abort - - - - - Importing scenes... - - - - FileSettingsPopup @@ -2843,12 +2777,12 @@ Do you want to overwrite it? FlipbookPanel - + Safe Area (Right Click to Select) - + Minimize @@ -2890,80 +2824,80 @@ Do you want to overwrite it? ImageViewer - - - + + + Flipbook Histogram - + Clone Preview - + Unfreeze Preview - + Freeze Preview - + Regenerate Preview - + Regenerate Frame Preview - + Load / Append Images - + Save Images - + Reset View - + Fit To Window - + Exit Full Screen Mode - + Full Screen Mode - + Show Histogram - + Swap Compared Images - - + + :: Zoom : @@ -2971,17 +2905,17 @@ Do you want to overwrite it? ImportMagpieFilePopup - + Import Magpie File - + Load - + %1 does not exist. @@ -3757,6 +3691,11 @@ Please use the frame numbers for reference. + + Drawing: + + + Unable to open the file: @@ -3779,30 +3718,17 @@ Please use the frame numbers for reference. LoadColorModelPopup - + Load Color Model - + Frames : - - Load - - - - - LoadCurvePopup - - - Load Curve - - - - + Load @@ -3861,84 +3787,84 @@ Please use the frame numbers for reference. LoadLevelPopup - + Load Level - + Load - + TLV Caching Behavior - + Load Subsequence Level - + Arrangement in Xsheet - + (FILE DOES NOT EXIST) - + On Demand - + All Icons - + All Icons & Images - - + + From: - - + + To: - + Step: - + Inc: - + Level Name: - + Frames: - + :: @@ -3946,63 +3872,45 @@ Please use the frame numbers for reference. LoadScenePopup - + Load Scene - + Load - + is not a scene file. - + does not exist. - LoadSettingsPopup - - - Load Cleanup Settings - - - - - Load - - - - - %1 does not exist. - - - - LoadSubScenePopup - + Load Sub-Xsheet - + Load - + is not a scene file. - + does not exist. @@ -4129,2143 +4037,2176 @@ Please use the frame numbers for reference. MainWindow - + Untitled - + Cleanup - + PltEdit - + InknPaint - + Xsheet - + About OpenToonz - + Close - + Cannot delete - + &New Scene - + &Load Scene... - + &Save Scene - + &Save Scene As... - + &Save All - + &Revert Scene - + &Load Folder... - + &Load As Sub-xsheet... - + &Open Recent Scene File - + &Open Recent Level File - + &Clear Recent Scene File List - + &Clear Recent level File List - + &New Level... - + &New Vector Level - + New Vector Level - + &New Toonz Raster Level - + New Toonz Raster Level - + &New Raster Level - + New Raster Level - + &Load Level... - + &Save Level - + &Save All Levels - + &Save Level As... - + &Export Level... - + &Convert File... - + &Save Palette As... - + &Save Palette - + &Load Color Model... - + &Import Magpie File... - + &New Project... - + &Project Settings... - + &Save Default Settings - + &Output Settings... - + &Preview Settings... - + &Render - + &Fast Render to MP4 - + &Preview - + &Export Soundtrack - + &Save Previewed Frames - + &Regenerate Preview - + &Regenerate Frame Preview - + &Clone Preview - + &Freeze//Unfreeze Preview - + Freeze Preview - + Unfreeze Preview - + &Save As Preset - + &Preferences... - + &Configure Shortcuts... - + &Print Xsheet - + Run Script... - + Open Script Console... - + &Print Current Frame... - + &Quit - + Reload qss - + &Load Recent Image Files - + &Clear Recent Flipbook Image List - + Preview Fx - + &Select All - + &Invert Selection - + &Undo - + &Redo - + &Cut - + &Copy - + &Paste Insert - + &Paste Insert Above/After - + &Merge - + &Paste Into - + &Paste Color && Name - + Paste Color - + Paste Name - + Get Color from Studio Palette - + Toggle Link to Studio Palette - + Remove Reference to Studio Palette - + &Delete - + &Insert - + &Insert Above/After - + &Group - + &Ungroup - + &Bring to Front - + &Bring Forward - - &Send Back + + &Send to Back - + &Send Backward - + &Enter Group - + &Exit Group - + &Remove Vector Overflow - + &Touch Gesture Control - + &Define Scanner... - + &Scan Settings... - + &Scan - + &Autocenter... - + &Set Cropbox - + &Reset Cropbox - + &Cleanup Settings... - + &Preview Cleanup - + &Camera Test - + &Opacity Check - + &Cleanup - + &Camera Capture... - + &Add Frames... - + &Renumber... - + &Replace Level... - + &Revert to Cleaned Up - + &Reload - + &Expose in Xsheet - + &Display in Level Strip - + &Level Settings... - + Adjust Levels... - + Adjust Thickness... - + &Antialias... - + &Binarize... - + &Brightness and Contrast... - + &Color Fade... - + &Capture - + &Canvas Size... - + &Info... - + &View... - + &Remove All Unused Levels - + &Replace Parent Directory... - + &Scene Settings... - - + + &Camera Settings... - + &Open Sub-xsheet - + &Close Sub-xsheet - + Explode Sub-xsheet - + Collapse - + &Toggle Edit In Place - + Toggle Edit in Place - + &Save Sub-xsheet As... - + Resequence - + Clone Sub-xsheet - + &Apply Match Lines... - + &Merge Tlv Levels... - + &Delete Match Lines - + &Delete Lines... - + &Merge Levels - + &New FX... - + &New Output - + &Edit FX... - + Insert Frame - + Remove Frame - + Insert Multiple Keys - + Remove Multiple Keys - + New Note Level - + Remove Empty Columns - + &Apply Lip Sync Data to Column - + Toggle XSheet Toolbar - + &Reverse - + &Swing - + &Random - + &Autoexpose - + &Repeat... - + &Reset Step - + &Increase Step - + &Decrease Step - + &Step 2 - + &Step 3 - + &Step 4 - + &Each 2 - + &Each 3 - + &Each 4 - + &Roll Up - + &Roll Down - + &Time Stretch... - + &Duplicate Drawing - + &Autorenumber - + &Clone - + Drawing Substitution Forward - + Drawing Substitution Backward - + Similar Drawing Substitution Forward - + Similar Drawing Substitution Backward - + 1's - + 2's - + 3's - + 4's - + Reframe with Empty Inbetweens... - + Auto Input Cell Number... - + &Fill In Empty Cells - + &Set Key - + &Paste Numbers - + &Camera Box - + &Table - + &Field Guide - + &Raster Bounding Box - + &Field Guide in Capture Window - + &Safe Area - + &Camera BG Color - + &Guide - + &Ruler - + &Transparency Check - + &Ink Check - + &Ink#1 Check - + &Paint Check - + Inks &Only - + &Fill Check - + &Black BG Check - + &Gap Check - + Shift and Trace - + Edit Shift - + No Shift - + Reset Shift - + &Visualize Vector As Raster - + &Histogram - + Link Flipbooks - + Play - + Loop - + Pause - + First Frame - + Last Frame - + Previous Frame - + Next Frame - + Next Drawing - + Prev Drawing - + Next Step - + Prev Step - + Red Channel - + Green Channel - + Blue Channel - + Alpha Channel - + Red Channel Greyscale - + Green Channel Greyscale - + Blue Channel Greyscale - + Compare to Snapshot - + Toggle Autofill on Current Palette Color - + &Lock Room Panes - + &Export - + &File Browser - + &Flipbook - + &Function Editor - + &Level Strip - + &Palette - + &Palette Gizmo - + &Delete Unused Styles - + &Tasks - + &Batch Servers - + &Message Center - + &Color Model - + &Studio Palette - + &Schematic - + &Cleanup Settings - + &Scene Cast - + &Style Editor - + &Toolbar - + &Tool Option Bar - + &Command Bar - + &Viewer - + &LineTest Capture - + &LineTest Viewer - + &Xsheet - + &Timeline - + &ComboViewer - + &History - + Record Audio - + &Reset to Default Rooms - + Toggle Maximize Panel - + Toggle Main Window's Full Screen Mode - + &About OpenToonz... - + &Startup Popup... - + &Blend colors - + Onion Skin Toggle - + Zero Thick Lines - + Toggle Cursor Size Outline - + Toggle Current Time Indicator - + Duplicate - + Show Folder Contents - + Convert... - + Collect Assets - + Import Scene - + Export Scene... - + Convert to Vectors... - + Vectors to Toonz Raster - + Replace Vectors with Simplified Vectors - + Tracking... - + Remove Level - + Add As Render Task - + Add As Cleanup Task - + Select All Keys in this Frame - + Select All Keys in this Column - + Select All Keys - + Select All Following Keys - + Select All Previous Keys - + Select Previous Keys in this Column - + Select Following Keys in this Column - + Select Previous Keys in this Frame - + Select Following Keys in this Frame - + Invert Key Selection - + Set Acceleration - + Set Deceleration - + Set Constant Speed - + Reset Interpolation - + Linear Interpolation - + Speed In / Speed Out Interpolation - + Ease In / Ease Out Interpolation - + Ease In / Ease Out (%) Interpolation - + Exponential Interpolation - + Expression Interpolation - + File Interpolation - + Constant Interpolation - + Fold Column - + Show This Only - + Show Selected - + Show All - + Hide Selected - + Hide All - + Toggle Show/Hide - + ON This Only - + ON Selected - + ON All - + OFF All - + OFF Selected - + Swap ON/OFF - + Lock This Only - + Lock Selected - + Lock All - + Unlock Selected - + Unlock All - + Swap Lock/Unlock - + Hide Upper Columns - + Separate Colors... - + Animate Tool - + Selection Tool - + Brush Tool - + Geometric Tool - + Type Tool - + Fill Tool - + Paint Brush Tool - + Eraser Tool - + Tape Tool - + Style Picker Tool - + RGB Picker Tool - + Control Point Editor Tool - + Pinch Tool - + Pump Tool - + Magnet Tool - + Bender Tool - + Iron Tool - + Cutter Tool - + Skeleton Tool - + Tracker Tool - + Hook Tool - + Zoom Tool - + Rotate Tool - + Hand Tool - + Plastic Tool - + Ruler Tool - + Finger Tool - + Zoom In - + Zoom Out - + + Reset View - + + Fit to Window - + + + Reset Zoom + + + + + + Reset Rotation + + + + + + Reset Position + + + + + Actual Pixel Size - + + Flip Viewer Horizontally - + + Flip Viewer Vertically - + Show//Hide Full Screen - + Full Screen Mode - + Exit Full Screen Mode - + Refresh Folder Tree - + Refresh - + Global Key - + Brush size - Increase max - + Brush size - Decrease max - + Brush size - Increase min - + Brush size - Decrease min - + Brush hardness - Increase - + Brush hardness - Decrease - + SnapSensitivity - + Auto Group - + Break sharp angles - + Frame range - + Inverse kinematics - + Invert - + Manual - + Onion skin - + Orientation - + Pencil Mode - + Preserve Thickness - + Pressure Sensitivity - + Segment Ink - + Selective - + Brush Tool - Draw Order - + Smooth - + Snap - + Auto Select Drawing - + Auto Fill - + Join Vectors - + Show Only Active Skeleton - + + Brush Tool - Eraser (Raster option) + + + + + Brush Tool - Lock Alpha + + + + Brush Preset - + Geometric Shape - + Geometric Edge - + Mode - + Mode - Areas - + Mode - Lines - + Mode - Lines & Areas - + Type - + Type - Normal - + Type - Rectangular - + Type - Freehand - + Type - Polyline - + TypeTool Font - + TypeTool Size - + TypeTool Style - + Active Axis - + Active Axis - Position - + Active Axis - Rotation - + Active Axis - Scale - + Active Axis - Shear - + Active Axis - Center - + Active Axis - All - + Build Skeleton Mode - + Animate Mode - + Inverse Kinematics Mode - + None Pick Mode - + Column Pick Mode - + Pegbar Pick Mode - + Pick Screen - + Create Mesh - + Fill Tool - Autopaint Lines - + Fill Tool - Areas - + Fill Tool - Lines - + Style Picker Tool - Areas - + Style Picker Tool - Lines - + Toggle FX/Stage schematic @@ -6405,72 +6346,45 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m - MergeCmappedCommand - - - It is not possible to merge tlv columns because no column was selected. - - - - - It is not possible to merge tlv columns because at least two columns have to be selected. - - + MergeCmappedDialog - - - Merging Tlv Levels... + + Level %1 already exists! Are you sure you want to overwrite it? - - - MergeCmappedDialog - + Ok - - + + Cancel - + Merge Tlv Levels - + Save in: - + File Name: - + Apply - MergeColumnsCommand - - - It is not possible to execute the merge column command because no column was selected. - - - - - It is not possible to execute the merge column command because only one columns is selected. - - - - MeshifyPopup @@ -6569,9 +6483,9 @@ What do you want to do? - MyViewFinder + MyVideoWidget - + Camera is not available @@ -6639,87 +6553,87 @@ What do you want to do? - + Standard - + Improved - + High - + Triangle filter - + Mitchell-Netravali filter - + Cubic convolution, a = .5 - + Cubic convolution, a = .75 - + Cubic convolution, a = 1 - + Hann window, rad = 2 - + Hann window, rad = 3 - + Hamming window, rad = 2 - + Hamming window, rad = 3 - + Lanczos window, rad = 2 - + Lanczos window, rad = 3 - + Gaussian convolution - + Closest Pixel (Nearest Neighbor) - + Bilinear @@ -6908,34 +6822,34 @@ The parameters to be saved are: - + Add preset - + Enter the name for the output settings preset. - + Add output settings preset - + <custom> - + Remove preset - - - + + + Warning @@ -6943,7 +6857,7 @@ The parameters to be saved are: OverwriteDialog - + Level "%1" already exists. What do you want to do? @@ -6957,7 +6871,6 @@ What do you want to do? - Warning! @@ -7007,395 +6920,384 @@ What do you want to do? File %1 exists as well; please choose a different suffix. - - - Overwrite - - - - - Skip - - - - - File "%1" already exists. -Do you want to overwrite it? - - PencilTestPopup - + No frame id - + Camera Capture - + Refresh - + File - + Options - + Save images as they are captured - + Image adjust - + Upside down - + Capture white BG - + Display - + Show onion skin - + Load Selected Image - + Interval timer - + Use interval timer - - + + Capture [Return key] - + Close - + Subfolder - + + Subcamera + + + + Next Level - + Previous Level - + Color - + Grayscale - + Black & White - + Video Capture Filter Settings... - + Camera: - + Resolution: - + Save In: - + Name: - + Frame: - + File Type: - + Color type: - + BG reduction: - + Opacity(%): - + Interval(sec): - + No camera found - + - Select camera - - - + + No image selected. Please select an image in the Xsheet. - + The selected image is not in a raster level. - + The selected image size does not match the current camera settings. - - + + Start Capturing [Return key] - + Stop Capturing [Return key] - + No level name specified: please choose a valid level name - + Folder %1 doesn't exist. Do you want to create it? - + Unable to create - + The level name specified is already used: please choose a different level name. - + The save in path specified does not match with the existing level. - - + + The captured image size does not match with the existing level. - - + + File %1 does exist. Do you want to overwrite it? - + Failed to load %1. - - - - - + + + + + UNDEFINED WARNING - + The level is not registered in the scene, but exists in the file system. - + WARNING : Image size mismatch. The saved image size is %1 x %2. - - - - + + + + WARNING - - + + Frame %1 exists. - - + + Frames %1 exist. - - + + OVERWRITE 1 of - - + + ADD to - - + + %1 frame - - + + %1 frames - + The level will be newly created. - + NEW - + The level is already registered in the scene. - + NOTE : The level is not saved. - + WARNING : Failed to get image size of the existing level %1. - + WARNING : Image size mismatch. The existing level size is %1 x %2. - + WARNING : Level name conflicts. There already is a level %1 in the scene with the path %2. - + WARNING : Image size mismatch. The size of level with the same name is is %1 x %2. - + WARNING : Level path conflicts. There already is a level with the path %1 in the scene with the name %2. - + WARNING : Image size mismatch. The size of level with the same path is %1 x %2. @@ -7404,133 +7306,133 @@ WARNING : Image size mismatch. The size of level with the same path is %1 x %2.< PencilTestSaveInFolderPopup - + Create the Destination Subfolder to Save - + Set As Default - + Set the current "Save In" path as the default. - + Create Subfolder - + Infomation - + Subfolder Name - + Auto Format: - + Show This on Launch of the Camera Capture - + Save Scene in Subfolder - + OK - + Cancel - + C- + Sequence + Scene - + Sequence + Scene - + Episode + Sequence + Scene - + Project + Episode + Sequence + Scene - + Save the current scene in the subfolder. Set the output folder path to the subfolder as well. - + Save In: - + Project: - + Episode: - + Sequence: - + Scene: - + Subfolder Name: - + Subfolder name should not be empty. - + Subfolder name should not contain following characters: * . " / \ [ ] : ; | = , - + Folder %1 already exists. - + It is not possible to create the %1 folder. @@ -8700,20 +8602,6 @@ in non alpha-enabled image format. - Previewer - - - The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | - - - - - File %1 already exists. -Do you want to overwrite it? - - - - ProcessingTab @@ -8775,38 +8663,38 @@ Do you want to overwrite it? ProjectCreatePopup - + New Project - + OK - + Cancel - + Project Name cannot be empty or contain any of the following characters: \ / : * ? " < > | - + Bad project name: '%1' looks like an absolute file path - + Project '%1' already exists - + It is not possible to create the %1 project. @@ -8824,17 +8712,17 @@ Do you want to overwrite it? - + Append $scenepath to +drawings - + Append $scenepath to +inputs - + Append $scenepath to +extras @@ -8842,7 +8730,7 @@ Do you want to overwrite it? ProjectSettingsPopup - + Project Settings @@ -8850,65 +8738,105 @@ Do you want to overwrite it? PsdSettingsPopup - + Load PSD File - + Name: - + Path: - + + Single Image + + + + + Frames + + + + + Columns + + + + Expose in a Sub-xsheet - + FileName#LayerName - + LayerName - + Load As: - + Level Name: - + Group Option - + Ignore groups - + Expose layers in a group as columns in a sub-xsheet - + Expose layers in a group as frames in a column + + + OK + + + + + Cancel + + + + + Flatten visible document layers into a single image. Layer styles are maintained. + + + + + Load document layers as frames into a single xsheet column. + + + + + Load document layers as xhseet columns. + + QApplication @@ -8918,12 +8846,12 @@ Do you want to overwrite it? - + Load Scene - + Quit @@ -8937,19 +8865,19 @@ Do you want to overwrite it? - - + + - - - - + + + + - - - + + + Overwrite @@ -8959,8 +8887,8 @@ Do you want to overwrite it? - - + + @@ -8971,9 +8899,9 @@ Do you want to overwrite it? - - - + + + @@ -8984,15 +8912,23 @@ Do you want to overwrite it? + + + Always Overwrite in This Scene + + + Apply - - + + + + @@ -9005,33 +8941,33 @@ Do you want to overwrite it? - - - - - - - - - - - + + + + + + + + + + + - - + + - - - + + + - + Cancel @@ -9044,7 +8980,7 @@ Do you want to overwrite it? - + @@ -9063,17 +8999,32 @@ Do you want to overwrite it? + + Save Curve + + + It is not possible to save the curve. + + Load Curve + + + It is not possible to load the curve. - + + Export Curve + + + + It is not possible to export data. @@ -9094,35 +9045,126 @@ Do you want to overwrite it? - - The scene is not yet saved and the output destination is set to $scenefolder. -Save the scene first. + + The scene is not yet saved and the output destination is set to $scenefolder. +Save the scene first. + + + + + It is not possible to create folder : %1 + + + + + It is not possible to create a folder. + + + + + Rendering frame %1 / %2 + RenderListener + + + + + Precomputing %1 Frames + RenderListener + + + + + + of %1 + RenderListener + + + + + Finalizing render, please wait. + RenderListener + + + + + Aborting render... + RenderListener + + + + + + + The resolution of the output camera does not fit with the options chosen for the output file format. + + + + + Building Schematic... + RenderCommand + + + + + column + MultimediaProgressBar label (mode name) + + + + + layer + MultimediaProgressBar label (mode name) + + + + + Rendering %1%2, frame %3 / %4 + MultimediaProgressBar label + + + + + Rendering %1 frames of %2 + MultimediaProgressBar + + + + + %1 of %2 + MultimediaProgressBar - [totalframe] of [path] + + + + + Aborting render... + MultimediaProgressBar - - It is not possible to create folder : %1 + + FFmpeg not found, please set the location in the Preferences and restart. - - It is not possible to create a folder. + + It is not possible to write the output: the file + RenderCommand - - - - The resolution of the output camera does not fit with the options chosen for the output file format. + + s are read only. + RenderCommand - - FFmpeg not found, please set the location in the Preferences and restart. + + is read only. + RenderCommand - + It is not possible to complete the rendering. @@ -9162,11 +9204,16 @@ Save the scene first. - + Cleanup Settings + + Save Cleanup Settings + + + The cleanup settings file for the %1 level already exists. Do you want to overwrite it? @@ -9174,12 +9221,22 @@ Save the scene first. - - + + Don't Overwrite + + Load Cleanup Settings + + + + + %1 does not exist. + + + @@ -9195,9 +9252,12 @@ Do you want to save your changes? + + - + + Save @@ -9232,7 +9292,7 @@ Are you sure ? - + Delete @@ -9279,7 +9339,7 @@ Are you sure ? - + Saving previewed frames.... @@ -9548,13 +9608,15 @@ Do you want to import it or load it from its original location? - + Import + + - + Load @@ -9660,41 +9722,41 @@ Do you want to overwrite it? - - - + + + Couldn't save %1 - + The level %1 already exists. Do you want to overwrite it? - + Overwrite Palette - + Don't Overwrite Palette - + The soundtrack %1 already exists. Do you want to overwrite it? - + File %1 doesn't look like a TOONZ Scene - + A prior save of Scene '%1' was critically interupted. A partial save file was generated and changes may be manually salvaged from '%2'. @@ -9703,33 +9765,33 @@ Do you wish to continue loading the last good save or stop and try to salvage th - + Continue - + It is not possible to load the scene %1 because it does not belong to any project. - + The Scene '%1' belongs to project '%2'. What do you want to do? - + Import Scene - + Change Project - + There were problems loading the scene %1. @@ -9737,232 +9799,239 @@ What do you want to do? - + There were problems loading the scene %1. Some levels have not been loaded because their version is not supported - + This scene is incompatible with pixels only mode of the current OpenToonz version. What would you like to do? - + Turn off pixels only mode - + Keep pixels only mode on and resize the scene - + File '%1' will reload level '%2' as a duplicate column in the xsheet. Allow duplicate? - + Allow - + Allow All Dups - + No to All Dups - - + + It is not possible to load the level %1 - + + + %1 more level(s) + + + + + The following level(s) use path with $scenefolder alias. - + They will not be opened properly when you load the scene next time. What do you want to do? - + Copy the levels to correspondent paths - + Decode all $scenefolder aliases - + Save the scene only - - + + + File %1 already exists. Do you want to overwrite it? - + Overwrite for All - + Don't Overwrite for All - - + + Failed to overwrite %1 - - + + No Current Level - - + + No Current Scene - + Save the scene first - + Save level Failed - + Are you sure you want to save the Default Settings? - + It is not possible to load the %1 level. - + The scene %1 doesn't exist. - + Revert: the current scene has been modified. Are you sure you want to revert to previous version? - + Revert - + OK - + The copied selection cannot be pasted in the current drawing. - - - + + + Paste : Level %1 : Frame - + Delete Frames : Level %1 : Frame - + Cut Frames : Level %1 : Frame - + Add Frames : Level %1 : Frame - + Renumber : Level %1 - + Insert : Level %1 - + Reverse : Level %1 - + Swing : Level %1 - + Step %1 : Level %2 - + Each %1 : Level %2 - + Duplicate : Level %1 - + Move Level to Scene : Level %1 - + Inbetween : Level %1, @@ -10057,24 +10126,36 @@ Are you sure you want to revert to previous version? - + Clone Level : %1 > %2 - + Clone Levels : - + + Clone Level + CloneLevelUndo::LevelNamePopup + + + + + Level Name: + CloneLevelUndo::LevelNamePopup + + + + Ok - + FlipBook @@ -10174,45 +10255,45 @@ undefined error. - + The file name already exists. Do you want to overwrite it? - + Deleting "%1". Are you sure? - + The selected scene could not be found. - + Script Console - + Hide Zero Thickness Lines - + Show Zero Thickness Lines - + Hide cursor size outline - + Show cursor size outline @@ -10264,7 +10345,7 @@ Are you sure? - + Create project @@ -10326,46 +10407,46 @@ Are you sure? - + Do you want to expose the renamed level ? - + Expose - + Don't expose - + Nothing to replace: no cells or columns selected. - + The palette %1 already exists. Do you want to overwrite it? - + Cannot load Color Model in current palette. - + Choose Folder - - - + + + File Browser @@ -10439,6 +10520,17 @@ The operation cannot be undone: are you sure? + + Collecting assets... + + + + + + Abort + + + There are no assets to collect @@ -10476,6 +10568,11 @@ The operation cannot be undone: are you sure? + + Importing scenes... + + + No scene imported @@ -10553,7 +10650,7 @@ The operation cannot be undone: are you sure? - + Rename Cell at Column %1 Frame %2 @@ -10647,12 +10744,12 @@ to use the duplicate command in the xsheet / timeline. - + Xsheet - + Timeline @@ -10667,198 +10764,231 @@ to use the duplicate command in the xsheet / timeline. - + Use Level Extender - + Modify Sound Level - + Move keyframe handle : %1 Handle of the keyframe %2 - + Move Columns - + Change Pegbar - + Change Text at Column %1 Frame %2 - + Toggle cycle of %1 - + Move Level - - + + Schematic - + Stage Schematic - + Fx Schematic - + Palette - - + + Studio Palette - - + + Style Editor - - + + Viewer - + Command Bar - + Tool Options - + Tasks - + Batch Servers - + Scene Cast - - + + + Export - - + + Function Editor - - + + Message Center - + LineTest Viewer - + LineTest Capture - - + + Combo Viewer - - + + History - - Level + + + Fx Settings + + + + + It is not possible to execute the merge column command because no column was selected. + + + + + It is not possible to execute the merge column command because only one columns is selected. + + + + + It is not possible to apply the match lines because no column was selected. - - already exists! Are you sure you want to overwrite it? + + It is not possible to apply the match lines because two columns have to be selected. - + Match lines can be applied to Toonz raster levels only. - + It is not possible to merge tlv columns containing more than one level - + The level you are using has not a valid palette. - - + + It is not possible to merge tlv columns because no column was selected. + + + + + It is not possible to merge tlv columns because at least two columns have to be selected. + + + + + + Merging Tlv Levels... + + + + + It is not possible to delete lines because no column, cell or level strip frame was selected. - + The selected column is empty. - + Selected cells must be in the same column. - + Match lines can be deleted from Toonz raster levels only @@ -11040,43 +11170,43 @@ to use the duplicate command in the xsheet / timeline. - + Cannot open menubar settings template file. Re-installing Toonz will solve this problem. - + No more Undo operations available. - + No more Redo operations available. - + The rooms will be reset the next time you run Toonz. - + Visit Web Site - + An update is available for this software. Visit the Web site for more information. - + Check for the latest version on launch. - + https://opentoonz.github.io/e/ @@ -11091,7 +11221,32 @@ Visit the Web site for more information. - + + Warning! + OverwriteDialog + + + + + Overwrite + OverwriteDialog + + + + + Skip + OverwriteDialog + + + + + File "%1" already exists. +Do you want to overwrite it? + OverwriteDialog + + + + Selected folders don't belong to the current project. Do you want to import them or load from their original location? @@ -11101,6 +11256,67 @@ Do you want to import them or load from their original location? Cannot Read XML File + + + It is not possible to find the %1 level. + FileData + + + + + There was an error copying %1 + FileData + + + + + Save Previewed Images + + + + + The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | + + + + + Unsopporter raster format, cannot save + + + + + Cannot create %1 : %2 + Previewer warning %1:path %2:message + + + + + Cannot create %1 + Previewer warning %1:path + + + + + Saved %1 frames out of %2 in %3 + Previewer %1:savedframes %2:framecount %3:filepath + + + + + Canceled! + Previewer + + + + + No frame to save! + + + + + Already saving! + + ReframePopup @@ -11225,14 +11441,6 @@ The audio file will not be included in the rendered clip. - RenderListener - - - Finalizing render, please wait. - - - - RenumberPopup @@ -11259,17 +11467,17 @@ The audio file will not be included in the rendered clip. ReplaceLevelPopup - + Replace Level - + Replace - + File not found @@ -11278,12 +11486,12 @@ The audio file will not be included in the rendered clip. ReplaceParentDirectoryPopup - + Replace Parent Directory - + Replace @@ -12335,19 +12543,6 @@ Please commit or revert changes first. - SaveCurvePopup - - - Save Curve - - - - - Save - - - - SaveImagesPopup @@ -12363,12 +12558,12 @@ Please commit or revert changes first. SaveLevelAsPopup - + Save Level - + Save @@ -12376,12 +12571,12 @@ Please commit or revert changes first. SavePaletteAsPopup - + Save Palette - + Save @@ -12430,40 +12625,14 @@ Please commit or revert changes first. - SavePreviewedPopup - - - Save Previewed Images - - - - - Save - - - - SaveSceneAsPopup - + Save Scene - - Save - - - - - SaveSettingsPopup - - - Save Cleanup Settings - - - - + Save @@ -12471,12 +12640,12 @@ Please commit or revert changes first. SaveSubSceneAsPopup - + Sub-xsheet - + Save @@ -12608,82 +12777,92 @@ Please commit or revert changes first. - + + Flip View + + + + + Reset View + + + + Vector Guided Drawing - + Off - + Closest Drawing - + Farthest Drawing - + All Drawings - + Save Previewed Frames - + Regenerate Preview - + Regenerate Frame Preview - + Show %1 - + Hide %1 - + Table - + Select %1 - + Show / Hide - + Select Camera - + Select Pegbar - + Select Column @@ -12691,79 +12870,84 @@ Please commit or revert changes first. SceneViewerPanel - + Safe Area (Right Click to Select) - + Field Guide - + Camera Stand View - + 3D View - + Camera View - + Freeze - + Preview - + Sub-camera Preview - + Untitled - + Scene: - :: Frame: + :: Project: - - - :: Zoom : + + :: Frame: + :: Zoom : + + + + + (Flipped) - + :: Level: - + Level: @@ -13447,18 +13631,18 @@ Assign to '%3'? - - Choose Project + + Create a New Scene - - Create a New Scene + + Current Project - Open Scene + Recent Scenes [Project] @@ -13533,115 +13717,120 @@ Assign to '%3'? - + pixel - + cm - + mm - + inch - + field - + Save In: - + Camera Size: - + Units: - + Minutes - + No Recent Scenes - + The name cannot be empty. - + The chosen file path is not valid. - + The width must be greater than zero. - + The height must be greater than zero. - + The frame rate must be 1 or more. - + Preset name - + Enter the name for %1 - + Error : Preset Name is Invalid - + The preset name must not use ','(comma). - + Bad camera preset - + '%1' doesn't seem to be a well formed camera preset. Possibly the preset file has been corrupted + + + The selected scene project '%1' is not in the Current Project list and may not open automatically. + + TApp @@ -14373,87 +14562,87 @@ Please refer to the user guide for details. XsheetGUI::CellArea - + Click to select keyframe, drag to move it - + Click and drag to set the acceleration range - + Click and drag to set the deceleration range - + Set the cycle of previous keyframes - + Click and drag to move the selection - + Click and drag to play - + Click and drag to repeat selected cells - + Reframe - + Step - + Each - + Edit Cell Numbers - + Replace Level - + Replace with - + Paste Special - + Edit Image - + Open Memo - + Delete Memo @@ -14773,52 +14962,62 @@ Hold F3 Key on the Viewer to Show This Frame Only XsheetViewer - + Untitled - + Scene: - + + :: Project: + + + + Frames - + + Frame + + + + (Sub) - + Level: - + Selected: - + frame : - + frames * - + column - + columns diff --git a/toonz/sources/translations/korean/toonzlib.ts b/toonz/sources/translations/korean/toonzlib.ts index 48a3131..13db990 100644 --- a/toonz/sources/translations/korean/toonzlib.ts +++ b/toonz/sources/translations/korean/toonzlib.ts @@ -213,113 +213,113 @@ - + Add Fx : - + Insert Fx : - - + + Create Linked Fx : %1 - + Replace Fx : - + Unlink Fx : %1 - - %2 - + Make Macro Fx : %1 - + Explode Macro Fx : %1 - + Create Output Fx - + Connect to Xsheet : - + Disconnect from Xsheet : - + Delete Link - + Delete Fx Node : %1 - + Paste Fx : - + Disconnect Fx - + Connect Fx : %1 - %2 - + Rename Fx : %1 > %2 - + Group Fx - + Ungroup Fx - + Rename Group : %1 > %2 - + Set Keyframe - + Remove Keyframe - + Cycle diff --git a/toonz/sources/translations/korean/toonzqt.ts b/toonz/sources/translations/korean/toonzqt.ts index 4c5867e..cf54816 100644 --- a/toonz/sources/translations/korean/toonzqt.ts +++ b/toonz/sources/translations/korean/toonzqt.ts @@ -68,22 +68,22 @@ AdjustPaletteDialog - + Adjust Current Level to This Palette - + Tolerance - + Apply - + Cancel @@ -264,19 +264,6 @@ Possibly the preset file has been corrupted - DVGui - - - OK - - - - - Cancel - - - - DVGui::CleanupColorField @@ -384,7 +371,7 @@ Possibly the preset file has been corrupted DVGui::ProgressDialog - + OpenToonz @@ -392,7 +379,7 @@ Possibly the preset file has been corrupted DVGui::RadioButtonDialog - + OpenToonz @@ -887,7 +874,7 @@ Possibly the preset file has been corrupted FunctionSegmentViewer - + Linear @@ -918,7 +905,7 @@ Possibly the preset file has been corrupted - + File @@ -938,74 +925,74 @@ Possibly the preset file has been corrupted - + Apply - + From - + To - + Step - - + + < - - + + > - + Speed - + Ease - + Ease% - + Expo - + Expr - + Const - + Similar - + ???? @@ -1021,7 +1008,7 @@ Possibly the preset file has been corrupted FunctionSheet - + Function Editor @@ -1029,75 +1016,105 @@ Possibly the preset file has been corrupted FunctionSheetCellViewer - + Delete Key - + Set Key - + Linear Interpolation - + Speed In / Speed Out Interpolation - + Ease In / Ease Out Interpolation - + Ease In / Ease Out (%) Interpolation - + Exponential Interpolation - + Expression Interpolation - + File Interpolation - + Constant Interpolation - + Step 1 - + Step 2 - + Step 3 - + Step 4 + + + Activate Cycle + + + + + Deactivate Cycle + + + + + Show Inbetween Values + + + + + Hide Inbetween Values + + + + + Change Interpolation + + + + + Change Step + + FunctionToolbar @@ -1115,17 +1132,17 @@ Possibly the preset file has been corrupted FunctionTreeModel - + Stage - + FX - + Plastic Skeleton @@ -1133,34 +1150,34 @@ Possibly the preset file has been corrupted FunctionTreeView - + Table - + Save Curve - + Load Curve - + Export Data - - + + Show Animated Only - - + + Show All @@ -1168,32 +1185,32 @@ Possibly the preset file has been corrupted FxColumnPainter - + &Disconnect from Xsheet - + &Connect to Xsheet - + &Paste Add - + &Preview - + &Uncache Fx - + &Cache FX @@ -1201,17 +1218,17 @@ Possibly the preset file has been corrupted FxOutputPainter - + Output - + &Delete - + &Activate @@ -1219,77 +1236,77 @@ Possibly the preset file has been corrupted FxPainter - + &Open Group - + &Paste Replace - + &Paste Add - + &Delete - + &Disconnect from Xsheet - + &Connect to Xsheet - + &Create Linked FX - + &Unlink - + &Make Macro FX - + &Explode Macro FX - + &Open Macro FX - + &Save As Preset... - + &Preview - + &Uncache FX - + &Cache FX @@ -1297,17 +1314,17 @@ Possibly the preset file has been corrupted FxPalettePainter - + &Disconnect from Xsheet - + &Connect to Xsheet - + &Preview @@ -1315,12 +1332,12 @@ Possibly the preset file has been corrupted FxSchematicLink - + &Delete - + &Paste Insert @@ -1328,7 +1345,7 @@ Possibly the preset file has been corrupted FxSchematicOutputNode - + Output @@ -1336,12 +1353,12 @@ Possibly the preset file has been corrupted FxSchematicPort - + &Disconnect from Xsheet - + &Connect to Xsheet @@ -1349,19 +1366,19 @@ Possibly the preset file has been corrupted FxSchematicScene - + Cannot Paste Insert a selection of unconnected FX nodes. Select FX nodes and related links before copying or cutting the selection you want to paste. - + Cannot Paste Add a selection of unconnected FX nodes. Select FX nodes and related links before copying or cutting the selection you want to paste. - + Cannot Paste Replace a selection of unconnected FX nodes. Select FX nodes and related links before copying or cutting the selection you want to paste. @@ -1370,7 +1387,7 @@ Select FX nodes and related links before copying or cutting the selection you wa FxSchematicXSheetNode - + XSheet @@ -1378,37 +1395,37 @@ Select FX nodes and related links before copying or cutting the selection you wa FxSettings - + &Camera Preview - + &Preview - + &White Background - + &Black Background - + &Checkered Background - + Fx Settings - + : @@ -1416,17 +1433,17 @@ Select FX nodes and related links before copying or cutting the selection you wa FxXSheetPainter - + XSheet - + &Paste Add - + &Preview @@ -1506,14 +1523,6 @@ Select FX nodes and related links before copying or cutting the selection you wa - MyPaintBrushStyleChooserPage - - - Plain color - - - - NewWordDialog @@ -1534,139 +1543,139 @@ Select FX nodes and related links before copying or cutting the selection you wa PaletteViewer - - - + + + &Save Palette As - - - + + + &Save Palette - - + + Lock Palette - + &Lock Palette - + Options - + &Small Thumbnails View - + &Medium Thumbnails View - + &Large Thumbnails View - + &List View - + Style Name - + StudioPalette Name - + Both Names - + &New Page - - + + &New Style - - + + &Move Palette - + &Palette Gizmo - + New Page - + Delete Page - + Overwrite - + Don't Overwrite - + Palette - + Level Palette: - + Cleanup Palette - + Studio Palette - + (Color Model: - + ) @@ -1674,22 +1683,22 @@ Select FX nodes and related links before copying or cutting the selection you wa PaletteViewerGUI::PageViewer - + - No Styles - - + Name Editor - + New Style - + New Page @@ -1742,6 +1751,19 @@ Select FX nodes and related links before copying or cutting the selection you wa + PlaneViewer + + + Reset View + + + + + Fit To Window + + + + PointParamField @@ -1771,11 +1793,10 @@ Are you sure? - - - - - + + + + Cancel @@ -1922,12 +1943,12 @@ Are you sure? - + Stage Schematic - + FX Schematic @@ -1937,30 +1958,27 @@ Are you sure? - - Save - - - - - Discard + + Plain color + VectorBrushStyleChooserPage - - - Yes + + Custom Texture + TextureStyleChooserPage - - - No + + Plain color + MyPaintBrushStyleChooserPage - - Replace + + Plain color + SpecialStyleChooserPage @@ -2025,17 +2043,17 @@ Are you sure? - + Palette - + Overwrite - + Don't Overwrite @@ -2045,6 +2063,16 @@ Are you sure? + + Current Frame: + + + + + File History + + + Fullpath: @@ -2265,11 +2293,6 @@ Are you sure? - - OpenToonz 1.2 - - - Information @@ -2290,38 +2313,43 @@ Are you sure? - + Apply - + + OK + + + + Styles you are going to delete are used to paint lines and areas in the animation level. - + How do you want to proceed? - + Delete Styles Only - + Delete Styles, Lines and Areas - + Ok - + Deletion of Lines and Areas from raster-based levels is not undoable. Are you sure? @@ -2337,70 +2365,70 @@ Are you sure? - + Failed to compile m_textureShader.vert. gl - + Failed to compile m_shader.frag. gl - + Failed to add m_shader.vert. gl - + Failed to add m_shader.frag. gl - + Failed to link simple shader: %1 gl - - + + Failed to get attribute location of %1 gl - - + + Failed to get uniform location of %1 gl - + Failed to Open 3DLUT File. - + Failed to Load 3DLUT File. It should start with "3DMESH" keyword. - + Failed to Load 3DLUT File. The second line should be "Mesh [Input bit depth] [Output bit depth]" - - + + Failed to Load 3DLUT File. @@ -2408,7 +2436,7 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< QPushButton - + OK @@ -2416,61 +2444,61 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< SchematicViewer - + &Fit to Window - + &Focus on Current - + &Reorder Nodes - + &Reset Size - - - + + + &Minimize Nodes - - - + + + &Maximize Nodes - + &New Pegbar - + &New Camera - + &New Motion Path - + &Swtich output port display mode - + &Toggle node icons @@ -2507,14 +2535,6 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< - SpecialStyleChooserPage - - - Plain color - - - - SpeedInOutSegmentPage @@ -2588,90 +2608,139 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< StudioPaletteTreeViewer - + + The current palette %1 +in the studio palette has been modified. Do you want to save your changes? + + + + + Save + + + + + Discard + + + + + Convert %1 to Studio Palette and Overwrite. +Are you sure ? + + + + This folder is not empty. Delete anyway? - + + Convert + + + + + Replacing all selected palettes with the palette "%1". +Are you sure ? + + + + + Replacing the palette "%1" with the palette "%2". +Are you sure ? + + + + + Replace + + + + New Palette - + New Folder - + Delete Folder - - + + Load into Current Palette - + Adjust Current Level to This Palette - - + + Merge to Current Palette - - + + Replace with Current Palette - + Delete Palette - + Convert to Studio Palette and Overwrite - + Search for Palettes - + + Delete - + the palette "%1" - + the selected palettes - + Move %1 to "%2". Are you sure ? - + Move - + + + + + Cancel @@ -2679,135 +2748,135 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< StyleEditor - + Generated - + Trail - + Vector Brush - + Show or hide parts of the Color Page. - + Wheel - + HSV - + Alpha - + RGB - + Toggle orientation of the Color Page. - + Auto - + Apply - + Apply changes to current style - + Automatically update style changes - + Return To Previous Style - + Current Style - - - + + + Color - + Texture - + Vector - + Raster - - + + Settings - + No Style Selected - + Palette - + Style Editor - No Valid Style Selected - + [CLEANUP] - + [STUDIO] - + [LEVEL] @@ -2815,37 +2884,37 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< StyleEditorGUI::ColorChannelControl - + R - + G - + B - + A - + H - + S - + V @@ -2853,12 +2922,12 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< StyleEditorGUI::SettingsPage - + Autopaint for Lines - + Reset to default @@ -2902,6 +2971,19 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< + SwatchViewer + + + Reset View + + + + + Fit To Window + + + + TMessageViewer @@ -2943,14 +3025,6 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< - VectorBrushStyleChooserPage - - - Plain color - - - - WordButton diff --git a/toonz/sources/translations/russian/tnzcore.ts b/toonz/sources/translations/russian/tnzcore.ts index 5fcd24d..c9ce570 100644 --- a/toonz/sources/translations/russian/tnzcore.ts +++ b/toonz/sources/translations/russian/tnzcore.ts @@ -35,7 +35,7 @@ QObject - + colors цвета diff --git a/toonz/sources/translations/russian/tnztools.ts b/toonz/sources/translations/russian/tnztools.ts index 4cfca50..bfc4278 100644 --- a/toonz/sources/translations/russian/tnztools.ts +++ b/toonz/sources/translations/russian/tnztools.ts @@ -4,107 +4,107 @@ ArrowToolOptionsBox - - + + E/W: запад/восток E/W: - - + + N/S: север/юг N/S: - + SO: порядок размещения: Порядок: - + Position Положение - + Z: глубина Z: - + ( ( - + ) ) - + Rotation Вращение - + Scale Масштаб - + Global: Глобальный: - + Position: Положение: - + Rotation: Вращение: - - + + H: горизонтально H: - - + + V: вертикально V: - + Maintain: Поддерживать: - + Shear Скос - + Center Position Центральное положение - + Table Стол - + Pick: Выбрать: @@ -277,17 +277,17 @@ BrushToolOptionsBox - + Preset Name Имя предустановки - + OK OK - + Cancel Отмена @@ -316,7 +316,7 @@ DVGui::StyleIndexLineEdit - + current текущий @@ -669,44 +669,44 @@ FullColorBrushTool - - + + Size Размер - + Pressure Нажим - - + + Opacity Непрозрачность - + Hardness: Жесткость: - + Preset: Предустановка: - + Eraser Ластик - + Lock Alpha Заблокировать альфа канал - + <custom> <пользовательская> @@ -765,6 +765,22 @@ + FullColorFillTool + + + Fill Depth + Глубина заливки + + + + HandToolOptionsBox + + + Reset Position + + + + HookTool @@ -834,27 +850,27 @@ PlasticTool - + Swap Edge Переставить ребро (изменить топологию) - + Collapse Edge Убрать ребро - + Split Edge Разделить ребро - + Cut Mesh Резать полисетку - + Delete Vertex Удалить вершину @@ -1218,14 +1234,14 @@ Do you want to proceed? Вставить - - + + Min: Мин: - - + + Max: Макс: @@ -1307,17 +1323,17 @@ Do you want to proceed? Изменить Fx-гаджет - + The current column is locked. Текущий столбец на замке. - + The current column is hidden. Текущий столбец скрыт. - + It is not possible to edit the audio column. Невозможно редактировать столбец аудио. @@ -1326,63 +1342,63 @@ Do you want to proceed? Редактировать столбец Magpie невозможно. - + Note columns can only be edited in the xsheet or timeline. Столбцы заметок можно редактировать только в Xsheet или на временной шкале. - + The current tool cannot be used on a Level column. Текущий инструмент нельзя использовать в столбце уровня. - + The current tool cannot be used on a Mesh column. Текущий инструмент нельзя использовать в столбце полисетки. - + The current tool cannot be used in Level Strip mode. Текущий инструмент нельзя использовать в режиме "Полоса уровней". - + The current tool cannot be used to edit a motion path. Текущий инструмент не может использоваться для редактирования траектории. - - + + The current level is not editable. Текущий уровень не редактируется. - + The current tool cannot be used on a Vector Level. Текущий инструмент нельзя использовать в векторном уровне. - + The current tool cannot be used on a Toonz Level. Текущий инструмент нельзя использовать в Toonz уровне. - + The current tool cannot be used on a Raster Level. Текущий инструмент нельзя использовать в растровом уровне. - + The current tool cannot be used on a Mesh Level. Текущий инструмент нельзя использовать в уровне полисетки. - + The current tool cannot be used on a mesh-deformed level Текущий инструмент нельзя использовать в уровне деформации полисетки - + The current frame is locked: any editing is forbidden. Текущий кадр заблокирован: любое редактирование запрещено. @@ -1449,7 +1465,7 @@ Do you want to proceed? RGBPickerToolOptionsBox - + Pick Screen Экранный выбор @@ -1534,39 +1550,47 @@ Do you want to proceed? + RotateToolOptionsBox + + + Reset Rotation + + + + RulerToolOptionsBox - + X: ruler tool option X: - + Y: ruler tool option Y: - + W: ruler tool option Ш: - + H: ruler tool option В: - + A: ruler tool option У: - + L: ruler tool option Д: @@ -1598,48 +1622,48 @@ Do you want to proceed? SelectionToolOptionsBox - + H: H: - + V: V: - + Link Связать - - + + Rotation Вращение - + E/W: E/W: - + N/S: N/S: - + Scale Масштаб - + Position Положение - + Thickness Толщина @@ -1647,22 +1671,22 @@ Do you want to proceed? ShiftTraceToolOptionBox - + Reset Previous Сбросить изменения - + Reset Following Сбросить изменения - + Previous Drawing Предыдущий рисунок - + Following Drawing Следующий рисунок @@ -1708,47 +1732,47 @@ Do you want to proceed? StylePickerTool - + No current level. Нет текущего уровня. - + Current level has no available palette. У текущего уровеня нет доступной палитры. - + Palette must have more than one palette to be organized. Для упорядочивания палитры требуется более одной страницы. - + Mode: Режим: - + Lines Линии - + Areas Области - + Lines & Areas Линии и области - + Passive Pick Пассивная пипетка - + Organize Palette Упорядочить палитру @@ -1756,7 +1780,7 @@ Do you want to proceed? StylePickerToolOptionsBox - + With this option being activated, the picked style will be moved to the end of the first page of the palette. При активации этого параметра, выбранный стиль будет перемещен в конец первой страницы палитры. @@ -1807,7 +1831,7 @@ moved to the end of the first page of the palette. - + <custom> <пользовательская> @@ -2024,4 +2048,12 @@ moved to the end of the first page of the palette. Прямоугольный + + ZoomToolOptionsBox + + + Reset Zoom + + + diff --git a/toonz/sources/translations/russian/toonz.ts b/toonz/sources/translations/russian/toonz.ts index 6bf7471..8a12738 100644 --- a/toonz/sources/translations/russian/toonz.ts +++ b/toonz/sources/translations/russian/toonz.ts @@ -65,42 +65,42 @@ AdjustThicknessPopup - + Adjust Thickness Отрегулировать толщину - + Mode: Режим: - + Scale Thickness Масштаб толщины - + Add Thickness Добавить толщину - + Constant Thickness Постоянная толщина - + Start: Начало: - + End: Конец: - + Apply Применить @@ -131,14 +131,12 @@ ApplyMatchlinesCommand - It is not possible to apply the match lines because no column was selected. - Невозможно применить разделительные линии, потому что не был выбран столбец. + Невозможно применить разделительные линии, потому что не был выбран столбец. - It is not possible to apply the match lines because two columns have to be selected. - Невозможно применить разделительные линии, потому что нужно выбрать два столбца. + Невозможно применить разделительные линии, потому что нужно выбрать два столбца. @@ -584,12 +582,12 @@ Do you want to save your changes? BrowserPopup - + Choose Выбрать - + Path %1 doesn't exists. Пути %1 не существует. @@ -1293,14 +1291,12 @@ What do you want to do? CloneLevelUndo::LevelNamePopup - Clone Level - Клонировать уровень + Клонировать уровень - Level Name: - Имя уровня: + Имя уровня: @@ -1429,94 +1425,99 @@ What do you want to do? ComboViewerPanel - + GUI Show / Hide Показать / скрыть GUI - + Toolbar Панель инструментов - + Tool Options Bar Панель настройки инструментов - + Console Консоль - + Safe Area (Right Click to Select) Безопасная зона (Щелкните правой кнопкой мыши, чтобы выбрать) - + Field Guide Направляющая сетка - + Camera Stand View Стандартный вид с камеры - + 3D View 3D-просмотр - + Camera View Вид с камеры - + Freeze Заморозить - + Preview Предпросмотр - + Sub-camera Preview Предпросмотр суб-камеры - + Untitled Безымянный - + Scene: Сцена: + :: Project: + + + + :: Frame: :: Кадр: - - - + + + (Flipped) (Перевёрнутый) - + :: Level: :: Уровень: - + Level: Уровень: @@ -1932,12 +1933,12 @@ contain the dpi information, then the current camera dpi will be used. DVGui::ProgressDialog - + Loading "%1"... Загрузка "%1"... - + Importing "%1"... Импорт "%1"... @@ -2201,14 +2202,12 @@ contain the dpi information, then the current camera dpi will be used. ExportCurvePopup - Export Curve - Экспорт кривой + Экспорт кривой - Export - Экспорт + Экспорт @@ -2645,12 +2644,12 @@ contain the dpi information, then the current camera dpi will be used. Выполнено: 2 уровня, конвертированы в формат TLV - + New Folder Новая папка - + It is not possible to create the %1 folder. Не удалось создать папку %1. @@ -2693,33 +2692,27 @@ contain the dpi information, then the current camera dpi will be used. FileData - It is not possible to find the %1 level. - Не удается найти уровень %1. + Не удается найти уровень %1. - There was an error copying %1 - Произошла ошибка при копировании %1 + Произошла ошибка при копировании %1 FileSelection - Collecting assets... - Сбор материалов... + Сбор материалов... - - Abort - Прервать + Прервать - Importing scenes... - Импорт сцен... + Импорт сцен... @@ -2873,12 +2866,12 @@ Do you want to overwrite it? FlipbookPanel - + Safe Area (Right Click to Select) Безопасная зона (Щелкните правой кнопкой мыши, чтобы выбрать) - + Minimize Уменьшить @@ -2920,80 +2913,80 @@ Do you want to overwrite it? ImageViewer - - - + + + Flipbook Histogram Гистограмма Flipbook - + Clone Preview Клонировать предпросмотр - + Unfreeze Preview Разморозить предпросмотр - + Freeze Preview Заморозить предпросмотр - + Regenerate Preview Регенерировать предпросмотр - + Regenerate Frame Preview Регенерировать предпросмотр кадра - + Load / Append Images Загрузка / Добавление изображений - + Save Images Сохранить изображения - + Reset View Вид по умолчанию - + Fit To Window По размеру окна - + Exit Full Screen Mode Выход из полноэкранного режима - + Full Screen Mode Полноэкранный режим - + Show Histogram Показать гистограмму - + Swap Compared Images Поменять сравниваемые изображения - - + + :: Zoom : :: Зум : @@ -3001,17 +2994,17 @@ Do you want to overwrite it? ImportMagpieFilePopup - + Import Magpie File Импортировать файл Magpie - + Load Загрузить - + %1 does not exist. %1 не существует. @@ -3791,6 +3784,11 @@ Please use the frame numbers for reference. Кадр Sub-xsheet + + Drawing: + + + Unable to open the file: @@ -3814,17 +3812,17 @@ Please use the frame numbers for reference. LoadColorModelPopup - + Load Color Model Загрузить цветовую модель - + Frames : Кадры: - + Load Загрузить @@ -3832,14 +3830,12 @@ Please use the frame numbers for reference. LoadCurvePopup - Load Curve - Загрузить кривую + Загрузить кривую - Load - Загрузить + Загрузить @@ -3896,85 +3892,85 @@ Please use the frame numbers for reference. LoadLevelPopup - + Load Level Загрузить уровень - + Load Загрузить - + TLV Caching Behavior Кэширование данных изображения TLV - + Load Subsequence Level Загрузить субсеквенционный уровень - + Arrangement in Xsheet Расположение в Xsheet - + (FILE DOES NOT EXIST) (ФАЙЛ НЕ СУЩЕСТВУЕТ) - + On Demand По требованию - + All Icons Все иконки - + All Icons & Images Все иконки и изображения - - + + From: От: - - + + To: До: - + Step: Шаг: - + Inc: ? Прирост: - + Level Name: Имя уровня: - + Frames: Кадры: - + :: :: @@ -3982,22 +3978,22 @@ Please use the frame numbers for reference. LoadScenePopup - + Load Scene Загрузить сцену - + Load Загрузить - + is not a scene file. не является файлом сцены. - + does not exist. не существует. @@ -4005,40 +4001,37 @@ Please use the frame numbers for reference. LoadSettingsPopup - Load Cleanup Settings - Загрузить настройки очистки + Загрузить настройки очистки - Load - Загрузить + Загрузить - %1 does not exist. - %1 не существует. + %1 не существует. LoadSubScenePopup - + Load Sub-Xsheet Загрузить Sub-Xsheet - + Load Загрузить - + is not a scene file. не является файлом сцены. - + does not exist. не существует. @@ -4165,357 +4158,357 @@ Please use the frame numbers for reference. MainWindow - + Untitled Безымянный - + Cleanup Очистка - + PltEdit Палитра - + InknPaint InknPaint - + Xsheet Xsheet - + About OpenToonz О программе - + Close Закрыть - + Cannot delete Не удается удалить - + &New Scene &Новая сцена - + &Load Scene... &Загрузить сцену... - + &Save Scene &Сохранить сцену - + &Save Scene As... &Сохранить сцену как... - + &Save All &Сохранить все - + &Revert Scene &Откатить сцену - + &Load Folder... &Загрузить папку ... - + &Load As Sub-xsheet... &Загрузить как Sub-xsheet... - + &Open Recent Scene File &Открыть предыдущую сцену - + &Open Recent Level File &Открыть предыдущий уровень - + &Clear Recent Scene File List &Очистить список предыдущих сцен - + &Clear Recent level File List &Очистить список предыдущих уровней - + &New Level... &Новый уровень... - + &New Vector Level &Новый векторный уровень - + New Vector Level Новый векторный уровень - + &New Toonz Raster Level &Новый растровый уровень Toonz - + New Toonz Raster Level Новый растровый уровень Toonz - + &New Raster Level &Новый растровый уровень - + New Raster Level Новый растровый уровень - + &Load Level... &Загрузить уровень... - + &Save Level &Сохранить уровень - + &Save All Levels &Сохранить все уровни - + &Save Level As... &Сохранить уровень как... - + &Export Level... &Экспортировать уровень... - + &Convert File... &Конвертировать файл... - + &Save Palette As... &Сохранить палитру как... - + &Save Palette &Сохранить палитру - + &Load Color Model... &Загрузить цветовую модель... - + &Import Magpie File... &Импортировать файл Magpie... - + &New Project... &Новый проект... - + &Project Settings... &Настройки проекта... - + &Save Default Settings &Сохранить настройки по умолчанию - + &Output Settings... &Настройки вывода ... - + &Preview Settings... &Настройки предпросмотра... - + &Render &Рендер - + &Fast Render to MP4 &Рендер в MP4 - + &Preview &Предпросмотр - + &Export Soundtrack &Экспортировать звуковую дорожку - + &Save Previewed Frames &Сохранить кадры предпросмотра - + &Regenerate Preview &Регенерировать предпросмотр - + &Regenerate Frame Preview &Регенерировать предпросмотр кадра - + &Clone Preview &Клонировать предпросмотр - + &Freeze//Unfreeze Preview &Заморозить//разморозить предпросмотр - + Freeze Preview Заморозить предпросмотр - + Unfreeze Preview Разморозить предпросмотр - + &Save As Preset &Сохранить как предустановку - + &Preferences... &Настройки программы... - + &Configure Shortcuts... &Настройка горячих клавиш... - + &Print Xsheet &Экспортировать Xsheet в HTML - + Run Script... Запустить скрипт... - + Open Script Console... Открыть командную строку ... - + &Print Current Frame... &Распечатать текущий кадр... - + &Quit &Выйти - + Reload qss Обновить qss - + &Load Recent Image Files &Загрузить предыдущие файлы изображений - + &Clear Recent Flipbook Image List &Очистить список предыдущих изображений Flipbook - + Preview Fx Предпросмотр Fx - + &Select All &Выбрать все - + &Invert Selection &Обратить выделенное - + &Undo &Отменить - + &Redo &Повторить - + &Cut &Вырезать - + &Copy &Копировать @@ -4524,192 +4517,191 @@ Please use the frame numbers for reference. &Вставить - + &Merge &Слить - + &Paste Into &Поместить в - + &Paste Color && Name &Вставить цвет и имя - + Paste Color Вставить цвет - + Paste Name Вставить имя - + Get Color from Studio Palette Взять цвет из Studio Palette - + Toggle Link to Studio Palette Переключить линк на Studio Palette - + Remove Reference to Studio Palette Удалить референс на Studio Palette - + &Delete &Удалить - + &Insert &Вставить - + &Group &Сгруппировать - + &Ungroup &Разгруппировать - + &Bring to Front &На передний план - + &Bring Forward &На порядок выше - &Send Back - &На порядок ниже + &На порядок ниже - + &Send Backward &На задний план - + &Enter Group &Войти в группу - + &Exit Group &Выйти из группы - + &Remove Vector Overflow &Удалить векторные излишки - + &Touch Gesture Control &Управление сенсорными жестами - + &Define Scanner... &Определить сканер... - + &Scan Settings... &Настройки сканера... - + &Scan &Сканирование - + &Autocenter... &Автоцентр... - + &Set Cropbox &Установить область обрезки - + &Reset Cropbox &Сбросить область обрезки - + &Cleanup Settings... &Настройки очистки... - + &Preview Cleanup &Просмотр очистки - + &Camera Test &Тестирование камеры - + &Opacity Check &Opacity Check - + &Cleanup &Очистка - + &Camera Capture... &Захват камеры... - + &Add Frames... &Добавить кадры... - + &Renumber... &Пересчитать... - + &Replace Level... &Заменить уровень ... - + &Revert to Cleaned Up &Возврат к очистке - + Separate Colors... Разделить цвета... - + Animate Tool Инструмент анимирования @@ -4718,554 +4710,578 @@ Please use the frame numbers for reference. &Возврат к последней сохраненной версии - + &Paste Insert &Вставить вставку - + &Paste Insert Above/After &Вставить копию спереди/сзади - + &Insert Above/After &Вставить пробел cпереди/сзади - + + &Send to Back + + + + &Expose in Xsheet &Экспонировать в Xsheet - + &Display in Level Strip &Отобразить в Level Strip - + &Level Settings... &Настройки уровня... - + Adjust Levels... Коррекция цветовых уровней... - + Adjust Thickness... Отрегулировать толщину... - + &Antialias... &Сглаживание... - + &Binarize... &Бинаризация... - + &Brightness and Contrast... &Яркость и контрастность... - + &Color Fade... &Спад цвета... - + &Capture &Захват - + &Canvas Size... &Размер холста... - + &Info... &Инфо... - + &View... &Вид... - + &Remove All Unused Levels &Удалить все неиспользуемые в сцене уровни - + &Replace Parent Directory... &Заменить родительский каталог ... - + &Scene Settings... &Настройки сцены... - - + + &Camera Settings... &Настройки камеры... - + &Open Sub-xsheet &Открыть Sub-xsheet - + &Close Sub-xsheet &Закрыть Sub-xsheet - + Explode Sub-xsheet Разбить Sub-xsheet - + Collapse Коллапс - + Toggle Edit in Place Переключить Редактировать на месте - + &Save Sub-xsheet As... &Сохранить Sub-xsheet как... - + Resequence Пересчитать секвенцию - + Clone Sub-xsheet Клонировать Sub-xsheet - + &Apply Match Lines... &Применить разделительные линии... - + &Merge Tlv Levels... &Объединить уровни Tlv ... - + &Delete Match Lines &Удалить разделительные линии - + &Delete Lines... &Удалить линии... - + &Merge Levels &Объединить уровни - + &New FX... &Новый FX... - + &New Output &Новый вывод - + &Edit FX... &Редактировать FX... - + Insert Frame Вставить кадр - + Remove Frame Удалить кадр - + Insert Multiple Keys Вставить несколько ключей - + Remove Multiple Keys Удаление нескольких ключей - + Remove Empty Columns Удалить пустые столбцы - + &Reverse &Обратить - + &Swing &Добавить в обратном порядке - + &Random &Случайно - + &Autoexpose &Автоэкспонирование - + &Repeat... &Повторение... - + &Reset Step &Сбросить шаг - + &Increase Step &Увеличить шаг - + &Decrease Step &Уменьшить шаг - + &Step 2 &Шаг 2 - + &Step 3 &Шаг 3 - + &Step 4 &Шаг 4 - + &Each 2 &Каждые 2 - + &Each 3 &Каждые 3 - + &Each 4 &Каждые 4 - + &Roll Up думаю, так будет понятнее, чем "все кадры кроме первого наверх" &Первый вниз - + &Roll Down &Последний наверх - + &Time Stretch... &Растяжение времени... - + &Duplicate Drawing &Дублировать рисунок - + &Autorenumber &Автопересчет - + &Clone &Клонировать - + Drawing Substitution Forward Заправка чертежа вперед - + Drawing Substitution Backward Заправка чертежа назад - + Similar Drawing Substitution Forward Заправка аналогичных чертежей вперед - + Similar Drawing Substitution Backward Заправка аналогичных чертежей назад - + 1's по 1 - + 2's по 2 - + 3's по 3 - + 4's по 4 - + &Fill In Empty Cells &Заполнить пустые ячейки - + &Set Key &Установить ключ - + &Camera Box &Граница камеры - + &Table &Таблица - + &Field Guide &Направляющая сетка - + &Raster Bounding Box &Растровая граница - + &Field Guide in Capture Window &Направляющая сетка в окне захвата - + &Safe Area &Безопасная зона - + &Camera BG Color &Цвет фона камеры - + &Guide &Ориентир - + &Ruler &Линейка - + &Transparency Check &Проверка прозрачности - + &Ink Check &Проверка штриха - + &Ink#1 Check &Проверка штриха#1 - + &Paint Check &Проверка цвета - + Inks &Only Только &линии - + &Fill Check &Проверка заполнения - + &Black BG Check &На чёрном фоне - + &Gap Check &Проверка замкнутости - + Shift and Trace Сдвинуть и калькировать (Shift and Trace) - + Edit Shift Редактировать сдвиг - + No Shift Без сдвига - + Reset Shift Сбросить сдвиг - + &Visualize Vector As Raster &Отображать вектор как растр - + &Histogram &Гистограмма - + Link Flipbooks Link Flipbooks - + Play Воспроизведение - + Loop По кругу - + Pause Пауза - + First Frame Первый кадр - + Last Frame Последний кадр - + Previous Frame Предыдущий кадр - + Next Frame Следующий кадр - + Next Drawing Следующий рисунок - + Prev Drawing Предыдущий рисунок - + Next Step Следующий шаг - + Prev Step Предыдущий шаг - + Red Channel Красный канал - + Green Channel Зеленый канал - + Blue Channel Голубой канал - + + + Reset Zoom + + + + + + Reset Rotation + + + + + + Reset Position + + + + + Flip Viewer Horizontally Отзеркалить горизонтально @@ -5274,267 +5290,267 @@ Please use the frame numbers for reference. Матовый канал - + Red Channel Greyscale Красный канал в оттенках серого - + Green Channel Greyscale Зеленый канал в оттенках серого - + Blue Channel Greyscale Голубой канал в оттенках серого - + Compare to Snapshot Сравнить с Snapshot - + Toggle Autofill on Current Palette Color Переключить автозаливку на текущий цвет палитры - + &Lock Room Panes &Заблокировать Room Panes - + &Export &Экспортировать - + &File Browser &Браузер файлов - + &Flipbook &Flipbook - + &Function Editor &Редактор функций - + &Level Strip &Level Strip - + &Palette &Палитра - + &Palette Gizmo &Палитра Gizmo - + &Delete Unused Styles &Удалить неиспользуемые стили - + &Tasks &Задания - + &Batch Servers &Пакетные серверы - + &Message Center &Центр сообщений - + &Color Model &Цветовая модель - + &Studio Palette &Палитра Studio - + &Schematic &Схема - + &Cleanup Settings &Настройки очистки - + &Scene Cast &Состав сцены - + &Style Editor &Редактор стилей - + &Toolbar &Панель инструментов - + &Tool Option Bar &Панель настройки инструментов - + &Viewer &Просмотрщик - + &LineTest Capture &LineTest захват - + &LineTest Viewer &LineTest просмотрщик - + &Xsheet &Xsheet - + &Timeline &Таймлайн - + &ComboViewer &ComboViewer - + &History &История - + Record Audio Запись аудио - + &Reset to Default Rooms &Сбросить вкладки по умолчанию - + Toggle Maximize Panel Переключить максимизацию панелей - + Toggle Main Window's Full Screen Mode Переключить главное окно в полноэкранный режим - + &About OpenToonz... &О программе... - + &Startup Popup... &Стартовое окно... - + &Blend colors &Смешивание цветов - + Onion Skin Toggle Переключение видимости кальки - + Zero Thick Lines Линии нулевой толщины - + Toggle Cursor Size Outline Переключить размер контура курсора - + Duplicate Дублировать - + Show Folder Contents Показать содержимое папки - + Convert... Конвертировать... - + Collect Assets Сбор активов - + Import Scene Импортировать сцену - + Export Scene... Экспортировать сцену... - + Convert to Vectors... Конвертировать в вектор... - + Tracking... Трекинг... - + Remove Level Удалить уровень - + Add As Render Task Добавить как задачу рендеринга - + Add As Cleanup Task Добавить как задачу очистки @@ -5543,32 +5559,32 @@ Please use the frame numbers for reference. Выделить все ключи в этом ряду - + Select All Keys in this Column Выделить все ключи в этом столбце - + Select All Keys Выделить все ключи - + Select All Following Keys Выделить все следующие ключи - + Select All Previous Keys Выделить все предыдущие ключи - + Select Previous Keys in this Column Выделить предыдущие ключи в этом столбце - + Select Following Keys in this Column Выделить все следующие ключи в этом столбце @@ -5581,247 +5597,247 @@ Please use the frame numbers for reference. Выделить все следующие ключи в этом ряду - + &Reload &Перезагрузить - + &Toggle Edit In Place &Редактировать на месте - + New Note Level Новый уровень заметок - + &Apply Lip Sync Data to Column &Применить данные липсинга к столбцу - + Toggle XSheet Toolbar Показать/скрыть панель Xsheet - + Reframe with Empty Inbetweens... Перекадрировать с пустыми промежутками... - + Auto Input Cell Number... Автоматический ввод номера ячейки... - + &Paste Numbers &Вставлять номер видео - + Alpha Channel Альфа-канал - + &Command Bar &Панель команд - + Toggle Current Time Indicator Скрыть/показать индикатор кадра - + Vectors to Toonz Raster Конвертировать вектор в Toonz растр - + Replace Vectors with Simplified Vectors Заменить вектора упрощенными векторами - + Select All Keys in this Frame Выделить все ключи в этом кадре - + Select Previous Keys in this Frame Выделить все предыдущие ключи перед кадром - + Select Following Keys in this Frame Выделить все последующие ключи после кадра - + Invert Key Selection Инвертировать выбор ключей - + Set Acceleration Установка ускорения - + Set Deceleration Установка замедления - + Set Constant Speed Установить постоянную скорость - + Reset Interpolation Сбросить интерполяцию - + Linear Interpolation Линейная интерполяция - + Speed In / Speed Out Interpolation Интерполяция ускорения в начале/в конце - + Ease In / Ease Out Interpolation Интерполяция замедления в начале/в конце - + Ease In / Ease Out (%) Interpolation Интерполяция замедления в начале/в конце (%) - + Exponential Interpolation Экспоненциальная интерполяция - + Expression Interpolation Интерполяция выражений - + File Interpolation Интерполяция из файла - + Constant Interpolation Постоянная интерполяция - + Fold Column Свернуть столбцы - + Show This Only Показать только это - + Show Selected Показать выбранные - + Show All Показать все - + Hide Selected Скрыть выбранные - + Hide All Скрыть все - + Toggle Show/Hide Переключить: Показать/Спрятать - + ON This Only ВКЛ только это - + ON Selected ВКЛ выбранные - + ON All ВКЛ все - + OFF All ВЫКЛ все - + OFF Selected ВЫКЛ выбранные - + Swap ON/OFF Переключить ВКЛ/ВЫКЛ - + Lock This Only Заблокировать это только - + Lock Selected Заблокировать выбранные - + Lock All Заблокировать все - + Unlock Selected Разблокировать выбранные - + Unlock All Разблокировать все - + Swap Lock/Unlock Переключатель Блокировать/Разблокировать - + Hide Upper Columns Скрыть верхние столбцы @@ -5830,157 +5846,160 @@ Please use the frame numbers for reference. Инструмент редактирования - + Selection Tool Инструмент выделения - + Brush Tool Кисть - + Geometric Tool Геометрический инструмент - + Type Tool Инструмент шрифта - + Fill Tool Заливка - + Paint Brush Tool Инструмент покраски - + Eraser Tool Ластик - + Tape Tool Скотч - + Style Picker Tool Пипетка - + RGB Picker Tool Инструмент RGB пипетка - + Control Point Editor Tool Редактор контрольных точек - + Pinch Tool Щипок - + Pump Tool Насос - + Magnet Tool Магнит - + Bender Tool Клещи - + Iron Tool Утюг - + Cutter Tool Нож - + Skeleton Tool Скелет - + Tracker Tool Трекер - + Hook Tool Крюк - + Zoom Tool Лупа - + Rotate Tool Поворот - + Hand Tool Рука - + Plastic Tool Plastic Tool - + Ruler Tool Рулетка - + Finger Tool Палец - + Zoom In Приблизить - + Zoom Out Отдалить - + + Reset View Вид по умолчанию - + + Fit to Window По размеру окна - + + Actual Pixel Size Фактический пиксельный размер @@ -5989,352 +6008,363 @@ Please use the frame numbers for reference. Повернуть просмотр горизонтально - + + Flip Viewer Vertically Повернуть просмотр вертикально - + Show//Hide Full Screen Показать // Скрыть полный экран - + Full Screen Mode Полноэкранный режим - + Exit Full Screen Mode Выход из полноэкранного режима - + Refresh Folder Tree Обновить дерево папок - + Refresh Обновить - + Global Key Глобальный ключ - + Brush size - Increase max Размер кисти - Увеличить макс - + Brush size - Decrease max Размер кисти - Уменьшение макс - + Brush size - Increase min Размер кисти - Увеличить мин - + Brush size - Decrease min Размер кисти - Уменьшение мин - + Brush hardness - Increase Жесткость кисти - увеличение - + Brush hardness - Decrease Жесткость кисти - уменьшение - + SnapSensitivity Чувствительность - + Auto Group Автогруппа - + Break sharp angles Разрыв острых углов - + Frame range Диапазон кадров - + Inverse kinematics Инверсная кинематика - + Invert Инвертировать - + Manual Вручную - + Onion skin Калька - + Orientation Ориентация - + Pencil Mode Режим карандаша - + Preserve Thickness Сохранять толщину - + Pressure Sensitivity Чувствительность к давлению - + Segment Ink Сегмент Ink - + Selective Избирательно - + Brush Tool - Draw Order Кисть - порядок рисования - + Smooth Гладкий - + Snap Привязка - + Auto Select Drawing Автоматический выбор рисунка - + Auto Fill Автозаливка - + Join Vectors Объединить векторы - + Show Only Active Skeleton Показать только активный скелет - + + Brush Tool - Eraser (Raster option) + + + + + Brush Tool - Lock Alpha + + + + Brush Preset Предустановка кисти - + Geometric Shape Геометрическая форма - + Geometric Edge Геометрический край - + Mode Режим - + Mode - Areas Режим - Области - + Mode - Lines Режим - Линии - + Mode - Lines & Areas Режим - Линии и Области - + Type Тип - + Type - Normal Тип - обычный - + Type - Rectangular Тип - Прямоугольный - + Type - Freehand Тип - От руки - + Type - Polyline Тип - Полилиния - + TypeTool Font Шрифт - + TypeTool Size Размер шрифта - + TypeTool Style Стиль шрифта - + Active Axis Активная ось - + Active Axis - Position Активная ось - расположение - + Active Axis - Rotation Активная ось - вращение - + Active Axis - Scale Активная ось - масштаб - + Active Axis - Shear Активная ось - сдвиг - + Active Axis - Center Активная ось - центр - + Active Axis - All Активные оси - все - + Build Skeleton Mode Режим создания скелета - + Animate Mode Режим анимации - + Inverse Kinematics Mode Режим инверсной кинематики - + None Pick Mode Объектов выделения - нет - + Column Pick Mode Режим выбора столбца - + Pegbar Pick Mode Режим выбора Pegbar - + Pick Screen Кликнуть по экрану - + Create Mesh Создать полисетку - + Fill Tool - Autopaint Lines Заливка - авторисовка линий - + Fill Tool - Areas Заливка - Области - + Fill Tool - Lines Заливка - Линиии - + Style Picker Tool - Areas Инструмент выбора стиля - Области - + Style Picker Tool - Lines Инструмент выбора стиля - Линии - + Toggle FX/Stage schematic Переключение Схемы Fx @@ -6481,52 +6511,53 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m MergeCmappedCommand - It is not possible to merge tlv columns because no column was selected. - Невозможно объединить столбцы tlv, потому что не выбран столбец. + Невозможно объединить столбцы tlv, потому что не выбран столбец. - It is not possible to merge tlv columns because at least two columns have to be selected. - Невозможно объединить столбцы tlv, потому что нужно выбрать как минимум два столбца. + Невозможно объединить столбцы tlv, потому что нужно выбрать как минимум два столбца. - - Merging Tlv Levels... - Слияние уровней Tlv ... + Слияние уровней Tlv ... MergeCmappedDialog - + + Level %1 already exists! Are you sure you want to overwrite it? + + + + Ok OK - - + + Cancel Отмена - + Merge Tlv Levels Объединить уровни Tlv - + Save in: Сохранить в: - + File Name: Имя файла: - + Apply Применить @@ -6534,14 +6565,12 @@ N.B. Duplicated commands will be ignored. Only the last one will appear in the m MergeColumnsCommand - It is not possible to execute the merge column command because no column was selected. - Невозможно выполнить команду слияния столбцов, потому что не выбран столбец. + Невозможно выполнить команду слияния столбцов, потому что не выбран столбец. - It is not possible to execute the merge column command because only one columns is selected. - Невозможно выполнить команду слияния столбцов, потому что выбран только один столбец. + Невозможно выполнить команду слияния столбцов, потому что выбран только один столбец. @@ -6644,11 +6673,18 @@ What do you want to do? + MyVideoWidget + + + Camera is not available + Камера недоступна + + + MyViewFinder - Camera is not available - Камера недоступна + Камера недоступна @@ -6715,88 +6751,88 @@ What do you want to do? Сделать стереоскопию - + Standard Простое - + Improved Улучшенный - + High Высокий - + Triangle filter Треугольный фильтр - + Mitchell-Netravali filter Фильтр Митчелла-Нетравали - + Cubic convolution, a = .5 Кубическая свертка, a = .5 - + Cubic convolution, a = .75 Кубическая свертка, a = .75 - + Cubic convolution, a = 1 Кубическая свертка, a = 1 - + Hann window, rad = 2 ? Hann window, rad = 2 - + Hann window, rad = 3 Hann window, rad = 3 - + Hamming window, rad = 2 Hamming window, rad = 2 - + Hamming window, rad = 3 Hamming window, rad = 3 - + Lanczos window, rad = 2 Lanczos window, rad = 2 - + Lanczos window, rad = 3 Lanczos window, rad = 3 - + Gaussian convolution Гауссова свертка - + Closest Pixel (Nearest Neighbor) Ближайший пиксель (ближайший соседний) - + Bilinear Билинейный @@ -6992,34 +7028,34 @@ The parameters to be saved are: Сдвиг камеры: - + Add preset Добавить предустановку - + Enter the name for the output settings preset. Введите имя для заданных параметров вывода. - + Add output settings preset Добавить предустановку настроек вывода - + <custom> <пользовательский> - + Remove preset Удалить пресет - - - + + + Warning Предупреждение @@ -7027,7 +7063,7 @@ The parameters to be saved are: OverwriteDialog - + Level "%1" already exists. What do you want to do? @@ -7044,7 +7080,6 @@ What do you want to do? - Warning! Внимание! @@ -7096,305 +7131,307 @@ What do you want to do? Файл %1 уже существует; Выберите другой суффикс. - Overwrite - Перезаписать + Перезаписать - Skip - Пропустить + Пропустить - File "%1" already exists. Do you want to overwrite it? - Файл «%1» уже существует. + Файл «%1» уже существует. Хотите перезаписать его? PencilTestPopup - + No frame id Нет - + Camera Capture Захват камеры - + Refresh Обновить - + File Файл - + Options Опции - + Save images as they are captured Сохранение изображений при их захвате - + Image adjust Настройка изображения - + Upside down Вверх ногами - + Capture white BG Захват белого фона - + Display Отображение - + Show onion skin Показать кальку - + Load Selected Image Загрузить выбранное изображение - + Interval timer Интервальный таймер - + Use interval timer Использовать интервальный таймер - - + + Capture [Return key] Захват [Return/Enter] - + Close Закрыть - + Subfolder Подпапка - + + Subcamera + + + + Next Level Следующий уровень - + Previous Level Предыдущий уровень - + Color Цвет - + Grayscale Оттенки серого - + Black & White Черно-белый - + Video Capture Filter Settings... Настройки фильтра видеозахвата... - + Camera: Камера: - + Resolution: Разрешение: - + Save In: Сохранить в: - + Name: Имя: - + Frame: Кадр: - + File Type: Тип файла: - + Color type: Тип цвета: - - - - - + + + + + UNDEFINED WARNING НЕОПРЕДЕЛЕННОЕ ПРЕДУПРЕЖДЕНИЕ - + The level is not registered in the scene, but exists in the file system. Уровень не загружен в текущую сцену, но файл существует. - + WARNING : Image size mismatch. The saved image size is %1 x %2. Предупреждение: несоответствие размера изображения. Размер сохраненного изображения%1 x %2. - - - - + + + + WARNING Предупреждение - - + + Frame %1 exists. Кадр %1 существует. - - + + Frames %1 exist. Кадры %1 существуют. - - + + OVERWRITE 1 of ПЕРЕЗАПИСАТЬ 1 из - - + + ADD to ДОБАВИТЬ - - + + %1 frame %1 кадр - - + + %1 frames %1 кадров - + The level will be newly created. Уровень будет вновь создан. - + NEW НОВЫЙ - + The level is already registered in the scene. Этот уровень уже загружев в сцену. - + NOTE : The level is not saved. ПРИМЕЧАНИЕ : уровень не сохранен. - + WARNING : Failed to get image size of the existing level %1. ВНИМАНИЕ : получить размер изображения уровня %1 не удалось. - + WARNING : Image size mismatch. The existing level size is %1 x %2. ВНИМАНИЕ: несоответствие размера изображения. Существующий размер уровня %1 x %2. - + WARNING : Level name conflicts. There already is a level %1 in the scene with the path %2. ВНИМАНИЕ: конфликт имен уровней. В сцене уже есть уровень %1. Существующий путь к файлу уровня %2. - + WARNING : Image size mismatch. The size of level with the same name is is %1 x %2. ВНИМАНИЕ: несоответствие размера изображения. Размер уровня с тем же именем — %1 x %2. - + WARNING : Level path conflicts. There already is a level with the path %1 in the scene with the name %2. ВНИМАНИЕ : повторяющийся путь к файлу. В сцене уже есть уровень из %1 под именем %2. - + WARNING : Image size mismatch. The size of level with the same path is %1 x %2. @@ -7413,104 +7450,104 @@ WARNING : Image size mismatch. The size of level with the same path is %1 x %2.< Яркость: - + BG reduction: Редукция фона: - + Opacity(%): Непрозрачность (%): - + Interval(sec): Интервал(сек): - + No camera found Камера не найдена - + - Select camera - - Выбрать камеру - - - + + No image selected. Please select an image in the Xsheet. Изображения не выбраны. Выберите изображение в Xsheet. - + The selected image is not in a raster level. Выбранное изображение не находится на уровне растра. - + The selected image size does not match the current camera settings. Выбранный размер изображения не соответствует текущим настройкам камеры. - - + + Start Capturing [Return key] Запуск захвата [Ключ возврата] - + Stop Capturing [Return key] Остановить захват [Ключ возврата] - + No level name specified: please choose a valid level name Имя уровня не определено: выберите допустимое имя уровня - + Folder %1 doesn't exist. Do you want to create it? Папки %1 не существует. Вы хотите создать ее? - + Unable to create Не удалось создать - + The level name specified is already used: please choose a different level name. Указанное имя уровня уже используется: выберите другое имя уровня. - + The save in path specified does not match with the existing level. Указанный путь сохранения не соответствует существующему уровню. - - + + The captured image size does not match with the existing level. Размер захваченного изображения не соответствует существующему уровню. - - + + File %1 does exist. Do you want to overwrite it? Файл «%1» уже существует. Хотите перезаписать его? - + Failed to load %1. Не удалось загрузить %1. @@ -7518,135 +7555,135 @@ Do you want to overwrite it? PencilTestSaveInFolderPopup - + Create the Destination Subfolder to Save Создать папку назначения для сохранения - + Set As Default Установить по умолчанию - + Set the current "Save In" path as the default. Сделать текущий путь расположения по умолчанию. - + Create Subfolder Создать подпапку - + Infomation точно не "Info R mation" ? Информация - + Subfolder Name Имя подпапки - + Auto Format: Автоформат: - + Show This on Launch of the Camera Capture Показывать это окно при запуске захвата камеры - + Save Scene in Subfolder Сохранить сцену в подпапке - + OK OK - + Cancel Отмена - + C- + Sequence + Scene C- + Секвенция + Сцена - + Sequence + Scene Секвенция + Сцена - + Episode + Sequence + Scene Эпизод + Секвенция + Сцена - + Project + Episode + Sequence + Scene Проект + Эпизод + Секвенция + Сцена - + Save the current scene in the subfolder. Set the output folder path to the subfolder as well. Сохранить текущую сцену во вложенной папке. Также задайте путь к папке вывода на вложенную папку. - + Save In: Сохранить в: - + Project: Проект: - + Episode: Эпизод: - + Sequence: Секвенция: - + Scene: Сцена: - + Subfolder Name: Имя подпапки: - + Subfolder name should not be empty. Имя подпапки не должно быть пустым. - + Subfolder name should not contain following characters: * . " / \ [ ] : ; | = , Имя подпапки не должно содержать следующих символов: *. "/ \ []:; | =, - + Folder %1 already exists. Папка %1 уже существует. - + It is not possible to create the %1 folder. Не удалось создать папку %1. @@ -8894,15 +8931,13 @@ in non alpha-enabled image format. Previewer - The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | - Имя файла не может быть пустым или содержать любой из следующих символов: (новая строка) \ /: *? "| + Имя файла не может быть пустым или содержать любой из следующих символов: (новая строка) \ /: *? "| - File %1 already exists. Do you want to overwrite it? - Файл «%1» уже существует. + Файл «%1» уже существует. Хотите перезаписать его? @@ -8969,39 +9004,39 @@ Do you want to overwrite it? ProjectCreatePopup - + New Project Новый проект - + OK OK - + Cancel Отмена - + Project Name cannot be empty or contain any of the following characters: \ / : * ? " < > | Имя проекта не может быть пустым или содержать любой из следующих символов: \ /: *? "<> | - + Bad project name: '%1' looks like an absolute file path Плохое имя проекта: «%1» выглядит как абсолютный путь к файлу - + Project '%1' already exists Проект «%1» уже существует - + It is not possible to create the %1 project. Не удалось создать проект %1. @@ -9019,17 +9054,17 @@ Do you want to overwrite it? Название проекта: - + Append $scenepath to +drawings Добавить путь к папке +drawings - + Append $scenepath to +inputs Добавить путь к папке +inputs - + Append $scenepath to +extras Добавить путь к папке+extras @@ -9037,7 +9072,7 @@ Do you want to overwrite it? ProjectSettingsPopup - + Project Settings Настройки проекта @@ -9045,65 +9080,105 @@ Do you want to overwrite it? PsdSettingsPopup - + Load PSD File Загрузить файл PSD - - Name: - Имя: + + Name: + Имя: + + + + Path: + Путь: + + + + Single Image + + + + + Frames + Кадры - - Path: - Путь: + + Columns + - + Expose in a Sub-xsheet Экспонировать в Sub-xsheet - + FileName#LayerName ИмяФайла#ИмяСлоя - + LayerName ИмяСлоя - + Load As: Загрузить как: - + Level Name: Имя уровня: - + Group Option Опции группы - + Ignore groups Игнорировать группы - + Expose layers in a group as columns in a sub-xsheet Выставлять слои в группе в виде столбцов в sub-xsheet - + Expose layers in a group as frames in a column Выставлять слои в группе в виде кадров в столбце + + + OK + OK + + + + Cancel + Отмена + + + + Flatten visible document layers into a single image. Layer styles are maintained. + + + + + Load document layers as frames into a single xsheet column. + + + + + Load document layers as xhseet columns. + + QApplication @@ -9113,12 +9188,12 @@ Do you want to overwrite it? Новая сцена - + Load Scene Загрузить сцену - + Quit Выйти @@ -9126,8 +9201,8 @@ Do you want to overwrite it? QObject - - + + @@ -9138,9 +9213,9 @@ Do you want to overwrite it? Да - - - + + + @@ -9151,25 +9226,31 @@ Do you want to overwrite it? Нет + + + Always Overwrite in This Scene + + + Auto Input Cell Numbers : %1 Автоматический ввод номера ячейки : %1 - - + + - - - - + + + + - - - + + + Overwrite Перезаписать @@ -9185,9 +9266,11 @@ Do you want to overwrite it? - - + + + + @@ -9200,33 +9283,33 @@ Do you want to overwrite it? - - - - - - - - - - - + + + + + + + + + + + - - + + - - - + + + - + Cancel Отмена @@ -9239,7 +9322,7 @@ Do you want to overwrite it? - + @@ -9258,17 +9341,32 @@ Do you want to overwrite it? Переопределение + + Save Curve + Сохранить кривую + + It is not possible to save the curve. Сохранение кривой невозможно. + + Load Curve + Загрузить кривую + + It is not possible to load the curve. Невозможно загрузить кривую. - + + Export Curve + Экспорт кривой + + + It is not possible to export data. Экспорт данных невозможен. @@ -9306,19 +9404,110 @@ Save the scene first. Невозможно создать папку. - - + + Rendering frame %1 / %2 + RenderListener + + + + + Precomputing %1 Frames + RenderListener + + + + + + of %1 + RenderListener + + + + + Finalizing render, please wait. + RenderListener + Завершается рендеринг, подождите. + + + + Aborting render... + RenderListener + + + + + The resolution of the output camera does not fit with the options chosen for the output file format. Разрешение выходной камеры не соответствует параметрам, выбранным для формата выходного файла. - + + Building Schematic... + RenderCommand + + + + + column + MultimediaProgressBar label (mode name) + + + + + layer + MultimediaProgressBar label (mode name) + + + + + Rendering %1%2, frame %3 / %4 + MultimediaProgressBar label + + + + + Rendering %1 frames of %2 + MultimediaProgressBar + + + + + %1 of %2 + MultimediaProgressBar - [totalframe] of [path] + + + + + Aborting render... + MultimediaProgressBar + + + + FFmpeg not found, please set the location in the Preferences and restart. FFmpeg не найден, укажите местоположение в настройках и перезапустите. - + + It is not possible to write the output: the file + RenderCommand + + + + + s are read only. + RenderCommand + + + + + is read only. + RenderCommand + + + + It is not possible to complete the rendering. Выполнение рендеринга невозможно. @@ -9358,11 +9547,16 @@ Save the scene first. - + Cleanup Settings Настройки очистки + + Save Cleanup Settings + Сохранить настройки очистки + + The cleanup settings file for the %1 level already exists. Do you want to overwrite it? @@ -9371,12 +9565,22 @@ Save the scene first. - - + + Don't Overwrite Не перезаписывать + + Load Cleanup Settings + Загрузить настройки очистки + + + + %1 does not exist. + %1 не существует. + + @@ -9394,9 +9598,12 @@ Do you want to save your changes? Вы хотите сохранить свои изменения? + + - + + Save Сохранить @@ -9434,7 +9641,7 @@ Are you sure ? - + Delete Удалить @@ -9481,7 +9688,7 @@ Are you sure ? - + Saving previewed frames.... Сохранение кадров предпросмотра .... @@ -9750,13 +9957,15 @@ Do you want to import it or load it from its original location? - + Import Импорт + + - + Load Загрузить @@ -9844,7 +10053,7 @@ What would you like to do? В любом случае - + OK @@ -9879,43 +10088,43 @@ Do you want to overwrite it? - - - + + + Couldn't save %1 Не удалось сохранить %1 - + The level %1 already exists. Do you want to overwrite it? Уровень %1 уже существует. Вы хотите переписать его? - + Overwrite Palette Переписать палитру - + Don't Overwrite Palette Не перезаписывать палитру - + The soundtrack %1 already exists. Do you want to overwrite it? Саундтрек %1 уже существует. Вы хотите переписать его? - + File %1 doesn't look like a TOONZ Scene Файл %1 не похож на сцену TOONZ - + A prior save of Scene '%1' was critically interupted. A partial save file was generated and changes may be manually salvaged from '%2'. @@ -9927,34 +10136,34 @@ Do you wish to continue loading the last good save or stop and try to salvage th Хотите продолжить загрузку последнего сохраненного файла или приостановить загрузку, чтобы попытаться восстановить его из временного файла сохранения? - + Continue Продолжить - + It is not possible to load the scene %1 because it does not belong to any project. Невозможно загрузить сцену %1, потому что она не принадлежит ни одному проекту. - + The Scene '%1' belongs to project '%2'. What do you want to do? Сцена «%1» относится к проекту «%2». Что вы хотите сделать? - + Import Scene Импорт сцены - + Change Project Сменить проект - + There were problems loading the scene %1. @@ -9963,31 +10172,31 @@ What do you want to do? Некоторые файлы могут отсутствовать. - + There were problems loading the scene %1. Some levels have not been loaded because their version is not supported Возникли проблемы с загрузкой сцены %1. Некоторые уровни не загружены, потому что их версия не поддерживается - + This scene is incompatible with pixels only mode of the current OpenToonz version. What would you like to do? Эта сцена несовместима с режимом "только пиксели" текущей версии OpenToonz. Чтовы хотите делать? - + Turn off pixels only mode Отключить режим "только пиксели" - + Keep pixels only mode on and resize the scene Оставить режим "только пиксели" и изменить размер сцены - + File '%1' will reload level '%2' as a duplicate column in the xsheet. Allow duplicate? @@ -9996,28 +10205,34 @@ Allow duplicate? Разрешить дубликаты? - + Allow Позволить - + Allow All Dups Разрешить все дупликаты - + No to All Dups Не разрешать дублирование - - + + It is not possible to load the level %1 Невозможно загрузить уровень %1 - + + + %1 more level(s) + + + + + The following level(s) use path with $scenefolder alias. @@ -10026,7 +10241,7 @@ Allow duplicate? - + They will not be opened properly when you load the scene next time. What do you want to do? @@ -10035,155 +10250,155 @@ What do you want to do? Что Вы хотите делать? - + Copy the levels to correspondent paths Копировать уровни в соответствующие пути - + Decode all $scenefolder aliases Декодировать все псевдонимы $scenefolder - + Save the scene only Сохранить только сцену - + Overwrite for All Перезаписать для всех - + Don't Overwrite for All Не перезаписывать для всех - - + + Failed to overwrite %1 Не удалось перезаписать %1 - - + + No Current Level Нет текущего уровня - - + + No Current Scene Нет текущей сцены - + Save the scene first Сначала сохранить сцену - + Save level Failed Ошибка сохранения уровня - + Are you sure you want to save the Default Settings? Вы действительно хотите сохранить настройки по умолчанию? - + It is not possible to load the %1 level. Невозможно загрузить уровень %1. - + The scene %1 doesn't exist. Сцены %1 не существует. - + Revert: the current scene has been modified. Are you sure you want to revert to previous version? Revert: текущая сцена была изменена. Вы действительно хотите вернуться к предыдущей версии? - + Revert Возвратиться - + The copied selection cannot be pasted in the current drawing. Скопированный выбор не может быть вставлен в текущий рисунок. - - - + + + Paste : Level %1 : Frame Вставить: Уровень %1: Кадр - + Delete Frames : Level %1 : Frame Удалить кадры: Уровень %1 : Кадр - + Cut Frames : Level %1 : Frame Вырезать кадры : Уровень %1 : Кадр - + Add Frames : Level %1 : Frame Добавить кадры: Уровень %1: Кадр - + Renumber : Level %1 Пересчитать : Уровень %1 - + Insert : Level %1 Вставить: Уровень %1 - + Reverse : Level %1 Обратить: Уровень %1 - + Swing : Level %1 Свинг : Уровень %1 - + Step %1 : Level %2 Шаг %1 : Уровень %2 - + Each %1 : Level %2 Каждый %1 : Уровень %2 - + Duplicate : Level %1 Дублировать : Уровень %1 - + Move Level to Scene : Level %1 Переместить уровень в сцену : Уровень %1 - + Inbetween : Level %1, Промежуточные кадры : Уровень %1 @@ -10278,24 +10493,36 @@ Are you sure you want to revert to previous version? Последний наверх - + Clone Level : %1 > %2 Клонировать уровень : %1 > %2 - + Clone Levels : Клонировать уровни : - + + Clone Level + CloneLevelUndo::LevelNamePopup + Клонировать уровень + + + + Level Name: + CloneLevelUndo::LevelNamePopup + Имя уровня: + + + Ok Ок - + FlipBook Flipbook @@ -10405,47 +10632,47 @@ undefined error. <пользовательский> - + The file name already exists. Do you want to overwrite it? Имя файла уже существует. Вы хотите переписать его? - + Deleting "%1". Are you sure? Удаление «%1». Вы уверены? - + The selected scene could not be found. Не удалось найти выбранную сцену. - + Script Console Консоль скриптов - + Hide Zero Thickness Lines Скрыть линии нулевой толщины - + Show Zero Thickness Lines Показать линии нулевой толщины - + Hide cursor size outline Скрыть форму кисти - + Show cursor size outline Показать форму кисти @@ -10497,7 +10724,7 @@ Are you sure? Запустить скрипт - + Create project Создать проект @@ -10550,42 +10777,43 @@ Are you sure? \ /: *? "<> | - - + + + File %1 already exists. Do you want to overwrite it? Файл «%1» уже существует. Хотите перезаписать его? - + Do you want to expose the renamed level ? Вы хотите экспонировать переименованный уровень? - + Expose Экспонировать - + Don't expose Не экспонировать - + Nothing to replace: no cells or columns selected. Нечего заменить: не выбраны ни ячейки, ни столбцы. - + The palette %1 already exists. Do you want to overwrite it? Палитра %1 уже существует. Вы хотите переписать её? - + Cannot load Color Model in current palette. Невозможно загрузить цветовую модель в текущей палитре. @@ -10609,14 +10837,14 @@ What do you want to do? Добавить цветовую палитру модели в палитру назначения. - + Choose Folder Выберите папку - - - + + + File Browser Браузер файлов @@ -10694,6 +10922,17 @@ The operation cannot be undone: are you sure? Premultiply + + Collecting assets... + Сбор материалов... + + + + + Abort + Прервать + + There are no assets to collect Нет активов для сбора @@ -10731,6 +10970,11 @@ The operation cannot be undone: are you sure? Ошибка с сохранением сцены %1. + + Importing scenes... + Импорт сцен... + + No scene imported Нет импортированной сцены @@ -10808,7 +11052,7 @@ The operation cannot be undone: are you sure? - + Rename Cell at Column %1 Frame %2 Переименовать ячейку в столбце %1 Кадр %2 @@ -10904,12 +11148,12 @@ to use the duplicate command in the xsheet / timeline. Изображения предварительного просмотра еще не готовы. - + Xsheet Xsheet - + Timeline Таймлайн @@ -10924,198 +11168,239 @@ to use the duplicate command in the xsheet / timeline. Изменить диапазон воспроизведения : %1 - %2 > %3 - %4 - + Use Level Extender Использовать удлинитель уровня - + Modify Sound Level Изменить уровень звука - + Move keyframe handle : %1 Handle of the keyframe %2 Переместить ушко ключевого кадра : %1 Ушко ключевого кадра %2 - + Move Columns Переместить столбцы - + Change Pegbar Изменить Pegbar - + Change Text at Column %1 Frame %2 Изменить текст в столбце %1 кадре %2 - + Toggle cycle of %1 Переключить цикл %1 - + Move Level Переместить уровень - - + + Schematic Схема - + Stage Schematic Схема сцены - + Fx Schematic Fx Схема - + Palette Палитра - - + + Studio Palette Палитра Studio - - + + Style Editor Редактор стилей - - + + Viewer Просмотрщик - + Command Bar Панель команд - + Tool Options Настройки инструмента - + Tasks Задания - + Batch Servers Пакетные серверы - + Scene Cast Состав сцены - - + + + Export Экспортировать - - + + Function Editor Редактор функций - - + + Message Center Центр сообщений - + LineTest Viewer LineTest просмотрщик - + LineTest Capture LineTest захват - - + + Combo Viewer ComboViewer - - + + History История - + + + Fx Settings + Настройки Fx + + Level - Уровень + Уровень - already exists! Are you sure you want to overwrite it? - уже существует! Вы действительно хотите перезаписать? + уже существует! Вы действительно хотите перезаписать? + + + + It is not possible to execute the merge column command because no column was selected. + Невозможно выполнить команду слияния столбцов, потому что не выбран столбец. + + + + It is not possible to execute the merge column command because only one columns is selected. + + + + + It is not possible to apply the match lines because no column was selected. + Невозможно применить разделительные линии, потому что не был выбран столбец. + + + + It is not possible to apply the match lines because two columns have to be selected. + Невозможно применить разделительные линии, потому что нужно выбрать два столбца. - + Match lines can be applied to Toonz raster levels only. Разделительные линии могут применяться только к растровым уровням Toonz. - + It is not possible to merge tlv columns containing more than one level Невозможно объединить столбцы tlv, содержащие более одного уровня - + The level you are using has not a valid palette. Уровень, который вы используете, не имеет допустимой палитры. - - + + It is not possible to merge tlv columns because no column was selected. + Невозможно объединить столбцы tlv, потому что не выбран столбец. + + + + It is not possible to merge tlv columns because at least two columns have to be selected. + Невозможно объединить столбцы tlv, потому что нужно выбрать как минимум два столбца. + + + + + Merging Tlv Levels... + Слияние уровней Tlv ... + + + + It is not possible to delete lines because no column, cell or level strip frame was selected. Невозможно удалить строки, потому что не выбран ни один столбец, ячейка или кадр Level Strip. - + The selected column is empty. Выбранный столбец пуст. - + Selected cells must be in the same column. Выбранные ячейки должны находиться в одном столбце. - + Match lines can be deleted from Toonz raster levels only Разделительные линии могут быть удалены только из растровых уровней Toonz @@ -11299,44 +11584,44 @@ to use the duplicate command in the xsheet / timeline. В указанном диапазоне кадров нет рисунка. - + Cannot open menubar settings template file. Re-installing Toonz will solve this problem. Не удается открыть файл шаблонов настроек меню. Повторная установка Toonz решит эту проблему. - + No more Undo operations available. Больше нет операций Undo. - + No more Redo operations available. Больше нет операций Redo. - + The rooms will be reset the next time you run Toonz. Вкладки будут восстановлены при следующем запуске OpenToonz. - + Visit Web Site Посетить сайт - + An update is available for this software. Visit the Web site for more information. Доступно обновление программного обеспечения. Подробную информацию можно найти на веб-сайте. - + Check for the latest version on launch. Проверять наличие обновлений при запуске. - + https://opentoonz.github.io/e/ https://opentoonz.github.io/e/ @@ -11351,7 +11636,33 @@ Visit the Web site for more information. Квалификатор%1 не является допустимым именем ключа. Пропуск. - + + Warning! + OverwriteDialog + Внимание! + + + + Overwrite + OverwriteDialog + Перезаписать + + + + Skip + OverwriteDialog + Пропустить + + + + File "%1" already exists. +Do you want to overwrite it? + OverwriteDialog + Файл «%1» уже существует. +Хотите перезаписать его? + + + Selected folders don't belong to the current project. Do you want to import them or load from their original location? Выбранные папки не относятся к текущему проекту. @@ -11372,6 +11683,67 @@ Do you want to import them or load from their original location? Cannot Read XML File Не удается загрузить XML-файл + + + It is not possible to find the %1 level. + FileData + Не удается найти уровень %1. + + + + There was an error copying %1 + FileData + Произошла ошибка при копировании %1 + + + + Save Previewed Images + Сохранить просмотренные изображения + + + + The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | + Имя файла не может быть пустым или содержать любой из следующих символов: (новая строка) \ /: *? "| + + + + Unsopporter raster format, cannot save + + + + + Cannot create %1 : %2 + Previewer warning %1:path %2:message + + + + + Cannot create %1 + Previewer warning %1:path + + + + + Saved %1 frames out of %2 in %3 + Previewer %1:savedframes %2:framecount %3:filepath + Сохранено %1 кадр из %2 в %3 + + + + Canceled! + Previewer + + + + + No frame to save! + + + + + Already saving! + + ReframePopup @@ -11500,9 +11872,8 @@ The audio file will not be included in the rendered clip. RenderListener - Finalizing render, please wait. - Завершается рендеринг, подождите. + Завершается рендеринг, подождите. @@ -11532,12 +11903,12 @@ The audio file will not be included in the rendered clip. ReplaceLevelPopup - + Replace Level Заменить уровень - + Replace Заменить @@ -11546,7 +11917,7 @@ The audio file will not be included in the rendered clip. Нечего заменить: ячейки не выбраны. - + File not found Файл не найден @@ -11556,12 +11927,12 @@ The audio file will not be included in the rendered clip. ReplaceParentDirectoryPopup - + Replace Parent Directory Заменить родительский каталог - + Replace Заменить @@ -12621,14 +12992,12 @@ Please commit or revert changes first. SaveCurvePopup - Save Curve - Сохранить кривую + Сохранить кривую - Save - Сохранить + Сохранить @@ -12647,12 +13016,12 @@ Please commit or revert changes first. SaveLevelAsPopup - + Save Level Сохранить уровень - + Save Сохранить @@ -12660,12 +13029,12 @@ Please commit or revert changes first. SavePaletteAsPopup - + Save Palette Сохранить палитру - + Save Сохранить @@ -12716,25 +13085,23 @@ Please commit or revert changes first. SavePreviewedPopup - Save Previewed Images - Сохранить просмотренные изображения + Сохранить просмотренные изображения - Save - Сохранить + Сохранить SaveSceneAsPopup - + Save Scene Сохранить сцену - + Save Сохранить @@ -12742,25 +13109,23 @@ Please commit or revert changes first. SaveSettingsPopup - Save Cleanup Settings - Сохранить настройки очистки + Сохранить настройки очистки - Save - Сохранить + Сохранить SaveSubSceneAsPopup - + Sub-xsheet Sub-xsheet - + Save Сохранить @@ -12892,62 +13257,72 @@ Please commit or revert changes first. Поменять сравниваемые изображения - + + Flip View + + + + + Reset View + Вид по умолчанию + + + Vector Guided Drawing Векторный гид - + Off Выкл - + Closest Drawing Ближайший рисунок - + Farthest Drawing Дальний рисунок - + All Drawings Все рисунки - + Save Previewed Frames Сохранить кадры предпросмотра - + Regenerate Preview Регенерировать предпросмотр - + Regenerate Frame Preview Регенерировать предпросмотр кадра - + Show %1 Показать %1 - + Hide %1 Скрыть %1 - + Table Таблица - + Select %1 Выбрать %1 @@ -12964,22 +13339,22 @@ Please commit or revert changes first. Выбрать - + Show / Hide Показать / скрыть - + Select Camera Выбрать камеру - + Select Pegbar Выбрать Pegbar - + Select Column Выбрать столбец @@ -12987,79 +13362,84 @@ Please commit or revert changes first. SceneViewerPanel - + Safe Area (Right Click to Select) Безопасная зона (Щелкните правой кнопкой мыши, чтобы выбрать) - + Field Guide Направляющая сетка - + Camera Stand View Стандартный вид с камеры - + 3D View 3D-просмотр - + Camera View Вид с камеры - + Freeze Заморозить - + Preview Предпросмотр - + Sub-camera Preview Предпросмотр суб-камеры - + Untitled Безымянный - + Scene: Сцена: + :: Project: + + + + :: Frame: :: Кадр: - - + + :: Zoom : :: Зум : - - + + (Flipped) (Перевёрнутый) - + :: Level: :: Уровень: - + Level: Уровень: @@ -13744,9 +14124,8 @@ Assign to '%3'? Стартовое окно - Choose Project - Выбрать проект + Выбрать проект @@ -13754,9 +14133,18 @@ Assign to '%3'? Создать новую сцену - Open Scene - Открыть сцену + Открыть сцену + + + + Current Project + + + + + Recent Scenes [Project] + @@ -13830,117 +14218,122 @@ Assign to '%3'? - + pixel пиксель - + cm см - + mm мм - + inch дюйм - + field поле - + Save In: Сохранить в: - + Camera Size: Размер камеры: - + Units: Единицы: - + Minutes Минут(ы) - + No Recent Scenes Нет недавних сцен - + The name cannot be empty. Имя не может быть пустым. - + The chosen file path is not valid. Выбранный путь к файлу недействителен. - + The width must be greater than zero. Ширина должна быть больше нуля. - + The height must be greater than zero. Высота должна быть больше нуля. - + The frame rate must be 1 or more. Частота кадров должна быть 1 или более. - + Preset name Имя предустановки - + Enter the name for %1 Введите имя для %1 - + Error : Preset Name is Invalid Ошибка: недопустимое имя предустановки - + The preset name must not use ','(comma). Имя файла предустановки не должно содержать "," (запятую). - + Bad camera preset савсэм плахой предустановк, слюшай Плохая предустановка камеры - + '%1' doesn't seem to be a well formed camera preset. Possibly the preset file has been corrupted «%1», похоже, не является предустановленной камерой. Возможно, файл предварительной настройки поврежден + + + The selected scene project '%1' is not in the Current Project list and may not open automatically. + + T @@ -14686,77 +15079,77 @@ Please refer to the user guide for details. XsheetGUI::CellArea - + Click to select keyframe, drag to move it Кликнуть для выделения кадра, потянуть для перемещения - + Click and drag to set the acceleration range Нажмите и перетащите, чтобы установить диапазон ускорения - + Click and drag to set the deceleration range Нажмите и перетащите, чтобы установить диапазон замедления - + Set the cycle of previous keyframes Установите цикл предыдущих ключевых кадров - + Click and drag to move the selection Кликнуть и потянуть для перемещения выделенного - + Click and drag to play Кликнуть и потянуть для воспроизведения - + Click and drag to repeat selected cells Нажмите и перетащите, чтобы повторить выбранные ячейки - + Reframe Перестроить - + Step Шаг - + Each Каждый - + Edit Cell Numbers Ввести номер кадра - + Replace Level Заменить уровень - + Replace with Заменить - + Paste Special Специальная вставка - + Edit Image Редактирование изображений @@ -14765,12 +15158,12 @@ Please refer to the user guide for details. Заменить - + Open Memo Открыть заметку - + Delete Memo Удалить заметку @@ -15130,52 +15523,62 @@ Hold F3 Key on the Viewer to Show This Frame Only XsheetViewer - + Untitled Безымянный - + Scene: Сцена: - + + :: Project: + + + + Frames Кадры - + + Frame + + + + (Sub) (Под) - + Level: Уровень: - + Selected: Выбранный: - + frame : кадр : - + frames * кадры * - + column столбец - + columns столбцы diff --git a/toonz/sources/translations/russian/toonzlib.ts b/toonz/sources/translations/russian/toonzlib.ts index 2389ff0..559d446 100644 --- a/toonz/sources/translations/russian/toonzlib.ts +++ b/toonz/sources/translations/russian/toonzlib.ts @@ -214,113 +214,113 @@ Обновление цветов с использованием выбранных расположений в палитре %1 - + Add Fx : Добавить эффект : - + Insert Fx : Вставить Fx : - - + + Create Linked Fx : %1 Создать связанный Fx : %1 - + Replace Fx : Заменить Fx : - + Unlink Fx : %1 - - %2 Разъединить Fx : %1 - - %2 - + Make Macro Fx : %1 Сделать Makro Fx : %1 - + Explode Macro Fx : %1 Разбить Macro Fx : %1 - + Create Output Fx Создать выход Fx - + Connect to Xsheet : Подключить к Xsheet : - + Disconnect from Xsheet : Отключить от Xsheet : - + Delete Link Удалить связь - + Delete Fx Node : %1 Удалить Fx-узел : %1 - + Paste Fx : Вставить Fx : - + Disconnect Fx Отключить Fx - + Connect Fx : %1 - %2 Подключить Fx : %1 - %2 - + Rename Fx : %1 > %2 Переименовать Fx : %1 - %2 - + Group Fx Сгруппировать Fx - + Ungroup Fx Разгруппировать Fx - + Rename Group : %1 > %2 Переименовать группу : %1 > %2 - + Set Keyframe Установить ключевой кадр - + Remove Keyframe Удалить ключевой кадр - + Cycle Цикл diff --git a/toonz/sources/translations/russian/toonzqt.ts b/toonz/sources/translations/russian/toonzqt.ts index 4471e2c..e402893 100644 --- a/toonz/sources/translations/russian/toonzqt.ts +++ b/toonz/sources/translations/russian/toonzqt.ts @@ -68,22 +68,22 @@ AdjustPaletteDialog - + Adjust Current Level to This Palette Отрегулируйте текущий уровень до этой палитры - + Tolerance Допуск - + Apply Применить - + Cancel Отмена @@ -271,14 +271,12 @@ Possibly the preset file has been corrupted DVGui - OK - OK + OK - Cancel - Отмена + Отмена @@ -389,7 +387,7 @@ Possibly the preset file has been corrupted DVGui::ProgressDialog - + OpenToonz OpenToonz @@ -401,7 +399,7 @@ Possibly the preset file has been corrupted Toonz - + OpenToonz OpenToonz @@ -896,7 +894,7 @@ Possibly the preset file has been corrupted FunctionSegmentViewer - + Linear Линейная @@ -927,7 +925,7 @@ Possibly the preset file has been corrupted - + File Файл @@ -947,74 +945,74 @@ Possibly the preset file has been corrupted Интерполяция: - + Apply Применить - + From От - + To До - + Step Шаг - - + + < < - - + + > > - + Speed Ускорение - + Ease Замедление - + Ease% Замедление % - + Expo Экспо - + Expr Выраж - + Const Const - + Similar Аналогичная - + ???? ???? @@ -1030,7 +1028,7 @@ Possibly the preset file has been corrupted FunctionSheet - + Function Editor Редактор функций @@ -1038,75 +1036,105 @@ Possibly the preset file has been corrupted FunctionSheetCellViewer - + Delete Key Удалить ключ - + Set Key Установить ключ - + Linear Interpolation Линейная интерполяция - + Speed In / Speed Out Interpolation Интерполяция ускорения в начале/в конце - + Ease In / Ease Out Interpolation Интерполяция замедления в нач./в конце - + Ease In / Ease Out (%) Interpolation Замедление в начале/в конце (%) Интерполяция - + Exponential Interpolation Экспоненциальная интерполяция - + Expression Interpolation Интерполяция выражений - + File Interpolation Интерполяция из файла - + Constant Interpolation Равномерная интерполяция - + Step 1 Шаг 1 - + Step 2 Шаг 2 - + Step 3 Шаг 3 - + Step 4 Шаг 4 + + + Activate Cycle + Активировать цикл + + + + Deactivate Cycle + Деактивировать цикл + + + + Show Inbetween Values + + + + + Hide Inbetween Values + + + + + Change Interpolation + + + + + Change Step + + FunctionToolbar @@ -1128,17 +1156,17 @@ Possibly the preset file has been corrupted FunctionTreeModel - + Stage Сцена - + FX FX - + Plastic Skeleton Plastic Skeleton @@ -1146,34 +1174,34 @@ Possibly the preset file has been corrupted FunctionTreeView - + Table Стол - + Save Curve Сохранить кривую - + Load Curve Загрузить кривую - + Export Data Экспорт данных - - + + Show Animated Only Показать только анимированные - - + + Show All Показать все @@ -1181,32 +1209,32 @@ Possibly the preset file has been corrupted FxColumnPainter - + &Disconnect from Xsheet &Отсоединить от Xsheet - + &Connect to Xsheet &Присоединить к Xsheet - + &Paste Add &Вставить Добавить - + &Preview &Предпросмотр - + &Uncache Fx &Очистить кэш Fx - + &Cache FX &Кэшировать FX @@ -1218,17 +1246,17 @@ Possibly the preset file has been corrupted FxOutputPainter - + Output Вывод - + &Delete &Удалить - + &Activate &Активировать @@ -1236,77 +1264,77 @@ Possibly the preset file has been corrupted FxPainter - + &Open Group &Открыть группу - + &Paste Replace &Вставить Заменить - + &Paste Add &Вставить Добавить - + &Delete &Удалить - + &Disconnect from Xsheet &Отсоединить от Xsheet - + &Connect to Xsheet &Присоединить к Xsheet - + &Create Linked FX &Создать связанный FX - + &Unlink &Разъединить - + &Make Macro FX &Сделать Macro FX - + &Explode Macro FX &Разбить Makro FX - + &Open Macro FX &Открыть Makro FX - + &Save As Preset... &Сохранить как пресет... - + &Preview &Предпросмотр - + &Uncache FX &Очистить кэш Fx - + &Cache FX &Кэшировать FX @@ -1314,17 +1342,17 @@ Possibly the preset file has been corrupted FxPalettePainter - + &Disconnect from Xsheet &Отсоединить от Xsheet - + &Connect to Xsheet &Присоединить к Xsheet - + &Preview &Предпросмотр @@ -1332,12 +1360,12 @@ Possibly the preset file has been corrupted FxSchematicLink - + &Delete &Удалить - + &Paste Insert &Вставить @@ -1345,7 +1373,7 @@ Possibly the preset file has been corrupted FxSchematicOutputNode - + Output Вывод @@ -1353,12 +1381,12 @@ Possibly the preset file has been corrupted FxSchematicPort - + &Disconnect from Xsheet &Отсоединить от Xsheet - + &Connect to Xsheet &Присоединить к Xsheet @@ -1366,21 +1394,21 @@ Possibly the preset file has been corrupted FxSchematicScene - + Cannot Paste Insert a selection of unconnected FX nodes. Select FX nodes and related links before copying or cutting the selection you want to paste. Невозможно вставить выбранные неподключенные узлы FX. Выберите FX-узлы и связи перед копированием или сокращением выбора, который вы хотите вставить. - + Cannot Paste Add a selection of unconnected FX nodes. Select FX nodes and related links before copying or cutting the selection you want to paste. Невозможно вставить (добавить) выбранные неподключенные узлы FX. Выберите FX-узлы и связи перед копированием или сокращением выбора, который вы хотите вставить. - + Cannot Paste Replace a selection of unconnected FX nodes. Select FX nodes and related links before copying or cutting the selection you want to paste. Невозможно вставить (заменить) выбранные неподключенные узлы FX. @@ -1390,7 +1418,7 @@ Select FX nodes and related links before copying or cutting the selection you wa FxSchematicXSheetNode - + XSheet Xsheet @@ -1398,37 +1426,37 @@ Select FX nodes and related links before copying or cutting the selection you wa FxSettings - + &Camera Preview &Предпросмотр камеры - + &Preview &Предпросмотр - + &White Background &Белый фон - + &Black Background &Черный фон - + &Checkered Background &Клетчатый фон - + Fx Settings Настройки эффектов - + : : @@ -1436,17 +1464,17 @@ Select FX nodes and related links before copying or cutting the selection you wa FxXSheetPainter - + XSheet Xsheet - + &Paste Add &Вставить Добавить - + &Preview &Предпросмотр @@ -1528,9 +1556,8 @@ Select FX nodes and related links before copying or cutting the selection you wa MyPaintBrushStyleChooserPage - Plain color - Простой цвет + Простой цвет @@ -1554,139 +1581,139 @@ Select FX nodes and related links before copying or cutting the selection you wa PaletteViewer - - - + + + &Save Palette As &Сохранить палитру как - - - + + + &Save Palette &Сохранить палитру - - + + Lock Palette Блокировать палитру - + &Lock Palette &Блокировать палитру - + Options Опции - + &Small Thumbnails View &Маленькие иконки - + &Medium Thumbnails View &Средние иконки - + &Large Thumbnails View &Большие иконки - + &List View &Посмотреть список - + Style Name Имя стиля - + StudioPalette Name StudioPalette Имя - + Both Names Оба имени - + &New Page &Новая страница - - + + &New Style &Новый стиль - - + + &Move Palette &Переместить палитру - + &Palette Gizmo &Палитра Gizmo - + New Page Новая страница - + Delete Page Удалить страницу - + Overwrite Перезаписать - + Don't Overwrite Не перезаписывать - + Palette Палитра - + Level Palette: Палитра уровней: - + Cleanup Palette Палитра очистки - + Studio Palette Studio Палитра - + (Color Model: (Цветовая модель: - + ) ) @@ -1694,22 +1721,22 @@ Select FX nodes and related links before copying or cutting the selection you wa PaletteViewerGUI::PageViewer - + - No Styles - - Нет стилей - - + Name Editor Редактор имен - + New Style Новый стиль - + New Page Новая страница @@ -1762,6 +1789,19 @@ Select FX nodes and related links before copying or cutting the selection you wa + PlaneViewer + + + Reset View + + + + + Fit To Window + + + + PointParamField @@ -1796,11 +1836,10 @@ Are you sure? - - - - - + + + + Cancel Отмена @@ -1947,12 +1986,12 @@ Are you sure? Невозможно загрузить траекторию движения. - + Stage Schematic Stage Schematic - + FX Schematic FX Schematic @@ -1962,31 +2001,48 @@ Are you sure? Изменить стиль Палитра : %1 Стиль#%2 [R%3 G%4 B%5] -> [R%6 G%7 B%8] - + + Plain color + VectorBrushStyleChooserPage + Простой цвет + + + + Custom Texture + TextureStyleChooserPage + + + + + Plain color + MyPaintBrushStyleChooserPage + Простой цвет + + + + Plain color + SpecialStyleChooserPage + Простой цвет + + Save - Сохранить + Сохранить - Discard - Сбросить + Сбросить - - Yes - Да + Да - - No - Нет + Нет - Replace - Заменить + Заменить @@ -2050,17 +2106,17 @@ Are you sure? %1 : линейный откл - + Palette Палитра - + Overwrite Перезаписать - + Don't Overwrite Не перезаписывать @@ -2070,6 +2126,16 @@ Are you sure? Невозможно назначить ярлык с модификаторами для команд визуализации. + + Current Frame: + + + + + File History + + + Fullpath: Полный путь: @@ -2294,9 +2360,12 @@ Are you sure? OpenToonz 1.1 - OpenToonz 1.2 - OpenToonz 1.2 + OpenToonz 1.2 + + + OpenToonz 1.3 + OpenToonz 1.3 @@ -2319,39 +2388,44 @@ Are you sure? Подтверждение - + Apply Применить - + + OK + OK + + + Styles you are going to delete are used to paint lines and areas in the animation level. Стили, которые вы собираетесь удалить, используются для рисования линий и областей на уровне анимации. - + How do you want to proceed? Как вы хотите поступить? - + Delete Styles Only Удалить только стили - + Delete Styles, Lines and Areas Удалить стили, линии и области - + Ok Ok - + Deletion of Lines and Areas from raster-based levels is not undoable. Are you sure? Удаление строк и областей из растровых уровней не отменяется. @@ -2368,72 +2442,72 @@ Are you sure? Установить - + Failed to compile m_textureShader.vert. gl Не удалось скомпилировать m_textureShader.vert. - + Failed to compile m_shader.frag. gl Не удалось скомпилировать m_shader.frag. - + Failed to add m_shader.vert. gl Не удалось добавить m_shader.vert. - + Failed to add m_shader.frag. gl Не удалось добавить m_shader.frag. - + Failed to link simple shader: %1 gl Не удалось связать простой шейдер: %1 - - + + Failed to get attribute location of %1 gl Не удалось получить расположение атрибута %1 - - + + Failed to get uniform location of %1 gl Не удалось получить одинаковое расположение %1 - + Failed to Open 3DLUT File. Не удалось открыть файл 3DLUT. - + Failed to Load 3DLUT File. It should start with "3DMESH" keyword. Не удалось загрузить 3DLUT файл. Он должен начинаться с дескриптора "3DMESH". - + Failed to Load 3DLUT File. The second line should be "Mesh [Input bit depth] [Output bit depth]" Не удалось загрузить файл 3DLUT. Вторая строка должна быть "Mesh [глубина цвета на входе] [глубина цвета на выходе]" - - + + Failed to Load 3DLUT File. Не удалось загрузить файл 3DLUT. @@ -2441,7 +2515,7 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< QPushButton - + OK OK @@ -2449,61 +2523,61 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< SchematicViewer - + &Fit to Window &По размеру окна - + &Focus on Current &Фокус на текущем - + &Reorder Nodes &Изменение порядка узлов - + &Reset Size &Сбросить размер - - - + + + &Minimize Nodes &Минимизировать узлы - - - + + + &Maximize Nodes &Максимизировать узлы - + &New Pegbar &Новый Pegbar - + &New Camera &Новая камера - + &New Motion Path &Новая траектория движения - + &Swtich output port display mode &Переключение отображения выходного порта - + &Toggle node icons &Переключить иконки узлов @@ -2542,9 +2616,8 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< SpecialStyleChooserPage - Plain color - Простой цвет + Простой цвет @@ -2621,90 +2694,147 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< StudioPaletteTreeViewer - + + The current palette %1 +in the studio palette has been modified. Do you want to save your changes? + + + + + Save + Сохранить + + + + Discard + Сбросить + + + + Convert %1 to Studio Palette and Overwrite. +Are you sure ? + + + + Yes + Да + + + No + Нет + + + This folder is not empty. Delete anyway? Эта папка не пуста. Удалить в любом случае? - + + Convert + + + + + Replacing all selected palettes with the palette "%1". +Are you sure ? + + + + + Replacing the palette "%1" with the palette "%2". +Are you sure ? + + + + + Replace + Заменить + + + New Palette Новая палитра - + New Folder Новая папка - + Delete Folder Удалить папку - - + + Load into Current Palette Загрузка в текущую палитру - + Adjust Current Level to This Palette Отрегулируйте текущий уровень до этой палитры - - + + Merge to Current Palette Слияние с текущей палитрой - - + + Replace with Current Palette Заменить текущую палитру - + Delete Palette Удалить палитру - + Convert to Studio Palette and Overwrite Конвертировать в Studio Palette и перезаписать - + Search for Palettes Поиск палитр - + + Delete Удалить - + the palette "%1" палитра "%1" - + the selected palettes выбранных палитр - + Move %1 to "%2". Are you sure ? Перемещение %1 в "%2", вы уверены? - + Move Переместить - + + + + + Cancel Отмена @@ -2712,12 +2842,12 @@ The second line should be "Mesh [Input bit depth] [Output bit depth]"< StyleEditor - + Generated Сформирован - + Trail Хвост @@ -2728,92 +2858,92 @@ Apply применение - + Show or hide parts of the Color Page. Показать или скрыть части цветовой страницы. - + Toggle orientation of the Color Page. Переключить ориентацию цветовой страницы. - + Auto Автоматически - + Apply Применить - + Apply changes to current style Применить изменения к текущему стилю - + Automatically update style changes Автообновление изменений стиля - + Return To Previous Style Вернуться в предыдущий стиль - + Current Style Текущий стиль - + No Style Selected Стиль не выбран - + Palette Палитра - + Style Editor - No Valid Style Selected Редактор стилей - не выбран правильный стиль - + [CLEANUP] [ОЧИСТКА] - + Wheel Круг - + HSV HSV - + Alpha Альфа - + RGB RGB - + [STUDIO] [STUDIO] - + [LEVEL] [УРОВЕНЬ] @@ -2822,7 +2952,7 @@ Apply Простой - + Texture Текстура @@ -2835,30 +2965,30 @@ Apply Пользовательский - + Vector Brush Векторная кисть - - - + + + Color Цвет - + Vector Вектор - + Raster Растр - - + + Settings Настройки @@ -2866,37 +2996,37 @@ Apply StyleEditorGUI::ColorChannelControl - + R R - + G G - + B B - + A A - + H H - + S S - + V V @@ -2927,12 +3057,12 @@ Apply StyleEditorGUI::SettingsPage - + Autopaint for Lines Автозаливка линий - + Reset to default Сбросить по умолчанию @@ -2976,6 +3106,19 @@ Apply + SwatchViewer + + + Reset View + + + + + Fit To Window + + + + TMessageViewer @@ -3023,9 +3166,8 @@ Apply VectorBrushStyleChooserPage - Plain color - Простой цвет + Простой цвет diff --git a/toonz/sources/translations/spanish/tnztools.ts b/toonz/sources/translations/spanish/tnztools.ts index 3a8bbbe..365e1ef 100644 --- a/toonz/sources/translations/spanish/tnztools.ts +++ b/toonz/sources/translations/spanish/tnztools.ts @@ -638,6 +638,20 @@ + FullColorFillTool + + Fill Depth + Profundidad de relleno + + + + HandToolOptionsBox + + Reset Position + + + + HookTool Snap @@ -1260,6 +1274,13 @@ Do you want to proceed? + RotateToolOptionsBox + + Reset Rotation + + + + RulerToolOptionsBox X: @@ -1659,4 +1680,11 @@ movido hacia el final de la primera página de la paleta. Rectangular + + ZoomToolOptionsBox + + Reset Zoom + + + diff --git a/toonz/sources/translations/spanish/toonz.ts b/toonz/sources/translations/spanish/toonz.ts index 3a104ce..490c373 100644 --- a/toonz/sources/translations/spanish/toonz.ts +++ b/toonz/sources/translations/spanish/toonz.ts @@ -109,11 +109,11 @@ ApplyMatchlinesCommand It is not possible to apply the match lines because no column was selected. - No es posible aplicar las líneas de coincidencia porque no se ha seleccionado ninguna columna. + No es posible aplicar las líneas de coincidencia porque no se ha seleccionado ninguna columna. It is not possible to apply the match lines because two columns have to be selected. - No es posible aplicar las líneas de coincidencia porque se deben seleccionar dos columnas. + No es posible aplicar las líneas de coincidencia porque se deben seleccionar dos columnas. @@ -1055,11 +1055,11 @@ What do you want to do? CloneLevelUndo::LevelNamePopup Clone Level - Clonar nivel + Clonar nivel Level Name: - Nombre del nivel: + Nombre del nivel: @@ -1236,6 +1236,10 @@ What do you want to do? (Flipped) (Invertido) + + :: Project: + + CommandBar @@ -1857,11 +1861,11 @@ contuviera información de PPP, entonces se usarán los de la cámara actual. ExportCurvePopup Export Curve - Exportar curva + Exportar curva Export - Exportar + Exportar @@ -2257,26 +2261,26 @@ contuviera información de PPP, entonces se usarán los de la cámara actual. FileData It is not possible to find the %1 level. - No es posible encontrar el nivel %1. + No es posible encontrar el nivel %1. There was an error copying %1 - Se produjo un error al copiar %1 + Se produjo un error al copiar %1 FileSelection Abort - Abortar + Abortar Collecting assets... - Recolectando recursos... + Recolectando recursos... Importing scenes... - Importando escenas... + Importando escenas... @@ -3173,6 +3177,10 @@ Usar los números de fotograma como referencia. Invalid data file. Archivo de datos inválido. + + Drawing: + + LoadBoardPresetFilePopup @@ -3204,11 +3212,11 @@ Usar los números de fotograma como referencia. LoadCurvePopup Load Curve - Cargar curva + Cargar curva Load - Cargar + Cargar @@ -3351,15 +3359,15 @@ Usar los números de fotograma como referencia. LoadSettingsPopup Load Cleanup Settings - Cargar opciones de limpieza + Cargar opciones de limpieza Load - Cargar + Cargar %1 does not exist. - %1 no existe. + %1 no existe. @@ -3713,7 +3721,7 @@ Usar los números de fotograma como referencia. &Send Back - &Enviar al fondo + &Enviar al fondo &Send Backward @@ -5399,6 +5407,30 @@ Usar los números de fotograma como referencia. Flip Viewer Horizontally Invertir visor horizontalmente + + &Send to Back + + + + Reset Zoom + + + + Reset Rotation + + + + Reset Position + + + + Brush Tool - Eraser (Raster option) + + + + Brush Tool - Lock Alpha + + MatchlinesDialog @@ -5531,15 +5563,15 @@ Nota: Los comandos duplicados serán ignorados. Sólo el último aparecerá en l MergeCmappedCommand It is not possible to merge tlv columns because no column was selected. - No es posible fusionar columnas TLV porque no se ha seleccionado ninguna. + No es posible fusionar columnas TLV porque no se ha seleccionado ninguna. It is not possible to merge tlv columns because at least two columns have to be selected. - No es posible fusionar columnas TLV porque se deben seleccionar al menos dos de ellas. + No es posible fusionar columnas TLV porque se deben seleccionar al menos dos de ellas. Merging Tlv Levels... - Fusionando niveles TLV... + Fusionando niveles TLV... @@ -5568,16 +5600,20 @@ Nota: Los comandos duplicados serán ignorados. Sólo el último aparecerá en l Apply Aplicar + + Level %1 already exists! Are you sure you want to overwrite it? + + MergeColumnsCommand It is not possible to execute the merge column command because no column was selected. - No es posible ejecutar el comando de fusión de columnas porque no se seleccionó ninguna. + No es posible ejecutar el comando de fusión de columnas porque no se seleccionó ninguna. It is not possible to execute the merge column command because only one columns is selected. - No es posible ejecutar el comando de fusión de columnas porque sólo hay una seleccionada. + No es posible ejecutar el comando de fusión de columnas porque sólo hay una seleccionada. @@ -5661,10 +5697,17 @@ What do you want to do? + MyVideoWidget + + Camera is not available + La cámara no se encuentra disponible + + + MyViewFinder Camera is not available - La cámara no se encuentra disponible + La cámara no se encuentra disponible @@ -6058,16 +6101,16 @@ What do you want to do? Overwrite - Sobrescribir + Sobrescribir Skip - Omitir + Omitir File "%1" already exists. Do you want to overwrite it? - El archivo "%1" ya existe. + El archivo "%1" ya existe. ¿Se desea sobrescribirlo? @@ -6406,6 +6449,10 @@ ADVERTENCIA : Tamaño de imagen no coincidente. El tamaño de la imagen guardada Black & White Blanco y negro + + Subcamera + + PencilTestSaveInFolderPopup @@ -7647,12 +7694,12 @@ contengan píxeles transparentes en formatos de imagen sin soporte para canal al Previewer The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | - El nombre de archivo no puede estar vacío o contener ninguno de los siguientes caracteres:(nueva línea) \ / : * ? " | + El nombre de archivo no puede estar vacío o contener ninguno de los siguientes caracteres:(nueva línea) \ / : * ? " | File %1 already exists. Do you want to overwrite it? - El archivo %1 ya existe. + El archivo %1 ya existe. ¿Sobrescribirlo? @@ -7816,6 +7863,38 @@ Do you want to overwrite it? Level Name: Nombre de nivel: + + Single Image + + + + Frames + Fotog. + + + Columns + Columnas + + + Flatten visible document layers into a single image. Layer styles are maintained. + + + + Load document layers as frames into a single xsheet column. + + + + Load document layers as xhseet columns. + + + + OK + Aceptar + + + Cancel + + QApplication @@ -8745,11 +8824,11 @@ Do you want to overwrite it? Level - Nivel + Nivel already exists! Are you sure you want to overwrite it? - ya existe! ¿Sobrescribirlo? + ya existe! ¿Sobrescribirlo? It is not possible to merge tlv columns containing more than one level @@ -9565,6 +9644,240 @@ en las Preferencias, para poder usar esta opción en la planilla o línea de tie Clear All Relative Onion Skin Markers Limpiar todos los marcadores relativos de Piel de cebolla + + Always Overwrite in This Scene + + + + + %1 more level(s) + + + + + Fx Settings + Opciones de efectos + + + Save Curve + Guardar curva + + + Load Curve + Cargar curva + + + Export Curve + Exportar curva + + + Rendering frame %1 / %2 + RenderListener + + + + Precomputing %1 Frames + RenderListener + + + + of %1 + RenderListener + + + + Finalizing render, please wait. + RenderListener + Finalizando el procesamiento, por favor esperar. + + + Aborting render... + RenderListener + + + + Building Schematic... + RenderCommand + + + + column + MultimediaProgressBar label (mode name) + + + + layer + MultimediaProgressBar label (mode name) + + + + Rendering %1%2, frame %3 / %4 + MultimediaProgressBar label + + + + Rendering %1 frames of %2 + MultimediaProgressBar + + + + %1 of %2 + MultimediaProgressBar - [totalframe] of [path] + + + + Aborting render... + MultimediaProgressBar + + + + It is not possible to write the output: the file + RenderCommand + + + + s are read only. + RenderCommand + + + + is read only. + RenderCommand + + + + Save Cleanup Settings + Guardar opciones de limpieza + + + Load Cleanup Settings + Cargar opciones de limpieza + + + It is not possible to find the %1 level. + FileData + No es posible encontrar el nivel %1. + + + There was an error copying %1 + FileData + Se produjo un error al copiar %1 + + + Clone Level + CloneLevelUndo::LevelNamePopup + Clonar nivel + + + Level Name: + CloneLevelUndo::LevelNamePopup + + + + Collecting assets... + Recolectando recursos... + + + Abort + Abortar + + + Importing scenes... + Importando escenas... + + + It is not possible to execute the merge column command because no column was selected. + No es posible ejecutar el comando de fusión de columnas porque no se seleccionó ninguna. + + + It is not possible to execute the merge column command because only one columns is selected. + + + + It is not possible to apply the match lines because no column was selected. + No es posible aplicar las líneas de coincidencia porque no se ha seleccionado ninguna columna. + + + It is not possible to apply the match lines because two columns have to be selected. + No es posible aplicar las líneas de coincidencia porque se deben seleccionar dos columnas. + + + It is not possible to merge tlv columns because no column was selected. + No es posible fusionar columnas TLV porque no se ha seleccionado ninguna. + + + It is not possible to merge tlv columns because at least two columns have to be selected. + No es posible fusionar columnas TLV porque se deben seleccionar al menos dos de ellas. + + + Merging Tlv Levels... + Fusionando niveles TLV... + + + Save Previewed Images + Guardar imágenes de previsualización + + + The file name cannot be empty or contain any of the following characters:(new line) \ / : * ? " | + + + + Unsopporter raster format, cannot save + + + + Cannot create %1 : %2 + Previewer warning %1:path %2:message + + + + Cannot create %1 + Previewer warning %1:path + + + + Saved %1 frames out of %2 in %3 + Previewer %1:savedframes %2:framecount %3:filepath + Se guardaron %1 fotogramas de %2 en %3 + + + Canceled! + Previewer + + + + No frame to save! + + + + Already saving! + + + + Warning! + OverwriteDialog + ¡Advertencia! + + + Overwrite + OverwriteDialog + Sobrescribir + + + Skip + OverwriteDialog + Omitir + + + File "%1" already exists. +Do you want to overwrite it? + OverwriteDialog + El archivo "%1" ya existe. +¿Se desea sobrescribirlo? + + + %1 does not exist. + %1 no existe. + ReframePopup @@ -9671,7 +9984,7 @@ El archivo de sonido no será incluido en el clip procesado. RenderListener Finalizing render, please wait. - Finalizando el procesamiento, por favor esperar. + Finalizando el procesamiento, por favor esperar. @@ -10565,11 +10878,11 @@ Por favor enviar o revertir los cambios antes. SaveCurvePopup Save Curve - Guardar curva + Guardar curva Save - Guardar + Guardar @@ -10644,11 +10957,11 @@ Por favor enviar o revertir los cambios antes. SavePreviewedPopup Save Previewed Images - Guardar imágenes de previsualización + Guardar imágenes de previsualización Save - Guardar + Guardar @@ -10666,11 +10979,11 @@ Por favor enviar o revertir los cambios antes. SaveSettingsPopup Save Cleanup Settings - Guardar opciones de limpieza + Guardar opciones de limpieza Save - Guardar + Guardar @@ -10903,6 +11216,14 @@ Por favor enviar o revertir los cambios antes. Select %1 Seleccionar %1 + + Flip View + + + + Reset View + Restablecer vista + SceneViewerPanel @@ -10966,6 +11287,10 @@ Por favor enviar o revertir los cambios antes. (Flipped) (Invertido) + + :: Project: + + SeparateColorsPopup @@ -11467,7 +11792,7 @@ Assign to '%3'? Choose Project - Escoger un proyecto + Escoger un proyecto Create a New Scene @@ -11475,7 +11800,7 @@ Assign to '%3'? Open Scene - Abrir una escena + Abrir una escena Scene Name: @@ -11627,6 +11952,18 @@ Es posible que el archivo del ajuste esté corrupto Minutes minutos + + Current Project + + + + Recent Scenes [Project] + + + + The selected scene project '%1' is not in the Current Project list and may not open automatically. + + SubSheetBar @@ -12726,5 +13063,13 @@ Mantener presionada la tecla F3 para ver sólo este fotograma en el visorZoom in/out of timeline Ampliar/reducir el tiempo + + :: Project: + + + + Frame + + diff --git a/toonz/sources/translations/spanish/toonzqt.ts b/toonz/sources/translations/spanish/toonzqt.ts index 361210b..3fbf2a3 100644 --- a/toonz/sources/translations/spanish/toonzqt.ts +++ b/toonz/sources/translations/spanish/toonzqt.ts @@ -289,11 +289,11 @@ Es posible que el archivo de dicho ajuste se encuentre corrupto. DVGui OK - Aceptar + Aceptar Cancel - Cancelar + Cancelar @@ -1019,6 +1019,30 @@ Es posible que el archivo de dicho ajuste se encuentre corrupto. Step 4 Exposición x4 + + Activate Cycle + Activar ciclo + + + Deactivate Cycle + Desactivar ciclo + + + Show Inbetween Values + + + + Hide Inbetween Values + + + + Change Interpolation + + + + Change Step + + FunctionToolbar @@ -1383,7 +1407,7 @@ Seleccionar los nodos de efecto y sus vínculos relacionados antes de copiar o c MyPaintBrushStyleChooserPage Plain color - Color pleno + Color pleno @@ -1607,6 +1631,17 @@ Seleccionar los nodos de efecto y sus vínculos relacionados antes de copiar o c + PlaneViewer + + Reset View + + + + Fit To Window + + + + PointParamField Y: @@ -1685,19 +1720,19 @@ Seleccionar los nodos de efecto y sus vínculos relacionados antes de copiar o c Save - Guardar + Guardar Discard - Descartar + Descartar Yes - + No - No + No Stage Schematic @@ -2025,7 +2060,7 @@ Are you sure? Replace - Reemplazar + Reemplazar Modify Fx Param : %1 @@ -2156,7 +2191,43 @@ La segunda línea debería tener la forma "Mesh [profundidad de bits de ent OpenToonz 1.2 - OpenToonz 1.2 + OpenToonz 1.2 + + + Custom Texture + TextureStyleChooserPage + + + + Current Frame: + + + + File History + + + + OpenToonz 1.3 + OpenToonz 1.3 + + + Plain color + VectorBrushStyleChooserPage + Color pleno + + + Plain color + MyPaintBrushStyleChooserPage + Color pleno + + + Plain color + SpecialStyleChooserPage + Color pleno + + + OK + Aceptar @@ -2254,7 +2325,7 @@ La segunda línea debería tener la forma "Mesh [profundidad de bits de ent SpecialStyleChooserPage Plain color - Color pleno + Color pleno @@ -2388,6 +2459,50 @@ La segunda línea debería tener la forma "Mesh [profundidad de bits de ent Cancel Cancelar + + The current palette %1 +in the studio palette has been modified. Do you want to save your changes? + + + + Save + Guardar + + + Discard + Descartar + + + Convert %1 to Studio Palette and Overwrite. +Are you sure ? + + + + Yes + + + + No + No + + + Replacing all selected palettes with the palette "%1". +Are you sure ? + + + + Replacing the palette "%1" with the palette "%2". +Are you sure ? + + + + Replace + Reemplazar + + + Convert + + StudioPaletteViewer @@ -2646,6 +2761,17 @@ Autom + SwatchViewer + + Reset View + + + + Fit To Window + + + + TMessageViewer Errors @@ -2694,7 +2820,7 @@ Autom VectorBrushStyleChooserPage Plain color - Color pleno + Color pleno