Skip to content

Commit

Permalink
fix: wrong word when DOM and DOW both present (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
mytharcher committed Jan 26, 2024
1 parent b08d1d5 commit 0f98cd9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/i18n/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export class en implements Locale {
return ", only on %s";
}
commaAndOnX0() {
return ", and on %s";
return ", or on %s";
}
commaEveryX0Months() {
return ", every %s months";
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/locales/zh_CN.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export class zh_CN implements Locale {
return ", 仅%s";
}
commaAndOnX0() {
return ", 并且为%s";
return ", 或者为%s";
}
commaEveryX0Months() {
return ", 每隔 %s 个月";
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/locales/zh_TW.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export class zh_TW implements Locale {
return ", 僅在 %s";
}
commaAndOnX0() {
return ", %s";
return ", %s";
}
commaEveryX0Months() {
return ", 每 %s 月";
Expand Down

0 comments on commit 0f98cd9

Please sign in to comment.