Skip to content

Commit 432bb40

Browse files
authored
fix(l10n): correct the prefix string for notecards in zh-TW locale (#81)
1 parent bafc0f9 commit 432bb40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: crates/rari-md/src/node_card.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ impl NoteCard {
3737
(Self::Callout, Locale::ZhCn) => "标注:",
3838
(Self::Warning, Locale::ZhCn) => "警告:",
3939
(Self::Note, Locale::ZhCn) => "备注:",
40-
(Self::Callout, Locale::ZhTw) => "标注:",
40+
(Self::Callout, Locale::ZhTw) => "標註:",
4141
(Self::Warning, Locale::ZhTw) => "警告:",
42-
(Self::Note, Locale::ZhTw) => "备注:",
42+
(Self::Note, Locale::ZhTw) => "備註:",
4343
}
4444
}
4545
pub fn new_prefix(&self) -> &str {

0 commit comments

Comments
 (0)