feat: LocaleString for status

This commit is contained in:
Jason Song
2023-01-06 15:02:03 +08:00
parent a6f8f10670
commit 91dfef0425
4 changed files with 21 additions and 3 deletions

View File

@@ -3271,3 +3271,12 @@ runners.delete_runner_failed = Failed to delete runner
runners.delete_runner_header = Confirm to delete this runner
runners.delete_runner_notice = If a task is running on this runner, it will be terminated and mark as failed. It may break building workflow.
runners.delete_runner_confirm = Delete this runner
status.unknown = "Unknown"
status.waiting = "Waiting"
status.running = "Running"
status.success = "Success"
status.failure = "Failure"
status.cancelled = "Cancelled"
status.skipped = "Skipped"
status.blocked = "Blocked"