feat: add i18n for visibility

This commit is contained in:
Steven
2023-06-26 20:34:28 +08:00
parent 2bf698d3b8
commit 691b40c968
6 changed files with 46 additions and 6 deletions

18
web/src/locales/en.json Normal file
View File

@@ -0,0 +1,18 @@
{
"shortcut": {
"visibility": {
"private": {
"self": "Private",
"description": "Only you can see this"
},
"workspace": {
"self": "Workspace",
"description": "Only people in your workspace can see this"
},
"public": {
"self": "Public",
"description": "Anyone can see this"
}
}
}
}