more translation strings
This commit is contained in:
parent
d788319079
commit
bc6e160493
4 changed files with 590 additions and 11 deletions
|
|
@ -27,19 +27,12 @@ of the authors and should not be interpreted as representing official policies,
|
|||
either expressed or implied, of the FreeBSD Project.
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using MatterHackers.Agg;
|
||||
using MatterHackers.Agg.Image;
|
||||
using MatterHackers.Agg.UI;
|
||||
using MatterHackers.DataConverters3D;
|
||||
using MatterHackers.Localizations;
|
||||
using MatterHackers.MatterControl.DesignTools;
|
||||
using MatterHackers.MatterControl.DesignTools.Operations;
|
||||
using MatterHackers.MatterControl.SlicerConfiguration;
|
||||
using MatterHackers.MeshVisualizer;
|
||||
using MatterHackers.Plugins.EditorTools;
|
||||
|
|
@ -49,10 +42,16 @@ using MatterHackers.RayTracer;
|
|||
using MatterHackers.RenderOpenGl;
|
||||
using MatterHackers.RenderOpenGl.OpenGl;
|
||||
using MatterHackers.VectorMath;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MatterHackers.MatterControl.PartPreviewWindow
|
||||
{
|
||||
[Flags]
|
||||
[Flags]
|
||||
public enum ControlTypes
|
||||
{
|
||||
MoveInZ = 1 << 0,
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ either expressed or implied, of the FreeBSD Project.
|
|||
using AngleSharp.Dom;
|
||||
using AngleSharp.Html.Parser;
|
||||
using MatterHackers.Agg;
|
||||
using MatterHackers.Agg.Image;
|
||||
using MatterHackers.Agg.Platform;
|
||||
using MatterHackers.Agg.UI;
|
||||
using MatterHackers.Agg.VertexSource;
|
||||
|
|
@ -356,7 +357,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
|
|||
{
|
||||
SiblingRadioButtonList = buttonGroupA,
|
||||
ToolTipText = "Select Parts".Localize(),
|
||||
Margin = theme.ButtonSpacing
|
||||
Margin = theme.ButtonSpacing,
|
||||
};
|
||||
|
||||
AddRoundButton(partSelectButton, RotatedMargin(partSelectButton, MathHelper.Tau * .15));
|
||||
|
|
@ -455,8 +456,10 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
|
|||
tumbleCubeCenter.X += bottomButtonOffset;
|
||||
|
||||
renderRoundedLine(18, 101);
|
||||
|
||||
|
||||
// e.Graphics2D.Circle(controlLayer.Width - cubeCenterFromRightTop.X, controlLayer.Height - cubeCenterFromRightTop.Y, 150, Color.Cyan);
|
||||
|
||||
// ImageIO.SaveImageData("C:\\temp\\test.png", hudBackground.BackBuffer);
|
||||
};
|
||||
|
||||
// add the home button
|
||||
|
|
@ -494,6 +497,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
|
|||
ToggleButton = true,
|
||||
SiblingRadioButtonList = new List<GuiWidget>(),
|
||||
Checked = turntableEnabled,
|
||||
//DoubleBuffer = true,
|
||||
#if !INCLUDE_ORTHOGRAPHIC
|
||||
BorderColor = hudStrokeColor,
|
||||
#endif
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1 +1 @@
|
|||
Subproject commit b18cb3912c1661bf44d65cb4b04c584d5540ea8d
|
||||
Subproject commit bf8403fed60d92c65a39350d64ed1c0e2ba78732
|
||||
Loading…
Add table
Add a link
Reference in a new issue