Despite all the info available on the web, I am still struggling to translate my hard-coded strings in Swift (target language: French) - How do I go about translating, for example, the title Week A in the following code:
let titleButton: UIButton = UIButton(frame: CGRectMake(0, 0, 100, 32))
titleButton.setTitle("Week A", forState: UIControlState.Normal)
titleButton.titleLabel?.font = UIFont(name: "CollegiateHeavyOutline", size: 25.0)
or the placeholder text in the following code:
timeTextField.placeholder = "Type in start time"
A step by step answer will be much much appreciated. Thanks in advance.