Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: awkward Korean description #311

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/i18n/locales/ko.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class ko implements Locale {
}

public minutesX0ThroughX1PastTheHour() {
return "정시 후 %s분에서 %s까지";
return "정시 후 %s분에서 %s분까지";
}

public atX0MinutesPastTheHour() {
Expand Down Expand Up @@ -168,7 +168,7 @@ export class ko implements Locale {
}

public commaOnlyInX0() {
return ", %s에서만";
return ", %s에만";
}

public commaOnTheLastDayOfTheMonth() {
Expand All @@ -188,7 +188,7 @@ export class ko implements Locale {
}

public weekdayNearestDayX0() {
return "평일 가장 가까운 날 %s";
return "%s일과 가장 가까운 평일";
}

public commaOnTheX0OfTheMonth() {
Expand All @@ -200,7 +200,7 @@ export class ko implements Locale {
}

public commaBetweenDayX0AndX1OfTheMonth() {
return ", 해당 월의 %s일 및 %s일 사이";
return ", 해당 월의 %s일에서 %s일까지";
}

public commaOnDayX0OfTheMonth() {
Expand Down