diff --git a/Classes/Editor/GIFMaker/GifMakerView.swift b/Classes/Editor/GIFMaker/GifMakerView.swift index 595420a83..ff23c36ff 100644 --- a/Classes/Editor/GIFMaker/GifMakerView.swift +++ b/Classes/Editor/GIFMaker/GifMakerView.swift @@ -182,7 +182,7 @@ final class GifMakerView: UIView { revertButton.contentHorizontalAlignment = .center revertButton.backgroundColor = Constants.revertBackgroundColor - revertButton.setTitle("Revert", for: .normal) + revertButton.setTitle(NSLocalizedString("GIFRevert", comment:"Revert button title in the GIF menu"), for: .normal) revertButton.setTitleColor(Constants.revertFontColor, for: .normal) revertButton.titleLabel?.font = Constants.font revertButton.contentEdgeInsets = UIEdgeInsets(top: 6, left: 16, bottom: 6, right: 16) diff --git a/KanvasCameraExample/KanvasCameraExample/en.lproj/Localizable.strings b/KanvasCameraExample/KanvasCameraExample/en.lproj/Localizable.strings index 5d0a66c1f..e73002b12 100644 --- a/KanvasCameraExample/KanvasCameraExample/en.lproj/Localizable.strings +++ b/KanvasCameraExample/KanvasCameraExample/en.lproj/Localizable.strings @@ -34,6 +34,9 @@ /* Reverse playback mode */ "GIFReverseLoop" = "Reverse"; +/* Revert button title in the GIF menu */ +"GIFRevert" = "Revert"; + /* Got it */ "Got it" = "Got it";