Version: 2021.3
言語: 日本語
public static string Tr (string str);

パラメーター

str Original text, basically English.

戻り値

string Localized text.

説明

This function referes a po file like ja.po as an asset. Asmdef and [assembly: UnityEditor.Localization] is needed.

using UnityEngine;
using UnityEditor;

// This is not an editor script. public class MyScript : MonoBehaviour {}

[CustomEditor(typeof(MyScript))] public class MyScriptInspector : Editor { MyScript m_Target = null; void OnEnable() { m_Target = target as MyScript; }

public override void OnInspectorGUI() { base.OnInspectorGUI(); EditorGUILayout.LabelField(L10n.Tr("Cancel")); } }