-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_strings.dart
More file actions
69 lines (64 loc) · 3.35 KB
/
app_strings.dart
File metadata and controls
69 lines (64 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
abstract final class AppStrings {
// Common
static const next = '다음으로';
static const confirm = '확인';
static const cancel = '취소';
static const done = '완료';
static const yes = '맞아요';
static const no = '아니요';
static const termsOfService = '서비스 이용약관';
static const privacyPolicy = '개인정보 처리방침';
static const termsAgreeSuffix = '에 동의합니다 ';
static const requiredMark = '*';
static const birthDate = '생년월일';
static const maleLabel = '남자 아기';
static const femaleLabel = '여자 아기';
static const genericError = '오류가 발생했습니다.';
// Login
static const appTitle = '내꿈은육퇴';
static const appSubtitle = '우리 아기 성장 기록';
static const kakaoLogin = '카카오로 시작하기';
static const googleLogin = 'Google로 시작하기';
static const appleLogin = 'Apple로 시작하기';
// Welcome
static const welcomeTitle = '환영합니다!';
static const welcomeSubtitle = '시작 방법을 선택해주세요';
static const welcomeFooter = '가족 구성원과 함께 아기의 성장을 기록하고 공유하세요';
static const registerBabyTitle = '우리 아기 등록하기';
static const registerBabyDescription = '새로운 아기의 정보를 등록합니다';
static const inviteCodeTitle = '초대 코드가 있어요';
static const inviteCodeDescription = '가족 초대 코드로 참여합니다';
// Baby Registration
static const babyRegistrationAppBar = '우리 아기 등록';
static const nameLabel = '이름';
static const nameHint = '아기 이름을 입력하세요';
static const genderLabel = '성별';
static const dueDateLabel = '출산 예정일';
// Invite Code
static const inviteCodeAppBar = '초대 코드 입력';
static const inviteCodeHeading = '가족 초대 코드를 입력하세요';
static const inviteCodeSubheading =
'가족 구성원으로부터 받은 초대 코드를 입력하면\n아기 정보를 함께 공유할 수 있어요';
static const inviteCodeFieldLabel = '초대 코드 ';
static const inviteCodeHint = '예: ABC-123-XYZ';
static const inviteCodeHelp = '대시(-)를 포함하여 입력하세요';
static const inviteCodeInfoTitle = '초대 코드는 어디서 받나요?';
static const inviteCodeInfoBody =
'이미 등록된 가족 구성원의 설정 메뉴에서\n\'가족 초대하기\'를 통해 코드를 받을 수 있습니다.';
static const babyNotFoundTitle = '아기를 찾을 수 없어요';
static const babyNotFoundBody =
'입력한 초대 코드와 일치하는 아기가 없습니다.\n코드를 다시 확인해주세요.';
static const babyConfirmTitle = '이 아기가 맞나요?';
// Baby Profile Setup
static const profileSetupHeading = '거의 다 왔어요!';
static const profileSetupSubheading = '마지막으로 정보를 입력해주세요';
static const relationshipLabel = '아기와의 관계';
static const relationshipMom = '엄마';
static const relationshipDad = '아빠';
static const relationshipFamily = '가족';
static const relationshipOther = '기타';
static const nicknameLabel = '닉네임';
static const nicknameHint = '예: 리암엄마';
static const nicknameHelper = '다른 가족 구성원에게 표시될 이름이에요';
static const start = '시작하기';
}