Version: 2021.1
LanguageEnglish
  • C#

L10n.Tr

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static string Tr(string str);

Parameters

str Original text, basically English.

Returns

string Localized text.

Description

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")); } }