From 6a7ff2ca429540c7d945bde3541d16b68731a8da Mon Sep 17 00:00:00 2001 From: Xelloss Date: Jul 14 2016 08:00:28 +0000 Subject: Fix some can't translate strings on UI (#515) * Add & to "Scan & Cleanup" menu item Missing a ‘&’ punctuation on this menu item. * fix can't translation strings on Cleanup Setting * fix can't translation strings on Combo Viewer * fix can't translation strings on Main Windows * fix can't translation strings on Preference * fix can't translation strings on Context Menu * fix can't translation strings on Style Picker tool * fix can't translation strings on Watercolor FX * fix can't translation strings on Tape Tool * fix can't translation strings on Rotate Tool * fix can't translation strings on FileBroswer * fix can't translation strings on FileBroswer * fix can't translation strings on FileBroswer * Add new source strings and translate in Chinese * Add new source strings and translate in Chinese * Add new source strings and translate in Chinese * Add new source strings for french * Add new source strings for german * Add new source strings for italian * Add new source strings for japanese * Add new source strings for spanish * Add new source strings for spanish * Add new source strings for japanese * Add new source strings for italian * Add new source strings for german * Add new source strings for french * Add new source strings for spanish * Add new source strings for japanese * Add new source strings for italian * Add new source strings for german * Add new source strings for french * include Qt translation support * include Qt translation support * Update stylepickertool.cpp * Update viewtools.cpp * remove modifications Check failed * remove modifications Check failed * Update stylepickertool.cpp * Fix more can't translate strings on UI * translation support for Pick Style Tool and Rotate Tool * Add more source strings in all language TS files * update qm files of chinese * Remove modifications of Style Picker tool & Rotate Tool again... --- diff --git "a/stuff/config/loc/\344\270\255\346\226\207/colorfx.qm" "b/stuff/config/loc/\344\270\255\346\226\207/colorfx.qm" index 5cad508..b3db7e4 100644 Binary files "a/stuff/config/loc/\344\270\255\346\226\207/colorfx.qm" and "b/stuff/config/loc/\344\270\255\346\226\207/colorfx.qm" differ diff --git "a/stuff/config/loc/\344\270\255\346\226\207/tnztools.qm" "b/stuff/config/loc/\344\270\255\346\226\207/tnztools.qm" index 7c57b46..e0e534c 100644 Binary files "a/stuff/config/loc/\344\270\255\346\226\207/tnztools.qm" and "b/stuff/config/loc/\344\270\255\346\226\207/tnztools.qm" differ diff --git "a/stuff/config/loc/\344\270\255\346\226\207/toonz.qm" "b/stuff/config/loc/\344\270\255\346\226\207/toonz.qm" index 04353d4..cdf7d2e 100644 Binary files "a/stuff/config/loc/\344\270\255\346\226\207/toonz.qm" and "b/stuff/config/loc/\344\270\255\346\226\207/toonz.qm" differ diff --git a/toonz/sources/colorfx/strokestyles.cpp b/toonz/sources/colorfx/strokestyles.cpp index bbf7790..abed1f2 100644 --- a/toonz/sources/colorfx/strokestyles.cpp +++ b/toonz/sources/colorfx/strokestyles.cpp @@ -5486,7 +5486,7 @@ TColorStyle::ParamType TLongBlendStrokeStyle2::getParamType(int index) const { QString TLongBlendStrokeStyle2::getParamNames(int index) const { assert(0 <= index && index < 1); - return "Distance"; // W_Watercolor_Distance + return QCoreApplication::translate("TLongBlendStrokeStyle2", "Distance"); // W_Watercolor_Distance } //----------------------------------------------------------------------------- diff --git a/toonz/sources/tnztools/vectortapetool.cpp b/toonz/sources/tnztools/vectortapetool.cpp index 332eab2..0bcba57 100644 --- a/toonz/sources/tnztools/vectortapetool.cpp +++ b/toonz/sources/tnztools/vectortapetool.cpp @@ -258,6 +258,7 @@ public: void updateTranslation() override { m_smooth.setQStringName(tr("Smooth")); m_joinStrokes.setQStringName(tr("Join Vectors")); + m_autocloseFactor.setQStringName(tr("Distance")); m_mode.setQStringName(tr("Mode:")); m_type.setQStringName(tr("Type:")); } diff --git a/toonz/sources/toonz/brightnessandcontrastpopup.cpp b/toonz/sources/toonz/brightnessandcontrastpopup.cpp index 4c9ea89..89a40c5 100644 --- a/toonz/sources/toonz/brightnessandcontrastpopup.cpp +++ b/toonz/sources/toonz/brightnessandcontrastpopup.cpp @@ -301,7 +301,7 @@ BrightnessAndContrastPopup::BrightnessAndContrastPopup() //--------------------------- Button ---------------------------- - m_okBtn = new QPushButton(QString("Apply"), this); + m_okBtn = new QPushButton(QString(tr("Apply")), this); connect(m_okBtn, SIGNAL(clicked()), this, SLOT(apply())); addButtonBarWidget(m_okBtn); diff --git a/toonz/sources/toonz/cleanupsettingspane.cpp b/toonz/sources/toonz/cleanupsettingspane.cpp index 4815906..22751b5 100644 --- a/toonz/sources/toonz/cleanupsettingspane.cpp +++ b/toonz/sources/toonz/cleanupsettingspane.cpp @@ -205,7 +205,7 @@ CleanupSettingsPane::CleanupSettingsPane(QWidget *parent) pathLay->setMargin(0); pathLay->setSpacing(3); { - pathLay->addWidget(new QLabel("Save In"), 0); + pathLay->addWidget(new QLabel(tr("Save In")), 0); pathLay->addWidget(m_pathField); } mainLay->addLayout(pathLay, 0); @@ -391,10 +391,10 @@ void CleanupSettingsPane::updateImageInfo() { if (!parentWidget()) return; if (model->clnPath().isEmpty()) - parentWidget()->setWindowTitle("Cleanup Settings (Global)"); + parentWidget()->setWindowTitle(tr("Cleanup Settings (Global)")); else parentWidget()->setWindowTitle( - "Cleanup Settings: " + toQString(model->clnPath().withoutParentDir())); + tr("Cleanup Settings: ") + toQString(model->clnPath().withoutParentDir())); } //----------------------------------------------------------------------------- @@ -515,8 +515,8 @@ void CleanupSettingsPane::onLevelSwitched() { void CleanupSettingsPane::onSaveSettings() { /*--- Clueaup保存先を指定していないとエラーを返す ---*/ if (m_pathField->getPath().isEmpty()) { - DVGui::warning("Please fill the Save In field."); + DVGui::warning(tr("Please fill the Save In field.")); return; } CleanupSettingsModel::instance()->promptSave(); -} \ No newline at end of file +} diff --git a/toonz/sources/toonz/comboviewerpane.cpp b/toonz/sources/toonz/comboviewerpane.cpp index edc3a72..65668d0 100644 --- a/toonz/sources/toonz/comboviewerpane.cpp +++ b/toonz/sources/toonz/comboviewerpane.cpp @@ -429,7 +429,7 @@ void ComboViewerPanel::initializeTitleBar(TPanelTitleBar *titleBar) { new TPanelTitleBarButtonForSafeArea(titleBar, ":Resources/safearea.png", ":Resources/safearea_over.png", ":Resources/safearea_on.png"); - safeAreaButton->setToolTip("Safe Area (Right Click to Select)"); + safeAreaButton->setToolTip(tr("Safe Area (Right Click to Select)")); titleBar->add(QPoint(x, 1), safeAreaButton); ret = ret && connect(safeAreaButton, SIGNAL(toggled(bool)), CommandManager::instance()->getAction(MI_SafeArea), @@ -444,7 +444,7 @@ void ComboViewerPanel::initializeTitleBar(TPanelTitleBar *titleBar) { button = new TPanelTitleBarButton(titleBar, ":Resources/fieldguide.png", ":Resources/fieldguide_over.png", ":Resources/fieldguide_on.png"); - button->setToolTip("Field Guide"); + button->setToolTip(tr("Field Guide")); x += 5 + iconWidth; titleBar->add(QPoint(x, 1), button); ret = ret && connect(button, SIGNAL(toggled(bool)), @@ -460,7 +460,7 @@ void ComboViewerPanel::initializeTitleBar(TPanelTitleBar *titleBar) { button = new TPanelTitleBarButton(titleBar, ":Resources/standard.png", ":Resources/standard_over.png", ":Resources/standard_on.png"); - button->setToolTip("Camera Stand View"); + button->setToolTip(tr("Camera Stand View")); x += 10 + iconWidth; titleBar->add(QPoint(x, 1), button); button->setButtonSet(viewModeButtonSet, SceneViewer::NORMAL_REFERENCE); @@ -469,7 +469,7 @@ void ComboViewerPanel::initializeTitleBar(TPanelTitleBar *titleBar) { button = new TPanelTitleBarButton(titleBar, ":Resources/3D.png", ":Resources/3D_over.png", ":Resources/3D_on.png"); - button->setToolTip("3D View"); + button->setToolTip(tr("3D View")); x += 19; // width of standard.png = 18pixels titleBar->add(QPoint(x, 1), button); button->setButtonSet(viewModeButtonSet, SceneViewer::CAMERA3D_REFERENCE); @@ -477,7 +477,7 @@ void ComboViewerPanel::initializeTitleBar(TPanelTitleBar *titleBar) { button = new TPanelTitleBarButton(titleBar, ":Resources/view_camera.png", ":Resources/view_camera_over.png", ":Resources/view_camera_on.png"); - button->setToolTip("Camera View"); + button->setToolTip(tr("Camera View")); x += 18; // width of 3D.png = 18pixels titleBar->add(QPoint(x, 1), button); button->setButtonSet(viewModeButtonSet, SceneViewer::CAMERA_REFERENCE); @@ -490,7 +490,7 @@ void ComboViewerPanel::initializeTitleBar(TPanelTitleBar *titleBar) { ":Resources/freeze_on.png"); x += 10 + 19; // width of viewcamera.png = 18pixels - button->setToolTip("Freeze"); // RC1 + button->setToolTip(tr("Freeze")); // RC1 titleBar->add(QPoint(x, 1), button); ret = ret && connect(button, SIGNAL(toggled(bool)), m_sceneViewer, SLOT(freeze(bool))); diff --git a/toonz/sources/toonz/dvitemview.cpp b/toonz/sources/toonz/dvitemview.cpp index 3ad0ac4..9676659 100644 --- a/toonz/sources/toonz/dvitemview.cpp +++ b/toonz/sources/toonz/dvitemview.cpp @@ -1820,13 +1820,13 @@ DvItemViewerButtonBar::DvItemViewerButtonBar(DvItemViewer *itemViewer, QIcon folderUpIcon = createQIconPNG("folderup"); QAction *folderUp = new QAction(folderUpIcon, tr("Up One Level"), this); - folderUp->setIconText("Up"); + folderUp->setIconText(tr("Up")); addAction(folderUp); addSeparator(); QIcon newFolderIcon = createQIconPNG("newfolder"); QAction *newFolder = new QAction(newFolderIcon, tr("New Folder"), this); - newFolder->setIconText("New"); + newFolder->setIconText(tr("New")); addAction(newFolder); addSeparator(); @@ -1837,7 +1837,7 @@ DvItemViewerButtonBar::DvItemViewerButtonBar(DvItemViewer *itemViewer, QIcon thumbViewIcon = createQIconOnOffPNG("viewicon"); QAction *thumbView = new QAction(thumbViewIcon, tr("Icons View"), this); thumbView->setCheckable(true); - thumbView->setIconText("Icon"); + thumbView->setIconText(tr("Icon")); thumbView->setChecked((itemViewer->m_windowType == DvItemViewer::Browser && DvItemViewerPanel::ThumbnailView == BrowserView) || (itemViewer->m_windowType == DvItemViewer::Cast && @@ -1848,7 +1848,7 @@ DvItemViewerButtonBar::DvItemViewerButtonBar(DvItemViewer *itemViewer, QIcon listViewIcon = createQIconOnOffPNG("viewlist"); QAction *listView = new QAction(listViewIcon, tr("List View"), this); listView->setCheckable(true); - listView->setIconText("List"); + listView->setIconText(tr("List")); listView->setChecked((itemViewer->m_windowType == DvItemViewer::Browser && DvItemViewerPanel::TableView == BrowserView) || (itemViewer->m_windowType == DvItemViewer::Cast && @@ -1878,9 +1878,9 @@ DvItemViewerButtonBar::DvItemViewerButtonBar(DvItemViewer *itemViewer, connect(listView, SIGNAL(triggered()), itemViewer->getPanel(), SLOT(setTableView())); // connect(listView , SIGNAL(triggered()), itemViewer->getPanel(), - // SLOT(setListView())); + //SLOT(setListView())); // connect(tableView , SIGNAL(triggered()), itemViewer->getPanel(), - // SLOT(setTableView())); + //SLOT(setTableView())); connect(m_folderBack, SIGNAL(triggered()), SIGNAL(folderBack())); connect(m_folderFwd, SIGNAL(triggered()), SIGNAL(folderFwd())); diff --git a/toonz/sources/toonz/filebrowser.cpp b/toonz/sources/toonz/filebrowser.cpp index ece1656..f4f06e8 100644 --- a/toonz/sources/toonz/filebrowser.cpp +++ b/toonz/sources/toonz/filebrowser.cpp @@ -170,7 +170,7 @@ FileBrowser::FileBrowser(QWidget *parent, Qt::WFlags flags, bool noContextMenu, m_mainSplitter = new QSplitter(this); m_folderTreeView = new DvDirTreeView(this); QFrame *box = new QFrame(this); - QLabel *folderLabel = new QLabel("Folder: ", this); + QLabel *folderLabel = new QLabel(tr("Folder: "), this); m_folderName = new QLineEdit(); m_itemViewer = new DvItemViewer(box, noContextMenu, multiSelectionEnabled, DvItemViewer::Browser); diff --git a/toonz/sources/toonz/filebrowserpopup.cpp b/toonz/sources/toonz/filebrowserpopup.cpp index aa3d47a..4064a89 100644 --- a/toonz/sources/toonz/filebrowserpopup.cpp +++ b/toonz/sources/toonz/filebrowserpopup.cpp @@ -189,11 +189,11 @@ void FileBrowserPopup::addFilterType(const QString &type) { void FileBrowserPopup::setFileMode(bool isDirectoryOnly) { if (m_isDirectoryOnly = isDirectoryOnly) { - m_nameFieldLabel->setText("Folder name:"); + m_nameFieldLabel->setText(tr("Folder name:")); connect(m_browser, SIGNAL(treeFolderChanged(const TFilePath &)), this, SLOT(onFilePathClicked(const TFilePath &))); } else { - m_nameFieldLabel->setText("File name:"); + m_nameFieldLabel->setText(tr("File name:")); disconnect(m_browser, SIGNAL(treeFolderChanged(const TFilePath &)), this, SLOT(onFilePathClicked(const TFilePath &))); } @@ -631,8 +631,8 @@ LoadLevelPopup::LoadLevelPopup() //---- QStringList behaviorList; - behaviorList << QString("On Demand") << QString("All Icons") - << QString("All Icons & Images"); + behaviorList << QString(tr("On Demand")) << QString(tr("All Icons")) + << QString(tr("All Icons & Images")); m_loadTlvBehaviorComboBox->addItems(behaviorList); // use the default value set in the preference m_loadTlvBehaviorComboBox->setCurrentIndex( diff --git a/toonz/sources/toonz/linesfadepopup.cpp b/toonz/sources/toonz/linesfadepopup.cpp index 4e4f8c6..e0318bf 100644 --- a/toonz/sources/toonz/linesfadepopup.cpp +++ b/toonz/sources/toonz/linesfadepopup.cpp @@ -194,7 +194,7 @@ LinesFadePopup::LinesFadePopup() //--------------------------- Button ---------------------------- - m_okBtn = new QPushButton(QString("Apply"), this); + m_okBtn = new QPushButton(QString(tr("Apply")), this); connect(m_okBtn, SIGNAL(clicked()), this, SLOT(apply())); addButtonBarWidget(m_okBtn); diff --git a/toonz/sources/toonz/mainwindow.cpp b/toonz/sources/toonz/mainwindow.cpp index aa23093..b58789f 100644 --- a/toonz/sources/toonz/mainwindow.cpp +++ b/toonz/sources/toonz/mainwindow.cpp @@ -1569,7 +1569,7 @@ void MainWindow::defineActions() { createMenuFileAction(MI_ExportLevel, tr("&Export Level..."), ""); createMenuFileAction(MI_ConvertFileWithInput, tr("&Convert File..."), ""); createRightClickMenuAction(MI_SavePaletteAs, tr("&Save Palette As..."), ""); - createRightClickMenuAction(MI_OverwritePalette, "&Save Palette", ""); + createRightClickMenuAction(MI_OverwritePalette, tr("&Save Palette"), ""); createMenuFileAction(MI_LoadColorModel, tr("&Load Color Model..."), ""); createMenuFileAction(MI_ImportMagpieFile, tr("&Import Magpie File..."), ""); createMenuFileAction(MI_NewProject, tr("&New Project..."), ""); @@ -1985,7 +1985,7 @@ void MainWindow::defineActions() { createRightClickMenuAction(MI_UnlockAllColumns, tr("Unlock All"), ""); createRightClickMenuAction(MI_ToggleColumnLocks, tr("Swap Lock/Unlock"), ""); /*-- カレントカラムの右側のカラムを全て非表示にするコマンド --*/ - createRightClickMenuAction(MI_DeactivateUpperColumns, "Hide Upper Columns", + createRightClickMenuAction(MI_DeactivateUpperColumns, tr("Hide Upper Columns"), ""); createToolAction(T_Edit, "edit", tr("Edit Tool"), "E"); @@ -2092,17 +2092,17 @@ void MainWindow::defineActions() { createToolOptionsAction("A_ToolOption_TypeSize", tr("TypeTool Size"), ""); createToolOptionsAction("A_ToolOption_TypeStyle", tr("TypeTool Style"), ""); - createToolOptionsAction("A_ToolOption_EditToolActiveAxis", "Active Axis", ""); + createToolOptionsAction("A_ToolOption_EditToolActiveAxis", tr("Active Axis"), ""); createToolOptionsAction("A_ToolOption_EditToolActiveAxis:Position", - "Active Axis - Position", ""); + tr("Active Axis - Position"), ""); createToolOptionsAction("A_ToolOption_EditToolActiveAxis:Rotation", - "Active Axis - Rotation", ""); + tr("Active Axis - Rotation"), ""); createToolOptionsAction("A_ToolOption_EditToolActiveAxis:Scale", - "Active Axis - Scale", ""); + tr("Active Axis - Scale"), ""); createToolOptionsAction("A_ToolOption_EditToolActiveAxis:Shear", - "Active Axis - Shear", ""); + tr("Active Axis - Shear"), ""); createToolOptionsAction("A_ToolOption_EditToolActiveAxis:Center", - "Active Axis - Center", ""); + tr("Active Axis - Center"), ""); createToolOptionsAction("A_ToolOption_SkeletonMode:Build Skeleton", tr("Build Skeleton Mode"), ""); @@ -2120,16 +2120,16 @@ void MainWindow::defineActions() { createToolOptionsAction("A_ToolOption_Meshify", tr("Create Mesh"), ""); /*-- FillAreas, FillLinesにキー1つで切り替えるためのコマンド --*/ - createAction(MI_FillAreas, "Fill Tool - Areas", "", ToolCommandType); - createAction(MI_FillLines, "Fill Tool - Lines", "", ToolCommandType); + createAction(MI_FillAreas, tr("Fill Tool - Areas"), "", ToolCommandType); + createAction(MI_FillLines, tr("Fill Tool - Lines"), "", ToolCommandType); /*-- Style picker Area, Style picker Lineににキー1つで切り替えるためのコマンド * --*/ - createAction(MI_PickStyleAreas, "Style Picker Tool - Areas", "", + createAction(MI_PickStyleAreas, tr("Style Picker Tool - Areas"), "", ToolCommandType); - createAction(MI_PickStyleLines, "Style Picker Tool - Lines", "", + createAction(MI_PickStyleLines, tr("Style Picker Tool - Lines"), "", ToolCommandType); - createMiscAction("A_FxSchematicToggle", "Toggle FX/Stage schematic", ""); + createMiscAction("A_FxSchematicToggle", tr("Toggle FX/Stage schematic"), ""); } //----------------------------------------------------------------------------- diff --git a/toonz/sources/toonz/outputsettingspopup.cpp b/toonz/sources/toonz/outputsettingspopup.cpp index 8c827c8..78d58fa 100644 --- a/toonz/sources/toonz/outputsettingspopup.cpp +++ b/toonz/sources/toonz/outputsettingspopup.cpp @@ -187,7 +187,7 @@ OutputSettingsPopup::OutputSettingsPopup(bool isPreview) removePresetButton = new QPushButton(tr("Remove"), this); m_presetCombo = new QComboBox(this); - m_doStereoscopy = new DVGui::CheckBox("Do stereoscopy", this); + m_doStereoscopy = new DVGui::CheckBox(tr("Do stereoscopy"), this); m_stereoShift = new DVGui::DoubleLineEdit(this, 0.05); } // Threads diff --git a/toonz/sources/toonz/preferencespopup.cpp b/toonz/sources/toonz/preferencespopup.cpp index c7cbfce..9c8cc9f 100644 --- a/toonz/sources/toonz/preferencespopup.cpp +++ b/toonz/sources/toonz/preferencespopup.cpp @@ -1184,9 +1184,9 @@ PreferencesPopup::PreferencesPopup() m_defScanLevelType->setCurrentIndex( m_defScanLevelType->findText(m_pref->getScanLevelType())); QStringList levelTypes; - m_defLevelType->addItem(("Toonz Vector Level"), PLI_XSHLEVEL); - m_defLevelType->addItem(("Toonz Raster Level"), TZP_XSHLEVEL); - m_defLevelType->addItem(("Raster Level"), OVL_XSHLEVEL); + m_defLevelType->addItem((tr("Toonz Vector Level")), PLI_XSHLEVEL); + m_defLevelType->addItem((tr("Toonz Raster Level")), TZP_XSHLEVEL); + m_defLevelType->addItem((tr("Raster Level")), OVL_XSHLEVEL); m_defLevelType->setCurrentIndex(0); for (int i = 0; i < m_defLevelType->count(); i++) { diff --git a/toonz/sources/toonz/sceneviewercontextmenu.cpp b/toonz/sources/toonz/sceneviewercontextmenu.cpp index c4134b0..f9c6cff 100644 --- a/toonz/sources/toonz/sceneviewercontextmenu.cpp +++ b/toonz/sources/toonz/sceneviewercontextmenu.cpp @@ -248,7 +248,7 @@ void SceneViewerContextMenu::addShowHideCommand(QMenu *menu, TXsheet *xsh = TApp::instance()->getCurrentXsheet()->getXsheet(); TStageObject *stageObject = xsh->getStageObject(TStageObjectId::ColumnId(column->getIndex())); - QString text = (isHidden ? "Show " : "Hide ") + getName(stageObject); + QString text = (isHidden ? tr("Show ") : tr("Hide ")) + getName(stageObject); QAction *action = new QAction(text, this); action->setData(column->getIndex()); connect(action, SIGNAL(triggered()), this, SLOT(onShowHide())); @@ -261,7 +261,7 @@ void SceneViewerContextMenu::addSelectCommand(QMenu *menu, TStageObject *stageObject = xsh->getStageObject(id); if (!stageObject) return; QString text = getName(stageObject); - if (menu == this) text = "Select " + text; + if (menu == this) text = tr("Select ") + text; QAction *action = new QAction(text, this); action->setData(id.getCode()); connect(action, SIGNAL(triggered()), this, SLOT(onSetCurrent())); @@ -287,7 +287,7 @@ void SceneViewerContextMenu::addLevelCommands(std::vector &indices) { if (!columns.empty()) { // show/hide if (columns.size() > 1) { - QMenu *subMenu = addMenu("Show / Hide"); + QMenu *subMenu = addMenu(tr("Show / Hide")); for (int i = 0; i < (int)columns.size(); i++) addShowHideCommand(subMenu, columns[i]); } else diff --git a/toonz/sources/translations/chinese/colorfx.ts b/toonz/sources/translations/chinese/colorfx.ts index 9243923..4102750 100644 --- a/toonz/sources/translations/chinese/colorfx.ts +++ b/toonz/sources/translations/chinese/colorfx.ts @@ -410,6 +410,10 @@ Watercolor 水彩画 + + Distance + 距离 + TMatrioskaStrokeStyle @@ -582,7 +586,7 @@ Intensity - 強度 + 强度 diff --git a/toonz/sources/translations/chinese/tnztools.ts b/toonz/sources/translations/chinese/tnztools.ts index 1e49b05..2821f65 100644 --- a/toonz/sources/translations/chinese/tnztools.ts +++ b/toonz/sources/translations/chinese/tnztools.ts @@ -332,6 +332,34 @@ Segment 自动分段 + + Lines + 线 + + + Areas + 区域 + + + Lines && Areas + 线和区域 + + + Normal + 正常 + + + Rectangular + 矩形 + + + Freehand + 手绘 + + + Polyline + 多边形 + FingerTool @@ -998,6 +1026,10 @@ Do you want to proceed? 连接矢量 + Distance + 距离 + + Mode: 模式: diff --git a/toonz/sources/translations/chinese/toonz.ts b/toonz/sources/translations/chinese/toonz.ts index 77ab730..d170229 100644 --- a/toonz/sources/translations/chinese/toonz.ts +++ b/toonz/sources/translations/chinese/toonz.ts @@ -277,6 +277,10 @@ Stop it or wait for its completion before removing it. Contrast: 对比度: + + Apply + 应用 + BrowserPopup @@ -700,6 +704,22 @@ What do you want to do? 去斑: + Save In + 保存位置 + + + Please fill the Save In field. + 请填写保存位置框。 + + + Cleanup Settings (Global) + 清稿设置(全局) + + + Cleanup Settings: + 清稿设置: + + Cleanup Settings 清稿设置 @@ -791,6 +811,30 @@ What do you want to do? ComboViewerPanel + Safe Area (Right Click to Select) + 安全区域(右键单击可选择) + + + Field Guide + 规格板 + + + Camera Stand View + 摄影机位视图 + + + 3D View + 3D 视图 + + + Camera View + 摄影机视图 + + + Freeze + 冻结 + + GUI Show / Hide 显示/隐藏界面 @@ -1296,6 +1340,22 @@ before color designing. Export File List 导出文件列表 + + Up + 向上 + + + New + 新建 + + + Icon + 图标 + + + List + 列表 + DvItemViewerPanel @@ -1320,7 +1380,7 @@ before color designing. Scan & Cleanup - 扫描&&清稿 + 扫描&清稿 Level @@ -1546,6 +1606,10 @@ before color designing. FileBrowser + Folder: + 文件夹: + + Can't change file extension 无法改变文件扩展名 @@ -1732,6 +1796,10 @@ before color designing. Apply 应用 + + Folder name: + 文件夹名称: + FileData @@ -2362,6 +2430,10 @@ Do you want to create it? Intensity: 强度: + + Apply + 应用 + LoadColorModelPopup @@ -2442,6 +2514,18 @@ Do you want to create it? LoadLevelPopup + On Demand + 按需 + + + All Icons + 所有图标 + + + All Icons & Images + 所有图标和图像 + + Load Level 加载层级 @@ -2719,6 +2803,10 @@ Do you want to create it? 另存调色板(&S)... + &Save Palette + 保存调色板 + + &Load Color Model... 加载色彩模型(&L)... @@ -3131,6 +3219,22 @@ Do you want to create it? 克隆(&C) + Drawing Substitution Forward + 向前替换绘图 + + + Drawing Substitution Backward + 向后替换绘图 + + + Similar Drawing Substitution Forward + 向前替换近似绘图 + + + Similar Drawing Substitution Backward + 向后替换近似绘图 + + &Set Key 设置关键帧(&S) @@ -3295,6 +3399,10 @@ Do you want to create it? 示意图(&S) + Toggle FX/Stage schematic + 切换特效/场景示意图 + + &Scene Cast 场景演员表(&S) @@ -3539,6 +3647,14 @@ Do you want to create it? 填充工具 + Fill Tool - Areas + 填充工具 - 区域 + + + Fill Tool - Lines + 填充工具 - 线 + + Paint Brush Tool 上色笔工具 @@ -3555,6 +3671,14 @@ Do you want to create it? 样式吸管工具 + Style Picker Tool - Areas + 样式吸管工具 - 区域 + + + Style Picker Tool - Lines + 样式吸管工具 - 线 + + RGB Picker Tool RGB 吸管工具 @@ -3791,6 +3915,30 @@ Do you want to create it? 文字工具样式 + Active Axis + 当前轴 + + + Active Axis - Position + 当前轴 - 位置 + + + Active Axis - Rotation + 当前轴 - 旋转 + + + Active Axis - Scale + 当前轴 - 缩放 + + + Active Axis - Shear + 当前轴 - 切变 + + + Active Axis - Center + 当前轴 - 中心点 + + Build Skeleton Mode 制作骨架模式 @@ -4167,6 +4315,10 @@ Do you want to create it? 切换锁定/解锁 + Hide Upper Columns + 隐藏上级列 + + Ruler Tool 标尺工具 @@ -4555,7 +4707,11 @@ What do you want to do? Multiple Rendering: - 多重渲染: + 多重渲染: + + + Do stereoscopy + 制作 3D 效果 Standard @@ -5209,6 +5365,18 @@ Do you want to overwrite it? 默认层级类型: + Toonz Vector Level + Toonz 矢量层级 + + + Toonz Raster Level + Toonz 栅格层级 + + + Raster Level + 栅格层级 + + Autocreation: 自动创建: @@ -5266,8 +5434,7 @@ Do you want to overwrite it? Antialiased region boundaries - 元訳:アンチエイリアス範囲の境界線 - + 抗锯齿范围边界线 Next/Previous Step Frames: @@ -8295,8 +8462,20 @@ Please commit or revert changes first. 重新生成帧预览 - Select - 选择 + Select + 选择 + + + Show + 显示 + + + Hide + 隐藏 + + + Show / Hide + 显示/隐藏 Reset Subcamera @@ -8393,7 +8572,7 @@ Please commit or revert changes first. Scan & Cleanup - 清稿 + 扫描&清稿 Level diff --git a/toonz/sources/translations/french/colorfx.ts b/toonz/sources/translations/french/colorfx.ts index 3e694fc..3b4c50a 100644 --- a/toonz/sources/translations/french/colorfx.ts +++ b/toonz/sources/translations/french/colorfx.ts @@ -410,6 +410,10 @@ Watercolor Aquarelle + + Distance + + TMatrioskaStrokeStyle diff --git a/toonz/sources/translations/french/tnztools.ts b/toonz/sources/translations/french/tnztools.ts index d9befee..76cf18c 100644 --- a/toonz/sources/translations/french/tnztools.ts +++ b/toonz/sources/translations/french/tnztools.ts @@ -995,6 +995,10 @@ Voulez-vous continuer? Réunir les Vecteurs + Distance + + + Mode: Mode: diff --git a/toonz/sources/translations/french/toonz.ts b/toonz/sources/translations/french/toonz.ts index cbcf5ef..a2aae73 100644 --- a/toonz/sources/translations/french/toonz.ts +++ b/toonz/sources/translations/french/toonz.ts @@ -276,6 +276,10 @@ Arrête ou attendre son achèvement avant de le retirer. Contrast: Contraste: + + Apply + + BrowserPopup @@ -702,6 +706,22 @@ Que voulez-vous faire? Déchatoiement: + Save In + + + + Please fill the Save In field. + + + + Cleanup Settings (Global) + + + + Cleanup Settings: + + + Cleanup Settings Paramètres de Nettoyage @@ -793,6 +813,30 @@ Que voulez-vous faire? ComboViewerPanel + Safe Area (Right Click to Select) + + + + Field Guide + + + + Camera Stand View + + + + 3D View + + + + Camera View + + + + Freeze + + + GUI Show / Hide @@ -1283,6 +1327,22 @@ Que voulez-vous faire? Export File List + + Up + + + + New + + + + Icon + + + + List + + DvItemViewerPanel @@ -1532,6 +1592,10 @@ Que voulez-vous faire? FileBrowser + Folder: + + + Can't change file extension Il est impossible de changer l'extension de fichier. @@ -1718,6 +1782,10 @@ Que voulez-vous faire? Apply Appliquer + + Folder name: + + FileData @@ -2348,6 +2416,10 @@ Voulez-vous le créer? Intensity: Intensité: + + Apply + + LoadColorModelPopup @@ -2428,6 +2500,18 @@ Voulez-vous le créer? LoadLevelPopup + On Demand + + + + All Icons + + + + All Icons & Images + + + Load Level Charger un Niveau @@ -2705,6 +2789,10 @@ Voulez-vous le créer? &Enregistrer la Palette sous... + &Save Palette + . + + &Load Color Model... &Charger un Modèle de Couleur... @@ -3113,6 +3201,22 @@ Voulez-vous le créer? &Cloner + Drawing Substitution Forward + + + + Drawing Substitution Backward + + + + Similar Drawing Substitution Forward + + + + Similar Drawing Substitution Backward + + + &Set Key &Définir une Clé @@ -3281,6 +3385,10 @@ Voulez-vous le créer? &Schématique + Toggle FX/Stage schematic + + + &Scene Cast &Cast du Plan @@ -3529,6 +3637,14 @@ Voulez-vous le créer? Outil de Remplissage + Fill Tool - Areas + + + + Fill Tool - Lines + + + Paint Brush Tool Outil de Peinture à Pinceau @@ -3545,6 +3661,14 @@ Voulez-vous le créer? Outil Pipette de Style + Style Picker Tool - Areas + + + + Style Picker Tool - Lines + + + RGB Picker Tool Outil Pipette RVB @@ -3781,6 +3905,30 @@ Voulez-vous le créer? Outil Texte Style + Active Axis + + + + Active Axis - Position + + + + Active Axis - Rotation + + + + Active Axis - Scale + + + + Active Axis - Shear + + + + Active Axis - Center + + + Build Skeleton Mode Mode Construction de Squelette @@ -4153,6 +4301,10 @@ Voulez-vous le créer? + Hide Upper Columns + + + Ruler Tool @@ -4542,7 +4694,11 @@ Que voulez-vous faire? Multiple Rendering: - Rendu Multiple: + Rendu Multiple: + + + Do stereoscopy + : Apply Shrink to Main Viewer @@ -5162,6 +5318,19 @@ Que voulez-vous faire? Type de Niveau par défaut: + Toonz Vector Level + + + + Toonz Raster Level + + + + Raster Level + + + + Width: Largeur: @@ -8244,9 +8413,21 @@ S'il vous plaît commettre ou annuler les modifications avant.Regenerate Frame Preview Régénérer le Preview de l'Image + + Select + + + + Show + + + + Hide + + - Select - Sélectionner + Show / Hide + Reset Subcamera diff --git a/toonz/sources/translations/german/colorfx.ts b/toonz/sources/translations/german/colorfx.ts index c61b5d3..03d9caa 100644 --- a/toonz/sources/translations/german/colorfx.ts +++ b/toonz/sources/translations/german/colorfx.ts @@ -410,6 +410,10 @@ Watercolor Wasserfarbe + + Distance + + TMatrioskaStrokeStyle diff --git a/toonz/sources/translations/german/tnztools.ts b/toonz/sources/translations/german/tnztools.ts index a6cee4a..9c0e033 100644 --- a/toonz/sources/translations/german/tnztools.ts +++ b/toonz/sources/translations/german/tnztools.ts @@ -994,6 +994,10 @@ Möchten Sie fortfahren? Vektoren verbinden + Distance + + + Mode: Modus: diff --git a/toonz/sources/translations/german/toonz.ts b/toonz/sources/translations/german/toonz.ts index ae88ee1..372d959 100644 --- a/toonz/sources/translations/german/toonz.ts +++ b/toonz/sources/translations/german/toonz.ts @@ -273,6 +273,10 @@ Halten Sie sie an oder warten Sie auf ihre Beendung bevor Sie sie entwenden.Contrast: Kontrast: + + Apply + + BrowserPopup @@ -695,6 +699,22 @@ What do you want to do? Störungen entfernen: + Save In + + + + Please fill the Save In field. + + + + Cleanup Settings (Global) + + + + Cleanup Settings: + + + Cleanup Settings Säuberungs-Einstellungen @@ -797,6 +817,30 @@ What do you want to do? ComboViewerPanel + Safe Area (Right Click to Select) + + + + Field Guide + + + + Camera Stand View + + + + 3D View + + + + Camera View + + + + Freeze + + + GUI Show / Hide GUI anzeigen/verbergen @@ -1295,6 +1339,22 @@ What do you want to do? Export File List Dateiliste exportieren + + Up + + + + New + + + + Icon + + + + List + + DvItemViewerPanel @@ -1610,6 +1670,10 @@ What do you want to do? FileBrowser + Folder: + + + Can't change file extension Die Dateiendung kann nicht geändert werden @@ -1800,6 +1864,10 @@ What do you want to do? OK + + Folder name: + + FileData @@ -2481,6 +2549,10 @@ Möchten Sie einen erstellen? Intensity: Intensität: + + Apply + + LoadColorModelPopup @@ -2561,6 +2633,18 @@ Möchten Sie einen erstellen? LoadLevelPopup + On Demand + + + + All Icons + + + + All Icons & Images + + + Load Level Ebene importieren @@ -2838,6 +2922,10 @@ Möchten Sie einen erstellen? Palette speichern (&S)... + &Save Palette + . + + &Load Color Model... Farbmodell importieren (&L)... @@ -3250,6 +3338,22 @@ Möchten Sie einen erstellen? Clonen (&C) + Drawing Substitution Forward + + + + Drawing Substitution Backward + + + + Similar Drawing Substitution Forward + + + + Similar Drawing Substitution Backward + + + &Set Key Key setzen (&S) @@ -3414,6 +3518,10 @@ Möchten Sie einen erstellen? Schaubild (&S) + Toggle FX/Stage schematic + + + &Scene Cast Szenen-Asset (&S) @@ -3658,6 +3766,14 @@ Möchten Sie einen erstellen? Füll-Tool + Fill Tool - Areas + + + + Fill Tool - Lines + + + Paint Brush Tool Farbpinsel-Tool @@ -3674,6 +3790,14 @@ Möchten Sie einen erstellen? Stil-Auswahl-Tool + Style Picker Tool - Areas + + + + Style Picker Tool - Lines + + + RGB Picker Tool RGBStil-Auswahl-Tool @@ -3910,6 +4034,30 @@ Möchten Sie einen erstellen? Stil für Schreib-Tool + Active Axis + + + + Active Axis - Position + + + + Active Axis - Rotation + + + + Active Axis - Scale + + + + Active Axis - Shear + + + + Active Axis - Center + + + Build Skeleton Mode Skelett-Erstellungs-Modus @@ -4286,6 +4434,10 @@ Möchten Sie einen erstellen? Sperre umschalten + Hide Upper Columns + + + Ruler Tool Lineal-Tool @@ -4690,7 +4842,11 @@ Was möchten Sie tun? Multiple Rendering: - Multiples Rendern: + Multiples Rendern: + + + Do stereoscopy + : Standard @@ -5345,6 +5501,19 @@ Do you want to overwrite it? Standard Ebenen-Format: + Toonz Vector Level + + + + Toonz Raster Level + + + + Raster Level + + + + Autocreation: Automatisches Erstellen: @@ -8504,9 +8673,21 @@ Bitte tragen Sie die Änderungen ein oder setzen sie zurück. Regenerate Frame Preview Vorschau neu berechnen(nur aktueller Frame) + + Select + + + + Show + + - Select - Wählen + Hide + + + + Show / Hide + Reset Subcamera diff --git a/toonz/sources/translations/italian/colorfx.ts b/toonz/sources/translations/italian/colorfx.ts index 124aff5..e707730 100644 --- a/toonz/sources/translations/italian/colorfx.ts +++ b/toonz/sources/translations/italian/colorfx.ts @@ -410,6 +410,10 @@ Watercolor Aquarello + + Distance + + TMatrioskaStrokeStyle diff --git a/toonz/sources/translations/italian/tnztools.ts b/toonz/sources/translations/italian/tnztools.ts index 8910ee9..c183d79 100644 --- a/toonz/sources/translations/italian/tnztools.ts +++ b/toonz/sources/translations/italian/tnztools.ts @@ -993,6 +993,10 @@ Procedere? Unisci i Vettori + Distance + + + Mode: Modalità: diff --git a/toonz/sources/translations/italian/toonz.ts b/toonz/sources/translations/italian/toonz.ts index 296a697..a4235ef 100644 --- a/toonz/sources/translations/italian/toonz.ts +++ b/toonz/sources/translations/italian/toonz.ts @@ -275,6 +275,10 @@ Stop it or wait for its completion before removing it. Contrast: Contrasto: + + Apply + + BrowserPopup @@ -701,6 +705,22 @@ Cosa vuoi fare? Eliminazione Imperfezioni: + Save In + + + + Please fill the Save In field. + + + + Cleanup Settings (Global) + + + + Cleanup Settings: + + + Cleanup Settings @@ -792,6 +812,30 @@ Cosa vuoi fare? ComboViewerPanel + Safe Area (Right Click to Select) + + + + Field Guide + + + + Camera Stand View + + + + 3D View + + + + Camera View + + + + Freeze + + + GUI Show / Hide @@ -1284,6 +1328,22 @@ Cosa vuoi fare? Export File List + + Up + + + + New + + + + Icon + + + + List + + DvItemViewerPanel @@ -1534,6 +1594,10 @@ Cosa vuoi fare? FileBrowser + Folder: + + + Can't change file extension Non è possibile cambiare l'estensione del file. @@ -1720,6 +1784,10 @@ Cosa vuoi fare? Apply Applica + + Folder name: + + FileData @@ -2350,6 +2418,10 @@ Vuoi crearla? Intensity: Intensità: + + Apply + + LoadColorModelPopup @@ -2430,6 +2502,18 @@ Vuoi crearla? LoadLevelPopup + On Demand + + + + All Icons + + + + All Icons & Images + + + Load Level Carica un Livello @@ -2707,6 +2791,10 @@ Vuoi crearla? &Salva la Palette Come... + &Save Palette + . + + &Load Color Model... &Carica un Modello di Colore... @@ -3115,6 +3203,22 @@ Vuoi crearla? &Clona + Drawing Substitution Forward + + + + Drawing Substitution Backward + + + + Similar Drawing Substitution Forward + + + + Similar Drawing Substitution Backward + + + &Set Key &Imposta una Chiave @@ -3283,6 +3387,10 @@ Vuoi crearla? &Diagramma + Toggle FX/Stage schematic + + + &Scene Cast &Cast di Scena @@ -3527,6 +3635,14 @@ Vuoi crearla? Strumento Riempimento + Fill Tool - Areas + + + + Fill Tool - Lines + + + Paint Brush Tool Strumento Pennello per Riempimenti @@ -3543,6 +3659,14 @@ Vuoi crearla? Strumento Contagocce per Stili + Style Picker Tool - Areas + + + + Style Picker Tool - Lines + + + RGB Picker Tool Strumento Contagocce @@ -3779,6 +3903,30 @@ Vuoi crearla? Stile Strumento Testo + Active Axis + + + + Active Axis - Position + + + + Active Axis - Rotation + + + + Active Axis - Scale + + + + Active Axis - Shear + + + + Active Axis - Center + + + Build Skeleton Mode Modalità di Costruzione dello Scheletro @@ -4156,6 +4304,10 @@ Decrementa lo spessore minimo del pennello + Hide Upper Columns + + + Ruler Tool @@ -4545,7 +4697,11 @@ Cosa vuoi fare? Multiple Rendering: - Render Multiplo: + Render Multiplo: + + + Do stereoscopy + : Apply Shrink to Main Viewer @@ -5163,6 +5319,19 @@ Cosa vuoi fare? Tipo Livello Predefinito: + Toonz Vector Level + + + + Toonz Raster Level + + + + Raster Level + + + + Width: Larghezza: @@ -8245,9 +8414,21 @@ Per favore sottometti o ripristina i cambiamenti prima di proseguire.Regenerate Frame Preview Rigenera l'Anteprima del Fotogramma + + Select + + + + Show + + + + Hide + + - Select - Seleziona + Show / Hide + Reset Subcamera diff --git a/toonz/sources/translations/japanese/colorfx.ts b/toonz/sources/translations/japanese/colorfx.ts index fa67ca0..38c8213 100644 --- a/toonz/sources/translations/japanese/colorfx.ts +++ b/toonz/sources/translations/japanese/colorfx.ts @@ -410,6 +410,10 @@ Watercolor 水彩画 + + Distance + + TMatrioskaStrokeStyle diff --git a/toonz/sources/translations/japanese/tnztools.ts b/toonz/sources/translations/japanese/tnztools.ts index edb752f..dd0a322 100644 --- a/toonz/sources/translations/japanese/tnztools.ts +++ b/toonz/sources/translations/japanese/tnztools.ts @@ -998,6 +998,10 @@ Do you want to proceed? ベクターの結合 + Distance + + + Mode: モード: diff --git a/toonz/sources/translations/japanese/toonz.ts b/toonz/sources/translations/japanese/toonz.ts index d20577d..53be825 100644 --- a/toonz/sources/translations/japanese/toonz.ts +++ b/toonz/sources/translations/japanese/toonz.ts @@ -277,6 +277,10 @@ Stop it or wait for its completion before removing it. Contrast: コントラスト: + + Apply + + BrowserPopup @@ -699,6 +703,22 @@ What do you want to do? ドットノイズを自動除去: + Save In + + + + Please fill the Save In field. + + + + Cleanup Settings (Global) + + + + Cleanup Settings: + + + Cleanup Settings トレース設定 @@ -790,6 +810,30 @@ What do you want to do? ComboViewerPanel + Safe Area (Right Click to Select) + + + + Field Guide + + + + Camera Stand View + + + + 3D View + + + + Camera View + + + + Freeze + + + GUI Show / Hide GUI 表示/非表示 @@ -1294,6 +1338,22 @@ before color designing. Export File List ファイルリストをエクスポート + + Up + + + + New + + + + Icon + + + + List + + DvItemViewerPanel @@ -1542,6 +1602,10 @@ before color designing. FileBrowser + Folder: + + + Can't change file extension ファイル拡張子を変更できません @@ -1728,6 +1792,10 @@ before color designing. Apply 適用 + + Folder name: + + FileData @@ -2357,6 +2425,10 @@ Do you want to create it? Intensity: 強度: + + Apply + + LoadColorModelPopup @@ -2437,6 +2509,18 @@ Do you want to create it? LoadLevelPopup + On Demand + + + + All Icons + + + + All Icons & Images + + + Load Level レベルを読み込み @@ -2714,6 +2798,10 @@ Do you want to create it? パレットを保存 (&S)... + &Save Palette + . + + &Load Color Model... カラーモデルを読み込み (&L)... @@ -3126,6 +3214,22 @@ Do you want to create it? クローン (&C) + Drawing Substitution Forward + + + + Drawing Substitution Backward + + + + Similar Drawing Substitution Forward + + + + Similar Drawing Substitution Backward + + + &Set Key キーを設定 (&S) @@ -3290,6 +3394,10 @@ Do you want to create it? スキマティック (&S) + Toggle FX/Stage schematic + + + &Scene Cast シーンアセット (&S) @@ -3534,6 +3642,14 @@ Do you want to create it? 塗りつぶしツール + Fill Tool - Areas + + + + Fill Tool - Lines + + + Paint Brush Tool ペイントブラシツール @@ -3550,6 +3666,14 @@ Do you want to create it? スポイトツール + Style Picker Tool - Areas + + + + Style Picker Tool - Lines + + + RGB Picker Tool RGBスポイトツール @@ -3786,6 +3910,30 @@ Do you want to create it? 文字ツールのスタイル + Active Axis + + + + Active Axis - Position + + + + Active Axis - Rotation + + + + Active Axis - Scale + + + + Active Axis - Shear + + + + Active Axis - Center + + + Build Skeleton Mode ボーン作成モード @@ -4162,6 +4310,10 @@ Do you want to create it? ロック切り替え + Hide Upper Columns + + + Ruler Tool ものさしツール @@ -4578,7 +4730,11 @@ What do you want to do? Multiple Rendering: - 複数レンダリング: + 複数レンダリング: + + + Do stereoscopy + : Standard @@ -5372,6 +5528,19 @@ Do you want to overwrite it? 既定のレベル形式: + Toonz Vector Level + + + + Toonz Raster Level + + + + Raster Level + + + + Autocreation: 自動作成: @@ -8459,9 +8628,21 @@ Please commit or revert changes first. Regenerate Frame Preview プレビューを再計算(現在のフレームのみ) + + Select + + + + Show + + - Select - 選択 + Hide + + + + Show / Hide + Reset Subcamera diff --git a/toonz/sources/translations/spanish/colorfx.ts b/toonz/sources/translations/spanish/colorfx.ts index d5f8ceb..04a9f52 100644 --- a/toonz/sources/translations/spanish/colorfx.ts +++ b/toonz/sources/translations/spanish/colorfx.ts @@ -410,6 +410,10 @@ Watercolor Acuarela + + Distance + + TMatrioskaStrokeStyle diff --git a/toonz/sources/translations/spanish/tnztools.ts b/toonz/sources/translations/spanish/tnztools.ts index a94aa9d..9536235 100644 --- a/toonz/sources/translations/spanish/tnztools.ts +++ b/toonz/sources/translations/spanish/tnztools.ts @@ -998,6 +998,10 @@ Do you want to proceed? Unir vectores + Distance + + + Mode: Modo: diff --git a/toonz/sources/translations/spanish/toonz.ts b/toonz/sources/translations/spanish/toonz.ts index 95e0c05..30b1b60 100644 --- a/toonz/sources/translations/spanish/toonz.ts +++ b/toonz/sources/translations/spanish/toonz.ts @@ -280,6 +280,10 @@ Detenerla o esperar a su finalización antes de eliminarla. Contrast: Contraste: + + Apply + + BrowserPopup @@ -705,6 +709,22 @@ What do you want to do? Desmanchado: + Save In + + + + Please fill the Save In field. + + + + Cleanup Settings (Global) + + + + Cleanup Settings: + + + Cleanup Settings Opciones de limpieza @@ -796,6 +816,30 @@ What do you want to do? ComboViewerPanel + Safe Area (Right Click to Select) + + + + Field Guide + + + + Camera Stand View + + + + 3D View + + + + Camera View + + + + Freeze + + + GUI Show / Hide Mostrar / Ocultar interfaz @@ -1299,6 +1343,22 @@ before color designing. Export File List Exportar lista de archivos + + Up + + + + New + + + + Icon + + + + List + + DvItemViewerPanel @@ -1547,6 +1607,10 @@ before color designing. FileBrowser + Folder: + + + Can't change file extension No es posible cambiar la extensión del archivo @@ -1733,6 +1797,10 @@ before color designing. Apply Aplicar + + Folder name: + + FileData @@ -2362,6 +2430,10 @@ Do you want to create it? Intensity: Intensidad: + + Apply + + LoadColorModelPopup @@ -2442,6 +2514,18 @@ Do you want to create it? LoadLevelPopup + On Demand + + + + All Icons + + + + All Icons & Images + + + Load Level Cargar nivel @@ -2719,6 +2803,10 @@ Do you want to create it? &Guardar paleta como... + &Save Palette + . + + &Load Color Model... &Cargar modelo de color... @@ -3127,6 +3215,22 @@ Do you want to create it? &Clonar + Drawing Substitution Forward + + + + Drawing Substitution Backward + + + + Similar Drawing Substitution Forward + + + + Similar Drawing Substitution Backward + + + &Set Key &Definir clave @@ -3295,6 +3399,10 @@ Do you want to create it? &Diagrama + Toggle FX/Stage schematic + + + &Scene Cast &Elenco de la escena @@ -3539,6 +3647,14 @@ Do you want to create it? Rellenar + Fill Tool - Areas + + + + Fill Tool - Lines + + + Paint Brush Tool Pincel de pintura @@ -3555,6 +3671,14 @@ Do you want to create it? Selector de estilo + Style Picker Tool - Areas + + + + Style Picker Tool - Lines + + + RGB Picker Tool Selector de color @@ -3791,6 +3915,30 @@ Do you want to create it? Estilo del texto + Active Axis + + + + Active Axis - Position + + + + Active Axis - Rotation + + + + Active Axis - Scale + + + + Active Axis - Shear + + + + Active Axis - Center + + + Build Skeleton Mode Modo de creación de esqueleto @@ -4167,6 +4315,10 @@ Do you want to create it? Alternar bloquear/desbloquear + Hide Upper Columns + + + Ruler Tool Regla @@ -4579,7 +4731,11 @@ What do you want to do? Multiple Rendering: - Procesamiento múltiple: + Procesamiento múltiple: + + + Do stereoscopy + : Apply Shrink to Main Viewer @@ -5197,6 +5353,19 @@ What do you want to do? Tipo de nivel predefinido: + Toonz Vector Level + + + + Toonz Raster Level + + + + Raster Level + + + + Width: Ancho: @@ -8305,9 +8474,21 @@ Por favor enviar o revertir los cambios antes. Regenerate Frame Preview Regenerar previsualización de fotograma + + Select + + + + Show + + - Select - Seleccionar + Hide + + + + Show / Hide + Reset Subcamera