diff --git a/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.Designer.cs b/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.Designer.cs
index 535eee5..ba4fff8 100644
--- a/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.Designer.cs
+++ b/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.Designer.cs
@@ -699,6 +699,33 @@ namespace DotNetCore.CAP.Dashboard.Resources {
}
}
+ ///
+ /// Looks up a localized string similar to IP Address.
+ ///
+ public static string NodePage_Table_IP {
+ get {
+ return ResourceManager.GetString("NodePage_Table_IP", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Node Name.
+ ///
+ public static string NodePage_Table_NodeName {
+ get {
+ return ResourceManager.GetString("NodePage_Table_NodeName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Port.
+ ///
+ public static string NodePage_Table_Port {
+ get {
+ return ResourceManager.GetString("NodePage_Table_Port", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Nodes.
///
diff --git a/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.resx b/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.resx
index aad31b1..583e864 100644
--- a/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.resx
+++ b/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.resx
@@ -390,4 +390,13 @@
State
+
+ IP Address
+
+
+ Node Name
+
+
+ Port
+
\ No newline at end of file
diff --git a/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.zh.resx b/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.zh.resx
index 05ce561..b814c28 100644
--- a/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.zh.resx
+++ b/src/DotNetCore.CAP/Dashboard/Content/resx/Strings.zh.resx
@@ -414,4 +414,13 @@
状态
+
+ IP 地址
+
+
+ 节点名称
+
+
+ 端口号
+
\ No newline at end of file
diff --git a/src/DotNetCore.CAP/Dashboard/HtmlHelper.cs b/src/DotNetCore.CAP/Dashboard/HtmlHelper.cs
index c38f1ff..75d09c1 100644
--- a/src/DotNetCore.CAP/Dashboard/HtmlHelper.cs
+++ b/src/DotNetCore.CAP/Dashboard/HtmlHelper.cs
@@ -170,7 +170,7 @@ namespace DotNetCore.CAP.Dashboard
public NonEscapedString NodeSwitchLink(string id)
{
return Raw(
- $"{Strings.NodePage_Switch}");
+ $"{Strings.NodePage_Switch}");
}
public NonEscapedString StackTrace(string stackTrace)
diff --git a/src/DotNetCore.CAP/Dashboard/Pages/NodePage.cshtml b/src/DotNetCore.CAP/Dashboard/Pages/NodePage.cshtml
index d99e200..313042e 100644
--- a/src/DotNetCore.CAP/Dashboard/Pages/NodePage.cshtml
+++ b/src/DotNetCore.CAP/Dashboard/Pages/NodePage.cshtml
@@ -21,12 +21,12 @@
- 编号 |
- 节点名称 |
- IP地址 |
- 端口号 |
+ @Strings.Common_Id |
+ @Strings.NodePage_Table_NodeName |
+ @Strings.NodePage_Table_IP |
+ @Strings.NodePage_Table_Port |
Tags |
- 操作 |
+ @Strings.NodePage_Switch |