add Korean

This commit is contained in:
Minhyung Park
2025-10-01 21:17:29 +09:00
committed by mayswind
parent a50d2e7e72
commit dc6d8398b1
18 changed files with 2356 additions and 0 deletions
+3
View File
@@ -24,6 +24,9 @@ var AllLanguages = map[string]*LocaleInfo{
"ja": {
Content: ja,
},
"ko": {
Content: ko,
},
"nl": {
Content: nl,
},
+30
View File
@@ -0,0 +1,30 @@
package locales
import (
"github.com/mayswind/ezbookkeeping/pkg/core"
)
var ko = &LocaleTextItems{
DefaultTypes: &DefaultTypes{
DecimalSeparator: core.DECIMAL_SEPARATOR_DOT,
DigitGroupingSymbol: core.DIGIT_GROUPING_SYMBOL_COMMA,
},
DataConverterTextItems: &DataConverterTextItems{
Alipay: "Alipay",
WeChatWallet: "Wallet",
},
VerifyEmailTextItems: &VerifyEmailTextItems{
Title: "이메일 인증",
SalutationFormat: "안녕하세요 %s님,",
DescriptionAboveBtn: "이메일 주소를 확인하려면 아래 링크를 클릭해주세요.",
VerifyEmail: "이메일 인증",
DescriptionBelowBtnFormat: "%s 계정에 가입하지 않으셨다면 이 이메일을 무시해주세요. 위 링크를 클릭할 수 없는 경우, 위 URL을 복사하여 브라우저에 붙여넣어 주세요. 이메일 인증 링크는 %v분 후에 만료됩니다.",
},
ForgetPasswordMailTextItems: &ForgetPasswordMailTextItems{
Title: "비밀번호 재설정",
SalutationFormat: "안녕하세요 %s님,",
DescriptionAboveBtn: "비밀번호 재설정 요청이 있었습니다. 아래 링크를 클릭하시면 비밀번호를 재설정할 수 있습니다.",
ResetPassword: "비밀번호 재설정",
DescriptionBelowBtnFormat: "비밀번호 재설정을 요청하지 않으셨다면 이 이메일을 무시해주세요. 위 링크를 클릭할 수 없는 경우, 위 URL을 복사하여 브라우저에 붙여넣어 주세요. 비밀번호 재설정 링크는 %v분 후에 만료됩니다.",
},
}