KMURLConfigManager.swift 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // KMURLConfigManager.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by Niehaoyu on 2024/8/12.
  6. //
  7. import Foundation
  8. let APPMain_Link = NSLocalizedString("https://www.pdfreaderpro.com", comment: "")
  9. //跳转Store界面
  10. let Store_Link = NSLocalizedString("https://www.pdfreaderpro.com/store", comment: "")
  11. //PDF to office pack
  12. let PDFToOfficePacket_Link = NSLocalizedString("https://www.pdfreaderpro.com/store/upgrade?utm_source=appdmg&utm_medium=toptbr&utm_campaign=pdftooffice", comment: "")
  13. //跨平台
  14. let CrossPlatform_Link = NSLocalizedString("https://www.pdfreaderpro.com/store/pdf-pro-permanent-cross-platform-package?utm_source=appdmg&utm_medium=toptbr&utm_campaign=crossplatform", comment: "")
  15. //AI包
  16. let AIProduct_Link = NSLocalizedString("https://www.pdfreaderpro.com/store/aitools?utm_source=appdmg&utm_medium=allapp&utm_campaign=aitool", comment: "")
  17. //教育折扣
  18. let Store_Edu_Link = NSLocalizedString("https://www.pdfreaderpro.com/store?mode=edu&utm_source=appdmg&utm_medium=toptbr&utm_campaign=edu", comment: "")
  19. @objc extension Swift_oc_Tool {
  20. static let Store_Link_OC = Store_Link
  21. static let PDFToOfficePacket_Link_OC = PDFToOfficePacket_Link
  22. static let CrossPlatform_Link_OC = CrossPlatform_Link
  23. static let AIProduct_Link_OC = AIProduct_Link
  24. static let Store_Edu_Link_OC = Store_Edu_Link
  25. }