Skip to content

Commit

Permalink
fix: optimize alter message
Browse files Browse the repository at this point in the history
  • Loading branch information
AkaShark committed Feb 1, 2024
1 parent d497caa commit 8d1e68a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Easydict/App/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -3102,19 +3102,19 @@
}
}
},
"shortcut_confict" : {
"shortcut_confict %@" : {
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Shortcut Confict"
"value" : "%@"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "快捷键冲突"
"value" : "%@"
}
}
}
Expand Down Expand Up @@ -3151,7 +3151,7 @@
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "当前快捷键无法使用,因为它已被\n“%@”占用"
"value" : "当前快捷键无法使用,因为它已被\n\"%@\"占用"
}
}
}
Expand All @@ -3171,7 +3171,7 @@
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "快捷键”%@“,无法使用"
"value" : "快捷键\"%@\",无法使用"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ extension ShortcutTab {
Text("global_shortcut_setting")
}

.alert(String(localized: "shortcut_confict"),
.alert(String(localized: "shortcut_confict \(confictAlterMessage.title)"),
isPresented: showAlter,
presenting: confictAlterMessage)
{ _ in
Expand Down

0 comments on commit 8d1e68a

Please sign in to comment.