Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions Editor/Localization/ja.po
Original file line number Diff line number Diff line change
Expand Up @@ -394,10 +394,6 @@ msgstr "操作を記録したJSONファイル"
msgid "JSON file recorded by AutomatedQA package"
msgstr "Automated QAパッケージのRecorded Playbackウィンドウで記録したjsonファイルを設定します"

# composite reporters
msgid "Reporters"
msgstr "レポータ"


#: Editor/UI/Loggers/ 共通

Expand Down Expand Up @@ -458,10 +454,15 @@ msgid "Description"
msgstr "説明"

# description tooltip
msgid "Description about this setting instance"
msgid "Description about this reporter instance"
msgstr "このReporterインスタンスの説明"


#: Editor/UI/Reporters/CompositeReporterEditor.cs
msgid "Reporters"
msgstr "レポータ"


#: Editor/UI/Reporters/SlackReporterEditor.cs

# slackToken
Expand Down
2 changes: 1 addition & 1 deletion Editor/UI/Reporters/CompositeReporterEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace DeNA.Anjin.Editor.UI.Reporters
public class CompositeReporterEditor : UnityEditor.Editor
{
private static readonly string s_description = L10n.Tr("Description");
private static readonly string s_descriptionTooltip = L10n.Tr("Description about this logger instance");
private static readonly string s_descriptionTooltip = L10n.Tr("Description about this reporter instance");
private SerializedProperty _descriptionProp;
private GUIContent _descriptionGUIContent;

Expand Down
2 changes: 1 addition & 1 deletion Editor/UI/Reporters/SlackReporterEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class SlackReporterEditor : UnityEditor.Editor
private const float SpacerPixelsUnderHeader = 4f;

private static readonly string s_description = L10n.Tr("Description");
private static readonly string s_descriptionTooltip = L10n.Tr("Description about this logger instance");
private static readonly string s_descriptionTooltip = L10n.Tr("Description about this reporter instance");
private SerializedProperty _descriptionProp;
private GUIContent _descriptionGUIContent;

Expand Down