Files
eqn.ios/Sources/Earthquake Network/Controllers/InApp/SubscriptionsDescriptionTableViewCell.swift
T

29 lines
708 B
Swift

//
// SubscriptionsDescriptionTableViewCell.swift
// Earthquake Network
//
// Created by Andrea Busi on 05/04/21.
// Copyright © 2021 Earthquake Network. All rights reserved.
//
import UIKit
class SubscriptionsDescriptionTableViewCell: EQNBaseTableViewCell {
@IBOutlet private weak var headerLabel: UILabel!
@IBOutlet private weak var descriptionLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
localizeUI()
}
// MARK: - Private
private func localizeUI() {
headerLabel.text = NSLocalizedString("inapp_list", comment: "")
descriptionLabel.text = NSLocalizedString("inapp_description", comment: "")
}
}