countDownTimerLabel中单词“分钟”和“秒”的本地化

时间:2019-06-29 23:31:48

标签: swift timer localization countdowntimer

我几乎将所有标签和按钮都本地化了。但是,当我对timerLabel进行本地化时,单词“ min”和“ sec”不会翻译成其他语言。这是计时器功能。

enter image description here

为了本地化countDownLabel,我在下面使用了这种本地化方法。

func setUpTranslation() {

countDownLabel.text = NSLocalizedString("CountDown", comment: "")

}

我试图像下面这样在Localizable.strings(Spanish)中为countDownLabel设置“ CountDown”键。但是他们没有用。

“ CountDown” =“(%d)min(%d)seg”

“ CountDown” =“(分钟)分钟(秒)段”

“ CountDown” =“%dmin%dseg”

“ CountDown” =“ \(%d)min \(%d)seg”

您能告诉我是否需要添加其他符号来成功翻译这些单词?

非常感谢您。

0 个答案:

没有答案