Skip to content

Commit 7bbe49b

Browse files
committed
style: 문자열 키 수정
1 parent 963d4ba commit 7bbe49b

2 files changed

Lines changed: 25 additions & 25 deletions

File tree

DevLog/Presentation/Enum/TodoCategory.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ enum TodoCategory: String, Identifiable, CaseIterable, Codable {
3434

3535
var localizedName: String {
3636
switch self {
37-
case .issue: return NSLocalizedString("task_kind_issue", comment: "Task kind: Issue")
38-
case .feature: return NSLocalizedString("task_kind_feature", comment: "Task kind: Feature")
39-
case .improvement: return NSLocalizedString("task_kind_improvement", comment: "Task kind: Improvement")
40-
case .review: return NSLocalizedString("task_kind_review", comment: "Task kind: Review")
41-
case .test: return NSLocalizedString("task_kind_test", comment: "Task kind: Test")
42-
case .doc: return NSLocalizedString("task_kind_doc", comment: "Task kind: Documentation")
43-
case .research: return NSLocalizedString("task_kind_research", comment: "Task kind: Research")
44-
case .etc: return NSLocalizedString("task_kind_etc", comment: "Task kind: Etc")
37+
case .issue: return NSLocalizedString("todo_category_issue", comment: "Todo category: Issue")
38+
case .feature: return NSLocalizedString("todo_category_feature", comment: "Todo category: Feature")
39+
case .improvement: return NSLocalizedString("todo_category_improvement", comment: "Todo category: Improvement")
40+
case .review: return NSLocalizedString("todo_category_review", comment: "Todo category: Review")
41+
case .test: return NSLocalizedString("todo_category_test", comment: "Todo category: Test")
42+
case .doc: return NSLocalizedString("todo_category_doc", comment: "Todo category: Documentation")
43+
case .research: return NSLocalizedString("todo_category_research", comment: "Todo category: Research")
44+
case .etc: return NSLocalizedString("todo_category_etc", comment: "Todo category: Etc")
4545
}
4646
}
4747

DevLog/Resource/Localizable.xcstrings

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@
155155
}
156156
}
157157
},
158-
"task_kind_doc" : {
159-
"comment" : "Task kind: Documentation",
158+
"todo_category_doc" : {
159+
"comment" : "Todo category: Documentation",
160160
"localizations" : {
161161
"ko" : {
162162
"stringUnit" : {
@@ -166,8 +166,8 @@
166166
}
167167
}
168168
},
169-
"task_kind_etc" : {
170-
"comment" : "Task kind: Etc",
169+
"todo_category_etc" : {
170+
"comment" : "Todo category: Etc",
171171
"localizations" : {
172172
"ko" : {
173173
"stringUnit" : {
@@ -177,8 +177,8 @@
177177
}
178178
}
179179
},
180-
"task_kind_feature" : {
181-
"comment" : "Task kind: Feature",
180+
"todo_category_feature" : {
181+
"comment" : "Todo category: Feature",
182182
"localizations" : {
183183
"ko" : {
184184
"stringUnit" : {
@@ -188,8 +188,8 @@
188188
}
189189
}
190190
},
191-
"task_kind_improvement" : {
192-
"comment" : "Task kind: Improvement",
191+
"todo_category_improvement" : {
192+
"comment" : "Todo category: Improvement",
193193
"localizations" : {
194194
"ko" : {
195195
"stringUnit" : {
@@ -199,8 +199,8 @@
199199
}
200200
}
201201
},
202-
"task_kind_issue" : {
203-
"comment" : "Task kind: Issue",
202+
"todo_category_issue" : {
203+
"comment" : "Todo category: Issue",
204204
"localizations" : {
205205
"ko" : {
206206
"stringUnit" : {
@@ -210,8 +210,8 @@
210210
}
211211
}
212212
},
213-
"task_kind_research" : {
214-
"comment" : "Task kind: Research",
213+
"todo_category_research" : {
214+
"comment" : "Todo category: Research",
215215
"localizations" : {
216216
"ko" : {
217217
"stringUnit" : {
@@ -221,8 +221,8 @@
221221
}
222222
}
223223
},
224-
"task_kind_review" : {
225-
"comment" : "Task kind: Review",
224+
"todo_category_review" : {
225+
"comment" : "Todo category: Review",
226226
"localizations" : {
227227
"ko" : {
228228
"stringUnit" : {
@@ -232,8 +232,8 @@
232232
}
233233
}
234234
},
235-
"task_kind_test" : {
236-
"comment" : "Task kind: Test",
235+
"todo_category_test" : {
236+
"comment" : "Todo category: Test",
237237
"localizations" : {
238238
"ko" : {
239239
"stringUnit" : {
@@ -504,4 +504,4 @@
504504
}
505505
},
506506
"version" : "1.0"
507-
}
507+
}

0 commit comments

Comments
 (0)