Browse Source

Added translations

CPKreuz 1 year ago
parent
commit
a55f4ab903

+ 3 - 1
src/PixiEditor.AvaloniaUI/Data/Localization/Languages/en.json

@@ -671,5 +671,7 @@
   "NOISE_TYPE": "Noise Type",
   "NOISE_TYPE": "Noise Type",
   "OCTAVES": "Octaves",
   "OCTAVES": "Octaves",
   "ACTIVE_FRAME": "Active Frame",
   "ACTIVE_FRAME": "Active Frame",
-  "NORMALIZED_TIME": "Normalized Time"
+  "NORMALIZED_TIME": "Normalized Time",
+  "WITHOUT_FILTERS": "Without filters",
+  "RAW_LAYER_OUTPUT": "Raw"
 }
 }

+ 1 - 1
src/PixiEditor.ChangeableDocument/Changeables/Graph/Nodes/ImageLayerNode.cs

@@ -38,7 +38,7 @@ public class ImageLayerNode : LayerNode, IReadOnlyImageNode
 
 
     public ImageLayerNode(VecI size)
     public ImageLayerNode(VecI size)
     {
     {
-        RawOutput = CreateOutput<Surface>(nameof(RawOutput), "RAW", null);
+        RawOutput = CreateOutput<Surface>(nameof(RawOutput), "RAW_LAYER_OUTPUT", null);
 
 
         LockTransparency = CreateInput<bool>("LockTransparency", "LOCK_TRANSPARENCY", false);
         LockTransparency = CreateInput<bool>("LockTransparency", "LOCK_TRANSPARENCY", false);