# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # LOCALIZATION NOTE: # Strings here are used to create events and tasks with start and end times # based on email content. # None of the strings are displayed in the user interface. # # You don't have to fill all from.*, until.*, *.prefix and *.suffix patterns. # It's ok to leave some empty. # Please consider declensions and gender if your language has them. # Don't just translate directly. The number of variants doesn't have to be # the same as in en-US. All of 0, 1, 2, etc is allowed in patterns except alphabet. # patterns. You can and should add language specific variants. # # There are two different ways to find a start time text in email: # 1) it matches a from.* pattern and does not have end.prefix or end.suffix next to it # 2) it matches until.* pattern and has start.prefix or start.suffix next to it # Similar inverse logic applies to end times. # These rules enable using prefix and suffix values with only start.* or only until.* # patterns localized for some languages and thus not having to repeat the same # values in both. # # Patterns are partially space-insensitive. # "deadline is" pattern will find both "deadlineis" and "deadline is" # but "deadlineis" won't find "deadline is" or "deadline is". # Therefore you should include all spaces that are valid within a pattern. # LOCALIZATION NOTE (start.prefix): # datetimes with these in front are extracted as start times # can be a list of values, separate variants by | start.prefix = 시작 일: | 시작 일 : | 시작: | 시작 : # LOCALIZATION NOTE (start.suffix): # datetimes followed by these are extracted as start times start.suffix = 부터 | ~ | - | 이후 # LOCALIZATION NOTE (end.prefix): # datetimes followed by these are extracted as end times end.prefix = 끝: | 끝 : | 기한: | 기한 : # LOCALIZATION NOTE (end.suffix): # datetimes followed by these are extracted as end times # can be a list of values, separate variants by | end.suffix = 까지 | 안에 | 사이 # LOCALIZATION NOTE (no.datetime.prefix): # datetimes with these in front won't be used # specify full words here no.datetime.prefix = 지난 주 | 이번 주 | 다음 주 | 그저께 | 그제 | 어제 | 오늘 | 내일 | 모레 | 작년 | 올해 | 내년 | \\ | $ # LOCALIZATION NOTE (no.datetime.suffix): # datetimes follwed by these won't be used no.datetime.suffix = 이전 | 이래 | : | 원 | 달러 | 유로 | 엔 | % # LOCALIZATION NOTE (from.*): # can be a list of values, separate variants by | # LOCALIZATION NOTE (from.today): # must not be empty! from.today = 오늘 | 금일 from.tomorrow = 내일 | 명일 # LOCALIZATION NOTE (until.*): # can be a list of values, separate variants by | until.tomorrow = # LOCALIZATION NOTE (ordinal.date): # %1$S = matches numbers 1-31 and number.x # should not have "%1$S" as this would match any single number in email to a time from.ordinal.date = %1$S 일 | %1$S - # LOCALIZATION NOTE (until.ordinal.date): # %1$S = matches numbers 1-31 and number.x until.ordinal.date = %1$S 일 | %1$S - from.noon = 정오 until.noon = 오전중 # LOCALIZATION NOTE (hour.only): # %1$S = matches numbers 0-23 and number.0-number.23 # should not have "%1$S" as this would match any single number in email to a time from.hour = %1$S 시 | %1$S 시 경 | %1$S 시 정도 | %1$S 시 부터 | %1$S - # LOCALIZATION NOTE (until.hour): # %1$S = matches numbers 0-23 and number.0-number.23 # should also list how to find end of a timeframe until.hour = %1$S 시 | %1$S 시 경 | %1$S 시 정도 | %1$S 시 까지 | %1$S - # LOCALIZATION NOTE (hour.only.am): # %1$S = matches numbers 0-23 and number.0-number.23 from.hour.am = 오전 %1$S 시 | %1$S am | %1$S a.m | am %1$S | a.m %1$S # LOCALIZATION NOTE (until.hour.am): # %1$S = matches numbers 0-23 and number.0-number.23 # should also list how to find end of a timeframe until.hour.am = # LOCALIZATION NOTE (hour.only.pm): # %1$S = matches numbers 0-23 and number.0-number.23 from.hour.pm = 오후 %1$S 시 | %1$S pm | %1$S p.m | pm %1$S | p.m %1$S # LOCALIZATION NOTE (until.hour.pm): # %1$S = matches numbers 0-23 and number.0-number.23 # should also list how to find end of a timeframe until.hour.pm = # LOCALIZATION NOTE (from.half.hour.before): # denotes times 30 minutes before next full hour from.half.hour.before = %1$S 시 30 분 전 # LOCALIZATION NOTE (until.half.hour.before): # denotes times 30 minutes before next full hour until.half.hour.before = # LOCALIZATION NOTE (from.half.hour.after): # denotes times 30 minutes after last full hour from.half.hour.after = %1$S 시 30 분 후 # LOCALIZATION NOTE (until.half.hour.after): # denotes times 30 minutes after last full hour until.half.hour.after = # LOCALIZATION NOTE (hour.minutes): # %1$S = matches numbers 0-23 # %2$S = matches numbers 0-59 from.hour.minutes = %1$S 시 %2$S 분 | %1$S : %2$S # LOCALIZATION NOTE (until.hour.minutes): # %1$S = matches numbers 0-23 # %2$S = matches numbers 0-59 until.hour.minutes = - %1$S 시 %2$S 분 | - %1$S : %2$S # LOCALIZATION NOTE (hour.minutes.am): # %1$S = matches numbers 0-23 # %2$S = matches numbers 0-59 from.hour.minutes.am = 오전 %1$S시 %2$S 분 | 아침 %1$S시 %2$S 분 | %1$S:%2$S am | %1$S:%2$S a.m | am %1$S:%2$S | a.m %1$S:%2$S # LOCALIZATION NOTE (until.hour.minutes.am): # %1$S = matches numbers 0-23 # %2$S = matches numbers 0-59 until.hour.minutes.am = # LOCALIZATION NOTE (hour.minutes.pm): # %1$S = matches numbers 0-23 # %2$S = matches numbers 0-59 from.hour.minutes.pm = 오후 %1$S시 %2$S 분 | 점심 %1$S시 %2$S 분 | %1$S:%2$S pm | %1$S:%2$S p.m | pm %1$S:%2$S | p.m %1$S:%2$S # LOCALIZATION NOTE (until.hour.minutes.pm): # %1$S = matches numbers 0-23 # %2$S = matches numbers 0-59 until.hour.minutes.pm = # LOCALIZATION NOTE (monthname.day): # %1$S = matches numbers 1-31 and number.x # %2$S = matches monthname from.monthname.day = %2$S %1$S일 # LOCALIZATION NOTE (until.monthname.day): # %1$S = matches numbers 1-31 # %2$S = matches monthname until.monthname.day = # LOCALIZATION NOTE (month.day): # %1$S = matches numbers 1-31 # %2$S = matches numbers 1-12 from.month.day = %2$S/%1$S # LOCALIZATION NOTE (until.month.day): # %1$S = matches numbers 1-31 and number.x # %2$S = matches numbers 1-12 until.month.day = # LOCALIZATION NOTE (year.month.day): # %1$S = matches numbers 1-31 # %2$S = matches numbers 1-12 # %3$S = matches 2/4 numbers from.year.month.day = %3$S 년 %2$S 월 %1$S 일 | %3$S/%2$S/%1$S | %3$S-%2$S-%1$S # LOCALIZATION NOTE (until.year.month.day): # %1$S = matches numbers 1-31 # %2$S = matches numbers 1-12 # %3$S = matches 2/4 numbers until.year.month.day = # LOCALIZATION NOTE (year.monthname.day): # %1$S = matches numbers 1-31 # %2$S = matches monthname # %3$S = matches 2/4 numbers from.year.monthname.day = %3$S 년 %2$S %1$S 일 # LOCALIZATION NOTE (until.year.monthname.day): # %1$S = matches numbers 1-31 # %2$S = matches monthname # %3$S = matches 2/4 numbers until.year.monthname.day = # LOCALIZATION NOTE (duration.*): # can be a list of values, separate variants by | # LOCALIZATION NOTE (duration.minutes): # %1$S = matches 1/2 numbers and number.0 - and number.31 duration.minutes = %1$S 분 동안 | %1$S 분간 # LOCALIZATION NOTE (duration.hours): # %1$S = matches 1/2 numbers and number.0 - and number.31 duration.hours = %1$S 시간 동안 | %1$S 시간 # LOCALIZATION NOTE (duration.days): # %1$S = matches 1/2 numbers and number.0 - and number.31 duration.days = %1$S 일간 # LOCALIZATION NOTE (month.*): # can be a list of values, separate variants by | month.1 = 1월 | 일월 | 정월 month.2 = 2월 | 이월 month.3 = 3월 | 삼월 month.4 = 4월 | 사월 month.5 = 5월 | 오월 month.6 = 6월 | 유월 month.7 = 7월 | 칠월 month.8 = 8월 | 팔월 month.9 = 9월 | 구월 month.10 = 10월 | 시월 month.11 = 11월 | 십일월 | 동짓달 month.12 = 12월 | 십이월 | 섣달 # LOCALIZATION NOTE (weekday.*): # used to derive start date based on weekdays mentioned # can be a list of values, separate variants by | # LOCALIZATION NOTE (weekday.0): # Regardless of what the first day of the week is in your country, 0 is Sunday here. from.weekday.0 = (일 | 일요일 from.weekday.1 = (월 | 월요일 from.weekday.2 = (화 | 화요일 from.weekday.3 = (수 | 수요일 from.weekday.4 = (목 | 목요일 from.weekday.5 = (금 | 금요일 from.weekday.6 = (토 | 토요일 # LOCALIZATION NOTE (until.weekday.*): # used to derive end date based on weekdays mentioned # can be a list of values, separate variants by | # LOCALIZATION NOTE (until.weekday.0): # Regardless of what the first day of the week is in your country, 0 is Sunday here. until.weekday.0 = until.weekday.1 = 주초 until.weekday.2 = until.weekday.3 = until.weekday.4 = until.weekday.5 = until.weekday.6 = 주말 # LOCALIZATION NOTE (number.*): # used within other patterns to understand dates where day of month isn't written with digits # can be a list of values, separate variants by | number.0 = 영 number.1 = 하루 | 초하루 number.2 = 이틀 | 초이틀 number.3 = 사흘 | 초사흘 number.4 = 나흘 | 초나흘 number.5 = 닷새 | 초닷새 number.6 = 엿새 | 초엿새 number.7 = 이레 | 초이레 number.8 = 여드레 | 초여드레 number.9 = 아흐레 | 초아흐레 number.10 = 열흘 | 초열흘 number.11 = 열하루 number.12 = 열이틀 number.13 = 열사흘 number.14 = 열나흘 number.15 = 열닷새 | 보름 number.16 = 열엿새 number.17 = 열이레 number.18 = 열여드레 number.19 = 열아흐레 number.20 = 스무날 number.21 = 스무하루 number.22 = 스무이틀 number.23 = 스무사흘 number.24 = 스무나흘 number.25 = 스무닷새 number.26 = 스무엿새 number.27 = 스무이레 number.28 = 스무여드레 number.29 = 스무아흐레 number.30 = 서른날 | 그믐 number.31 = # LOCALIZATION NOTE (alphabet): # list all lower and uppercase letters if your language has an alphabet # otherwise leave it empty alphabet =