Skip to content

Commit

Permalink
Fix s/Slack API token/Slack Bot OAuth token/
Browse files Browse the repository at this point in the history
  • Loading branch information
nowsprinting committed Dec 22, 2024
1 parent b1ea5e5 commit 2b79872
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Editor/Localization/ja.po
Original file line number Diff line number Diff line change
Expand Up @@ -560,8 +560,8 @@ msgid "Slack Token"
msgstr "Slackトークン"

# slackToken tooltip
msgid "Slack API token. If omitted, it will not be sent."
msgstr "Slack通知に使用するWeb APIトークン(省略時は送信されません)"
msgid "Slack Bot OAuth token. If omitted, it will not be sent."
msgstr "Slack通知に使用するBotのOAuthトークン(省略時は送信されません)"

# slackChannels
msgid "Slack Channels"
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 @@ -24,7 +24,7 @@ public class SlackReporterEditor : UnityEditor.Editor
private GUIContent _descriptionGUIContent;

private static readonly string s_slackToken = L10n.Tr("Slack Token");
private static readonly string s_slackTokenTooltip = L10n.Tr("Slack API token. If omitted, it will not be sent.");
private static readonly string s_slackTokenTooltip = L10n.Tr("Slack Bot OAuth token. If omitted, it will not be sent.");
private SerializedProperty _slackTokenProp;
private GUIContent _slackTokenGUIContent;

Expand Down
2 changes: 1 addition & 1 deletion Runtime/Reporters/SlackReporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace DeNA.Anjin.Reporters
public class SlackReporter : AbstractReporter
{
/// <summary>
/// Slack API token.
/// Slack Bot OAuth token.
/// </summary>
public string slackToken;

Expand Down

0 comments on commit 2b79872

Please sign in to comment.