diff --git a/CHANGELOG-PRERELEASE.md b/CHANGELOG-PRERELEASE.md index 1c305cea5..26c361227 100644 --- a/CHANGELOG-PRERELEASE.md +++ b/CHANGELOG-PRERELEASE.md @@ -20,6 +20,7 @@ The format is based on [Keep a Changelog]. - We cannot set override setting of Colliders to Copy `#183` - Error with MergeToonLit `#185` - Poor word choice in Japanese Translation `#174` +- Localization is not applied for some fields `#186` ### Security diff --git a/CHANGELOG.md b/CHANGELOG.md index b3fd956a9..dfaee511c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ The format is based on [Keep a Changelog]. - We cannot set override setting of Colliders to Copy `#183` - Error with MergeToonLit `#185` - Poor word choice in Japanese Translation `#174` +- Localization is not applied for some fields `#186` ### Security diff --git a/Editor/RemoveMeshInBoxEditor.cs b/Editor/RemoveMeshInBoxEditor.cs index fbf32ab66..676c46cc7 100644 --- a/Editor/RemoveMeshInBoxEditor.cs +++ b/Editor/RemoveMeshInBoxEditor.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using CustomLocalization4EditorExtension; using JetBrains.Annotations; using UnityEditor; using UnityEngine; @@ -107,7 +108,7 @@ public override void OnGUI(Rect position, SerializedProperty property, GUIConten } // rotation in euler - var rotationLabel = new GUIContent("Rotation"); + var rotationLabel = new GUIContent(CL4EE.Tr("RemoveMeshInBox:BoundingBox:prop:rotation")); rotationLabel = EditorGUI.BeginProperty(position, rotationLabel, rotationProp); EditorGUI.BeginChangeCheck(); var euler = EditorGUI.Vector3Field(position, rotationLabel, eulerCache.euler);