Renames “Sustain Buttons” to “Hold Buttons”

This commit is contained in:
Riley Testut 2019-08-07 14:49:12 -07:00
parent ef57d882b3
commit b63853d7ce
2 changed files with 2 additions and 2 deletions

View File

@ -264,7 +264,7 @@ extension GameViewController
self.sustainButtonsBackgroundView = RSTPlaceholderView(frame: CGRect(x: 0, y: 0, width: vibrancyView.contentView.bounds.width, height: vibrancyView.contentView.bounds.height))
self.sustainButtonsBackgroundView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
self.sustainButtonsBackgroundView.textLabel.text = NSLocalizedString("Select Buttons to Sustain", comment: "")
self.sustainButtonsBackgroundView.textLabel.text = NSLocalizedString("Select Buttons to Hold Down", comment: "")
self.sustainButtonsBackgroundView.textLabel.numberOfLines = 1
self.sustainButtonsBackgroundView.textLabel.minimumScaleFactor = 0.5
self.sustainButtonsBackgroundView.textLabel.adjustsFontSizeToFitWidth = true

View File

@ -162,7 +162,7 @@ private extension PauseViewController
})
self.fastForwardItem = MenuItem(text: NSLocalizedString("Fast Forward", comment: ""), image: #imageLiteral(resourceName: "FastForward"), action: { _ in })
self.sustainButtonsItem = MenuItem(text: NSLocalizedString("Sustain Buttons", comment: ""), image: #imageLiteral(resourceName: "SustainButtons"), action: { _ in })
self.sustainButtonsItem = MenuItem(text: NSLocalizedString("Hold Buttons", comment: ""), image: #imageLiteral(resourceName: "SustainButtons"), action: { _ in })
}
func updateSafeAreaInsets()