dashboard-shell-shell 3.0.5-test.30 → 3.0.5-test.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -595,6 +595,10 @@ assignTo:
595
595
  workspace: 工作空间
596
596
 
597
597
  stateLabel:
598
+ warning: 警告
599
+ upgrading: 升级中
600
+ Upgrading: 升级中
601
+ Succeeded: 成功
598
602
  Pending migration: 待迁移
599
603
  Imagepullbackoff: 镜像拉取失败
600
604
  VM error: 错误
@@ -603,7 +607,9 @@ stateLabel:
603
607
  Running: 运行中
604
608
  Off: 关闭
605
609
  Stopped: 关闭
610
+ pending: 准备中
606
611
  Pending: 准备中
612
+ failed: 失败
607
613
  Failed: 失败
608
614
  Paused: 暂停
609
615
  Stopping: 停止中
@@ -2232,6 +2232,7 @@ export default {
2232
2232
  tr {
2233
2233
  border-bottom: 1px solid var(--sortable-table-top-divider) !important;
2234
2234
  background-color: var(--sortable-table-row-bg);
2235
+ height: 60px;
2235
2236
 
2236
2237
  &.main-row.has-sub-row {
2237
2238
  border-bottom: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dashboard-shell-shell",
3
- "version": "3.0.5-test.30",
3
+ "version": "3.0.5-test.32",
4
4
  "description": "Rancher Dashboard Shell",
5
5
  "repository": "https://github.com/rancherlabs/dashboard",
6
6
  "license": "Apache-2.0",
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
3
  # 执行命令示例:
4
- # TAG=shell-pkg-v3.0.5-test.19 ./shell/scripts/publish-shell.sh
4
+ # TAG=shell-pkg-v3.0.5-test.32 ./shell/scripts/publish-shell.sh
5
5
 
6
6
  set -euo pipefail
7
7
 
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "translations": [
3
+ {
4
+ "pattern": "([^\\s]+) in excludeips is not a valid ip range",
5
+ "replacement": "excludeIPs 中的地址段 '$1' 不是有效的 IP 范围",
6
+ "flags": "gi"
7
+ },
3
8
  {
4
9
  "pattern": "fail to create service, error: service "([^&]+)" is invalid: metadata\\.name: invalid value: "([^&]+)": a dns-1035 label must consist of lower case alphanumeric characters or '-', start with an alphabetic character, and end with an alphanumeric character",
5
10
  "replacement": "创建服务失败:服务名称 \"$2\" 不符合 DNS-1035 规则,只能使用小写字母、数字或 '-',并以字母开头、字母或数字结尾",