Q: How to change language PDF page indicator?

94 Views Asked by At

I want to change the language of the page indicator, it should be german and not english. If you scroll inside of a pdf file it shows you "1 of 6" that's what i want to change.

Any ideas?

import UIKit
import WebKit


class PDFViewController: UIViewController {
    var pdfName: String?
    @IBOutlet weak var wkWebView: WKWebView!

    override func viewDidLoad() {
        super.viewDidLoad()
        let pdfFilePath = Bundle.main.url(forResource: pdfName!, withExtension: "")
        let urlRequest = URLRequest.init(url: pdfFilePath!)
        wkWebView.load(urlRequest)
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }
}
1

There are 1 best solutions below

0
On BEST ANSWER
Xcode Project -> Info -> Localizations add German 

was the answer! Thanks @Retterdesdialogs