Skip to content

Commit

Permalink
[ADD] string catalog의 키 값들에 접근할 수 있도록 enum으로 구현 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
lenamin committed Jul 10, 2024
1 parent 6482ea4 commit d48a764
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Tars/Tars/Global/Localization/LocalizableKeys.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//
// localized.swift
// Tars
//
// Created by Seik Oh on 06/11/2022.
//

import Foundation

enum LocalizableKeys: String {
case sun, moon, mercury, venus, mars, jupiter, saturn, uranus, neptune
case airPodsInstructionstring, onboardingInstructionstring, onboardingInstructionTitle
case collectionViewTitle, collectionViewContent
case exploreUniverseNavigationTitle, searchingNavigationTitle
case directionUp, directionUpRight, directionRight, directionDownRight, directionDown, directionDownLeft, directionLeft, directionUpLeft
case image
case chapterOneHint, chapterTwoHint, chapterThreeHint
case sunChapterOneTitle, sunChapterOneContent, sunChapterTwoTitle, sunChapterTwoContent, sunChapterThreeTitle, sunChapterThreeContent
case moonChapterOneTitle, moonChapterOneContent, moonChapterTwoTitle, moonChapterTwoContent, moonChapterThreeTitle, moonChapterThreeContent
case mercuryChapterOneTitle, mercuryChapterOneContent, mercuryChapterTwoTitle, mercuryChapterTwoContent, mercuryChapterThreeTitle, mercuryChapterThreeContent
case venusChapterOneTitle, venusChapterOneContent, venusChapterTwoTitle, venusChapterTwoContent, venusChapterThreeTitle, venusChapterThreeContent
case marsChapterOneTitle, marsChapterOneContent, marsChapterTwoTitle, marsChapterTwoContent, marsChapterThreeTitle, marsChapterThreeContent
case jupiterChapterOneTitle, jupiterChapterOneContent, jupiterChapterTwoTitle, jupiterChapterTwoContent, jupiterChapterThreeTitle, jupiterChapterThreeContent
case saturnChapterOneTitle, saturnChapterOneContent, saturnChapterTwoTitle, saturnChapterTwoContent, saturnChapterThreeTitle, saturnChapterThreeContent
case uranusChapterOneTitle, uranusChapterOneContent, uranusChapterTwoTitle, uranusChapterTwoContent, uranusChapterThreeTitle, uranusChapterThreeContent
case neptuneChapterOneTitle, neptuneChapterOneContent, neptuneChapterTwoTitle, neptuneChapterTwoContent, neptuneChapterThreeTitle, neptuneChapterThreeContent

}

0 comments on commit d48a764

Please sign in to comment.