//
//  KMRightSideEmptyVC.swift
//  PDF Master
//
//  Created by wanjun on 2023/3/24.
//

import Cocoa

class KMRightSideEmptyVC: NSViewController {
    
    @IBOutlet weak var emptyImageView: NSImageView!
    @IBOutlet weak var emptyLabel: NSTextField!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do view setup here.
        
        updateUI()
        initLocalization()
    }
    
    // MARK: Private Methods
    
    func updateUI() -> Void {
        emptyLabel.font = NSFont.SFProTextRegular(12)
        emptyLabel.textColor = NSColor(hex: "#94989C")
    }
    
    func initLocalization() {
        emptyLabel.stringValue = NSLocalizedString("Show/Hide Annotation Properties Panel", comment: "")
    }
}