├── Paddle.framework ├── Versions │ ├── Current │ └── A │ │ ├── Paddle │ │ ├── Resources │ │ ├── PADWebPopWindowController.nib │ │ ├── Base.lproj │ │ │ ├── PADActivateWindow.nib │ │ │ ├── PADCheckoutWindow.nib │ │ │ ├── PADProductWindow.nib │ │ │ └── PADProductNoTrialWindow.nib │ │ │ │ ├── keyedobjects.nib │ │ │ │ └── keyedobjects-101300.nib │ │ ├── nl.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ └── PADProductWindow.strings │ │ ├── zh-Hans.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ ├── PADProductWindow.strings │ │ │ └── Localizable.strings │ │ ├── zh-TW.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ ├── PADProductWindow.strings │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ └── PADProductWindow.strings │ │ ├── en.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ ├── PADProductWindow.strings │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ └── PADProductWindow.strings │ │ ├── de.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ └── PADProductWindow.strings │ │ ├── es.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ └── PADProductWindow.strings │ │ ├── pl.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ └── PADProductWindow.strings │ │ ├── pt.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ └── PADProductWindow.strings │ │ ├── ru.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ └── PADProductWindow.strings │ │ ├── it.lproj │ │ │ ├── PADCheckoutWindow.strings │ │ │ ├── PADActivateWindow.strings │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ └── PADProductWindow.strings │ │ └── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ └── Headers │ │ ├── PADAlert.h │ │ ├── PADDisplayConfiguration.h │ │ ├── PADPriceOverride.h │ │ └── PADCheckoutOptions.h ├── Headers ├── Modules ├── Paddle └── Resources ├── Paddle.xcframework ├── macos-arm64_x86_64 │ └── Paddle.framework │ │ ├── Versions │ │ ├── Current │ │ └── A │ │ │ ├── Paddle │ │ │ ├── Resources │ │ │ ├── PADWebPopWindowController.nib │ │ │ ├── Base.lproj │ │ │ │ ├── PADActivateWindow.nib │ │ │ │ ├── PADCheckoutWindow.nib │ │ │ │ ├── PADProductWindow.nib │ │ │ │ └── PADProductNoTrialWindow.nib │ │ │ │ │ ├── keyedobjects.nib │ │ │ │ │ └── keyedobjects-101300.nib │ │ │ ├── nl.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ └── PADProductWindow.strings │ │ │ ├── zh-TW.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ └── PADProductWindow.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ ├── PADProductWindow.strings │ │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ └── PADProductWindow.strings │ │ │ ├── en.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ ├── PADProductWindow.strings │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ └── PADProductWindow.strings │ │ │ ├── pl.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ └── PADProductWindow.strings │ │ │ ├── de.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ └── PADProductWindow.strings │ │ │ ├── es.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ └── PADProductWindow.strings │ │ │ ├── pt.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ └── PADProductWindow.strings │ │ │ ├── ru.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ └── PADProductWindow.strings │ │ │ ├── it.lproj │ │ │ │ ├── PADCheckoutWindow.strings │ │ │ │ ├── PADActivateWindow.strings │ │ │ │ ├── PADProductNoTrialWindow.strings │ │ │ │ └── PADProductWindow.strings │ │ │ └── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ └── Headers │ │ │ ├── PADAlert.h │ │ │ ├── PADDisplayConfiguration.h │ │ │ ├── PADPriceOverride.h │ │ │ └── PADCheckoutOptions.h │ │ ├── Headers │ │ ├── Modules │ │ ├── Paddle │ │ └── Resources └── Info.plist ├── README.md ├── Package.swift ├── LICENSE └── PaddleV4.podspec /Paddle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Paddle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Paddle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Paddle.framework/Paddle: -------------------------------------------------------------------------------- 1 | Versions/Current/Paddle -------------------------------------------------------------------------------- /Paddle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Paddle: -------------------------------------------------------------------------------- 1 | Versions/Current/Paddle -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Paddle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.framework/Versions/A/Paddle -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/PADWebPopWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.framework/Versions/A/Resources/PADWebPopWindowController.nib -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/Base.lproj/PADActivateWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.framework/Versions/A/Resources/Base.lproj/PADActivateWindow.nib -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/Base.lproj/PADCheckoutWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.framework/Versions/A/Resources/Base.lproj/PADCheckoutWindow.nib -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/Base.lproj/PADProductWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductWindow.nib -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Paddle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Paddle -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib/keyedobjects-101300.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib/keyedobjects-101300.nib -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/PADWebPopWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/PADWebPopWindowController.nib -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Base.lproj/PADActivateWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Base.lproj/PADActivateWindow.nib -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Base.lproj/PADCheckoutWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Base.lproj/PADCheckoutWindow.nib -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductWindow.nib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Paddle Mac SDK 2 | 3 | This is the official Mac SDK V4 for [Paddle](https://www.paddle.com), documentation is available [here](https://developer.paddle.com/reference/sdks/mac/setup). 4 | 5 | To report Issues / Bugs Please contact Paddle Support by emailing sellers@paddle.com 6 | 7 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib/keyedobjects-101300.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddleHQ/Mac-Framework-V4/HEAD/Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib/keyedobjects-101300.nib -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Paddle { 2 | header "Paddle.h" 3 | header "PADProduct.h" 4 | header "PADError.h" 5 | header "PADAlert.h" 6 | header "PADCheckoutOptions.h" 7 | header "PADProductConfiguration.h" 8 | header "PADDisplayConfiguration.h" 9 | header "PADPriceOverride.h" 10 | export * 11 | } 12 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Paddle { 2 | header "Paddle.h" 3 | header "PADProduct.h" 4 | header "PADError.h" 5 | header "PADAlert.h" 6 | header "PADCheckoutOptions.h" 7 | header "PADProductConfiguration.h" 8 | header "PADDisplayConfiguration.h" 9 | header "PADPriceOverride.h" 10 | export * 11 | } 12 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version:5.3 2 | import PackageDescription 3 | 4 | let package = Package( 5 | name: "Paddle", 6 | platforms: [ 7 | .macOS(.v10_13) 8 | ], 9 | products: [ 10 | .library( 11 | name: "Paddle", 12 | targets: ["Paddle"]) 13 | ], 14 | dependencies: [], 15 | targets: [ 16 | .binaryTarget( 17 | name: "Paddle", 18 | path: "Paddle.xcframework") 19 | ] 20 | ) 21 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/nl.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Annuleren"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Voer licentie in"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Aankoop aan het afronden"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/zh-Hans.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "取消"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "输入许可证"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "完成购买"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/zh-TW.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "取消"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "輸入授權"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "完成購買中"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/ja.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "キャンセルする"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "ライセンスを入力"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "購入を完了しています"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/en.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Cancel"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Enter License"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Completing Purchase"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/fr.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Annuler"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Saisir la licence"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Terminer l'achat"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/de.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Abbrechen"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Lizenz eingeben"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Kauf wird abgeschlossen"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/es.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Cancelar"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Introducir licencia"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Completando compra"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/pl.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Anuluj"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Wprowadź licencję"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Finalizowanie zakupu"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/pt.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Cancelar"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Introduzir licença"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "A Concluir a Compra"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/ru.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Отмена"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Ввод лицензионной информации"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Завершение покупки"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/nl.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Annuleren"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Voer licentie in"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Aankoop aan het afronden"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/zh-TW.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "取消"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "輸入授權"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "完成購買中"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/zh-Hans.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "取消"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "输入许可证"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "完成购买"; 13 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/it.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Annulla"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Inserisci Licenza"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Stiamo completando il tuo acquisto"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/ja.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "キャンセルする"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "ライセンスを入力"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "購入を完了しています"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/en.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Cancel"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Enter License"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Completing Purchase"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/fr.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Annuler"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Saisir la licence"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Terminer l'achat"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/pl.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Anuluj"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Wprowadź licencję"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Finalizowanie zakupu"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/de.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Abbrechen"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Lizenz eingeben"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Kauf wird abgeschlossen"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/es.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Cancelar"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Introducir licencia"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Completando compra"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/pt.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Cancelar"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Introduzir licença"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "A Concluir a Compra"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/ru.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Отмена"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Ввод лицензионной информации"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Завершение покупки"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/it.lproj/PADCheckoutWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSWindow"; title = "Window"; ObjectID = "1"; */ 3 | "1.title" = "Window"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "14"; */ 6 | "14.title" = "Annulla"; 7 | 8 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "15"; */ 9 | "15.title" = "Inserisci Licenza"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Completing Purchase"; ObjectID = "cSe-YQ-ICA"; */ 12 | "cSe-YQ-ICA.title" = "Stiamo completando il tuo acquisto"; 13 | -------------------------------------------------------------------------------- /Paddle.xcframework/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AvailableLibraries 6 | 7 | 8 | BinaryPath 9 | Paddle.framework/Versions/A/Paddle 10 | LibraryIdentifier 11 | macos-arm64_x86_64 12 | LibraryPath 13 | Paddle.framework 14 | SupportedArchitectures 15 | 16 | arm64 17 | x86_64 18 | 19 | SupportedPlatform 20 | macos 21 | 22 | 23 | CFBundlePackageType 24 | XFWK 25 | XCFrameworkFormatVersion 26 | 1.0 27 | 28 | 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Paddle 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/en.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Cancel"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Buy Now"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Activate License"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Email Address"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "License Code"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Activate"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Activating License"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Deactivate License"; 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/nl.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Annuleren"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Nu kopen"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Licentie activeren"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "E-mailadres"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Licentiecode"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Activeren"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Licentie activeren"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Licentie deactiveren"; 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/zh-Hans.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "取消"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "现在购买"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "激活许可证"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "电子邮件地址"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "许可码"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "激活"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "激活许可证"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "停用许可证"; 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/zh-TW.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "取消"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "立即購買"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "啟用授權"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "電子郵件地址"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "授權碼"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "啟用"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "啟用執照中"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "停用執照中"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/en.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Cancel"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Buy Now"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Activate License"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Email Address"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "License Code"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Activate"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Activating License"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Deactivate License"; 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/ja.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "キャンセルする"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "今すぐ購入する"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "ライセンスをアクティベートする"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "メールアドレス"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "ライセンスコード"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "アクティベートする"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "ライセンスを有効化"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "ライセンスを無効化"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/nl.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Annuleren"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Nu kopen"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Licentie activeren"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "E-mailadres"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Licentiecode"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Activeren"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Licentie activeren"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Licentie deactiveren"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/zh-TW.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "取消"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "立即購買"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "啟用授權"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "電子郵件地址"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "授權碼"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "啟用"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "啟用執照中"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "停用執照中"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/zh-Hans.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "取消"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "现在购买"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "激活许可证"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "电子邮件地址"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "许可码"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "激活"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "激活许可证"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "停用许可证"; 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/pl.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Anuluj"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Kup teraz"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Aktywuj licencję"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Adres e-mail"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Kod licencji"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Aktywuj"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Aktywowanie licencji"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Dezaktywuj licencję"; 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/de.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Abbrechen"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Jetzt kaufen"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Lizenz aktivieren"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "E-Mail-Adresse"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Lizenzcode"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Aktivieren"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Lizenz wird aktiviert"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Lizenz deaktivieren"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/ja.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "キャンセルする"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "今すぐ購入する"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "ライセンスをアクティベートする"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "メールアドレス"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "ライセンスコード"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "アクティベートする"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "ライセンスを有効化"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "ライセンスを無効化"; 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/fr.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Annuler"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Acheter maintenant"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Activer la licence"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Adresse e-mail"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Code de licence"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Activer"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Activer la licence"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Désactiver la licence"; 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/it.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Annulla"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Acquista Ora"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Attiva Licenza"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Indirizzo Email"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Codice Licenza"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Attiva"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Stiamo attivando la licenza"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Disattiva la licenza"; 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/pt.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Cancelar"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Adquira já!"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Ativar licença"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Endereço de e-mail"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Código de licença"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Ativar"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "A Activar a Licença"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "A Desactivar a Licença"; 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/es.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 2 | "17.title" = "Cancelar"; 3 | 4 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 5 | "18.title" = "Comprar ahora"; 6 | 7 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 8 | "19.title" = "Activar licencia"; 9 | 10 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 11 | "21.title" = "Dirección de correo electrónico"; 12 | 13 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 14 | "22.title" = "Código de la licencia"; 15 | 16 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 17 | "25.title" = "Activar"; 18 | 19 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 20 | "26.title" = "Test Product"; /* Does not need to be translated */ 21 | 22 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 23 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 24 | 25 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 26 | "lwY-yD-CE9.title" = "Activando licencia"; 27 | 28 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 29 | "pEH-Ih-5sP.title" = "Desactivar licencia"; 30 | 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/ru.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Отмена"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Купить сейчас"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Активировать лицензию"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Адрес электронной почты"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Лицензионный код"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Активировать"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Активация лицензии"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Деактивация лицензии"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/pl.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Anuluj"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Kup teraz"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Aktywuj licencję"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Adres e-mail"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Kod licencji"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Aktywuj"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Aktywowanie licencji"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Dezaktywuj licencję"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/de.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Abbrechen"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Jetzt kaufen"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Lizenz aktivieren"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "E-Mail-Adresse"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Lizenzcode"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Aktivieren"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Lizenz wird aktiviert"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Lizenz deaktivieren"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/it.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Annulla"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Acquista Ora"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Attiva Licenza"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Indirizzo Email"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Codice Licenza"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Attiva"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Stiamo attivando la licenza"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Disattiva la licenza"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/pt.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Cancelar"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Adquira já!"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Ativar licença"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Endereço de e-mail"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Código de licença"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Ativar"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "A Activar a Licença"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "A Desactivar a Licença"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/fr.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Annuler"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Acheter maintenant"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Activer la licence"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Adresse e-mail"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Code de licence"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Activer"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Activer la licence"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Désactiver la licence"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/ru.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 3 | "17.title" = "Отмена"; 4 | 5 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 6 | "18.title" = "Купить сейчас"; 7 | 8 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 9 | "19.title" = "Активировать лицензию"; 10 | 11 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 12 | "21.title" = "Адрес электронной почты"; 13 | 14 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 15 | "22.title" = "Лицензионный код"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 18 | "25.title" = "Активировать"; 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 21 | "26.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 24 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 25 | 26 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 27 | "lwY-yD-CE9.title" = "Активация лицензии"; 28 | 29 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 30 | "pEH-Ih-5sP.title" = "Деактивация лицензии"; 31 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/es.lproj/PADActivateWindow.strings: -------------------------------------------------------------------------------- 1 | /* Class = "NSButtonCell"; title = "Cancel"; ObjectID = "17"; */ 2 | "17.title" = "Cancelar"; 3 | 4 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "18"; */ 5 | "18.title" = "Comprar ahora"; 6 | 7 | /* Class = "NSButtonCell"; title = "Activate License"; ObjectID = "19"; */ 8 | "19.title" = "Activar licencia"; 9 | 10 | /* Class = "NSTextFieldCell"; title = "Email Address"; ObjectID = "21"; */ 11 | "21.title" = "Dirección de correo electrónico"; 12 | 13 | /* Class = "NSTextFieldCell"; title = "License Code"; ObjectID = "22"; */ 14 | "22.title" = "Código de la licencia"; 15 | 16 | /* Class = "NSTextFieldCell"; title = "Activate"; ObjectID = "25"; */ 17 | "25.title" = "Activar"; 18 | 19 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "26"; */ 20 | "26.title" = "Test Product"; /* Does not need to be translated */ 21 | 22 | /* Class = "NSTextFieldCell"; title = "Already purchased a license? Fill in the form below and activate Test Product instantly."; ObjectID = "27"; */ 23 | "27.title" = "Already purchased a license? Fill in the form below and activate Test Product instantly."; /* Does not need to be translated */ 24 | 25 | /* Class = "NSTextFieldCell"; title = "Activating License"; ObjectID = "lwY-yD-CE9"; */ 26 | "lwY-yD-CE9.title" = "Activando licencia"; 27 | 28 | /* Class = "NSButtonCell"; title = "Deactivate License"; ObjectID = "pEH-Ih-5sP"; */ 29 | "pEH-Ih-5sP.title" = "Desactivar licencia"; 30 | 31 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 25A5279m 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Paddle 11 | CFBundleIdentifier 12 | com.paddle.Paddle 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Paddle 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 4.5.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 4.5.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 25A5295e 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 26.0 35 | DTSDKBuild 36 | 25A5295e 37 | DTSDKName 38 | macosx26.0 39 | DTXcode 40 | 2600 41 | DTXcodeBuild 42 | 17A5241o 43 | LSMinimumSystemVersion 44 | 11.5 45 | NSHumanReadableCopyright 46 | Copyright © 2017 Paddle. All rights reserved. 47 | PADMajorMinorVersion 48 | 4.0 49 | 50 | 51 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 25A5279m 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Paddle 11 | CFBundleIdentifier 12 | com.paddle.Paddle 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Paddle 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 4.5.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 4.5.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 25A5295e 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 26.0 35 | DTSDKBuild 36 | 25A5295e 37 | DTSDKName 38 | macosx26.0 39 | DTXcode 40 | 2600 41 | DTXcodeBuild 42 | 17A5241o 43 | LSMinimumSystemVersion 44 | 11.5 45 | NSHumanReadableCopyright 46 | Copyright © 2017 Paddle. All rights reserved. 47 | PADMajorMinorVersion 48 | 4.0 49 | 50 | 51 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/zh-TW.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "現在"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "原為"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "輸入授權"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "立即購買"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "繼續試用"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/zh-Hans.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "现在"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "过去是"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "输入许可证"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "现在购买"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "继续试验"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/ja.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "今すぐ"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "は次でした:"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "ライセンスを入力"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "今すぐ購入する"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "お試しを続ける"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/en.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "NOW"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "WAS"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Enter License"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Buy Now"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Continue Trial"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/it.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "ORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "ERA"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Inserisci Licenza"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Acquista Ora"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Continua Prova"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/nl.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "NU"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "WAS"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Voer licentie in"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Nu kopen"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Doorgaan met proefperiode"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/pl.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "TERAZ"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "BYŁO"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Wprowadź licencję"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Kup teraz"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Kontynuuj okres próbny"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/zh-TW.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "現在"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "原為"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "輸入授權"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "立即購買"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "繼續試用"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/de.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "JETZT"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "VORHER"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Lizenz eingeben"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Jetzt kaufen"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Testzeitraum fortsetzen"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/pt.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "AGORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "CUSTAVA"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Introduzir licença"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Adquira já!"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Continuar avaliação"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/zh-Hans.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "现在"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "过去是"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "输入许可证"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "现在购买"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "继续试验"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/es.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "AHORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "FUE"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Introducir licencia"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Comprar ahora"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Continuar con la prueba"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/fr.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "MAINTENANT"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "ÉTAIT"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Saisir la licence"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Acheter maintenant"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Poursuivre l'essai"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/ja.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "今すぐ"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "は次でした:"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "ライセンスを入力"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "今すぐ購入する"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "お試しを続ける"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/en.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "NOW"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "WAS"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Enter License"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Buy Now"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Continue Trial"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/it.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "ORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "ERA"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Inserisci Licenza"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Acquista Ora"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Continua Prova"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /PaddleV4.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "PaddleV4" 3 | s.version = "4.5.1" 4 | s.summary = "A licensing framework for OS X" 5 | s.description = "Paddle is an easy to use licensing framework for OS X including App Licensing and In App Purchases." 6 | s.homepage = "https://www.paddle.com" 7 | s.license = { 8 | :type => 'MIT', 9 | :text => <<-LICENSE 10 | The MIT License (MIT) 11 | 12 | Copyright (c) 2018 Paddle 13 | 14 | Permission is hereby granted, free of charge, to any person obtaining a copy 15 | of this software and associated documentation files (the "Software"), to deal 16 | in the Software without restriction, including without limitation the rights 17 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 18 | copies of the Software, and to permit persons to whom the Software is 19 | furnished to do so, subject to the following conditions: 20 | 21 | The above copyright notice and this permission notice shall be included in all 22 | copies or substantial portions of the Software. 23 | 24 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 25 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 26 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 27 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 28 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 29 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 30 | SOFTWARE. 31 | LICENSE 32 | } 33 | s.authors = { 34 | 'Louis Harwood' => 'louis@paddle.com' 35 | } 36 | 37 | s.platform = :osx, '10.13' 38 | s.source = { :http => "https://github.com/PaddleHQ/Mac-Framework-V4/archive/v4.5.1.zip" } 39 | s.vendored_framework = 'Mac-Framework-V4-4.5.1/Paddle.framework' 40 | s.requires_arc = false 41 | s.framework = 'WebKit'; 42 | end 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/ru.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "СЕЙЧАС"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "БЫЛ"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Ввод лицензионной информации"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Купить сейчас"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Продолжить использовать пробную версию"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/nl.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "NU"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "WAS"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Voer licentie in"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Nu kopen"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Doorgaan met proefperiode"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/pl.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "TERAZ"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "BYŁO"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Wprowadź licencję"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Kup teraz"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Kontynuuj okres próbny"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/de.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "JETZT"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "VORHER"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Lizenz eingeben"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Jetzt kaufen"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Testzeitraum fortsetzen"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/es.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "AHORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "FUE"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Introducir licencia"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Comprar ahora"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Continuar con la prueba"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/pt.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "AGORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "CUSTAVA"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Introduzir licença"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Adquira já!"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Continuar avaliação"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/fr.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "MAINTENANT"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "ÉTAIT"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Saisir la licence"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Acheter maintenant"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Poursuivre l'essai"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/ru.lproj/PADProductNoTrialWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "25"; */ 3 | "25.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "27"; */ 6 | "27.title" = "СЕЙЧАС"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "28"; */ 9 | "28.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "29"; */ 12 | "29.title" = "$10.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "30"; */ 15 | "30.title" = "БЫЛ"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "31"; */ 18 | "31.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "32"; */ 21 | "32.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "37"; */ 24 | "37.title" = "Ввод лицензионной информации"; 25 | 26 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "38"; */ 27 | "38.title" = "Купить сейчас"; 28 | 29 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "39"; */ 30 | "39.title" = "Продолжить использовать пробную версию"; 31 | 32 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "40"; */ 33 | "40.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 34 | 35 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "41"; */ 36 | "41.title" = "Test Product"; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "42"; */ 39 | "42.title" = "Thank you for trying"; /* Does not need to be translated */ 40 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/zh-Hans.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "现在"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "过去是"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "输入许可证"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "现在购买"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "继续试验"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/zh-TW.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "現在"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "原為"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "輸入授權"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "立即購買"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "繼續試用"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/ja.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "今すぐ"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "は次でした:"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "ライセンスを入力"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "今すぐ購入する"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "お試しを続ける"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/en.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "NOW"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "WAS"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Enter License"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Buy Now"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Continue Trial"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/it.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "ORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "ERA"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Inserisci Licenza"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Acquista Ora"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Continua Prova"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/nl.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "NU"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "WAS"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Voer licentie in"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Nu kopen"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Doorgaan met proefperiode"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/pl.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "TERAZ"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "BYŁO"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Wprowadź licencję"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Kup teraz"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Kontynuuj okres próbny"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/zh-TW.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "現在"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "原為"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "輸入授權"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "立即購買"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "繼續試用"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/de.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "JETZT"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "VORHER"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Lizenz eingeben"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Jetzt kaufen"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Testzeitraum fortsetzen"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/es.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "AHORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "FUE"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Introducir licencia"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Comprar ahora"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Continuar con la prueba"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/pt.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "AGORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "CUSTAVA"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Introduzir licença"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Adquira já!"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Continuar avaliação"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/zh-Hans.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "现在"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "过去是"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "输入许可证"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "现在购买"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "继续试验"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/fr.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "MAINTENANT"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "ÉTAIT"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Saisir la licence"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Acheter maintenant"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Poursuivre l'essai"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/ja.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "今すぐ"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "は次でした:"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "ライセンスを入力"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "今すぐ購入する"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "お試しを続ける"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/en.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "NOW"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "WAS"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Enter License"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Buy Now"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Continue Trial"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/ru.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "СЕЙЧАС"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "БЫЛ"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Ввод лицензионной информации"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Купить сейчас"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Продолжить использовать пробную версию"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/it.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "ORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "ERA"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Inserisci Licenza"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Acquista Ora"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Continua Prova"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/nl.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "NU"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "WAS"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Voer licentie in"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Nu kopen"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Doorgaan met proefperiode"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/pl.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "TERAZ"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "BYŁO"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Wprowadź licencję"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Kup teraz"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Kontynuuj okres próbny"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/pt.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "AGORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "CUSTAVA"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Introduzir licença"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Adquira já!"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Continuar avaliação"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/de.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "JETZT"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "VORHER"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Lizenz eingeben"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Jetzt kaufen"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Testzeitraum fortsetzen"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/es.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "AHORA"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "FUE"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Introducir licencia"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Comprar ahora"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Continuar con la prueba"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/fr.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "MAINTENANT"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "ÉTAIT"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Saisir la licence"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Acheter maintenant"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Poursuivre l'essai"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/ru.lproj/PADProductWindow.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "NSTextFieldCell"; title = "Save 50% today!"; ObjectID = "32"; */ 3 | "32.title" = "Save 50% today!"; /* Does not need to be translated */ 4 | 5 | /* Class = "NSTextFieldCell"; title = "NOW"; ObjectID = "34"; */ 6 | "34.title" = "СЕЙЧАС"; 7 | 8 | /* Class = "NSTextFieldCell"; title = "$10.00"; ObjectID = "35"; */ 9 | "35.title" = "$10.00"; /* Does not need to be translated */ 10 | 11 | /* Class = "NSTextFieldCell"; title = "$11.00"; ObjectID = "36"; */ 12 | "36.title" = "$11.00"; /* Does not need to be translated */ 13 | 14 | /* Class = "NSTextFieldCell"; title = "WAS"; ObjectID = "37"; */ 15 | "37.title" = "БЫЛ"; 16 | 17 | /* Class = "NSTextFieldCell"; title = "By John Smith"; ObjectID = "38"; */ 18 | "38.title" = "By John Smith"; /* Does not need to be translated */ 19 | 20 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "39"; */ 21 | "39.title" = "Test Product"; /* Does not need to be translated */ 22 | 23 | /* Class = "NSTextFieldCell"; title = "28 days"; ObjectID = "41"; */ 24 | "41.title" = "28 days"; /* Does not need to be translated */ 25 | 26 | /* Class = "NSButtonCell"; title = "Enter License"; ObjectID = "44"; */ 27 | "44.title" = "Ввод лицензионной информации"; 28 | 29 | /* Class = "NSButtonCell"; title = "Buy Now"; ObjectID = "45"; */ 30 | "45.title" = "Купить сейчас"; 31 | 32 | /* Class = "NSButtonCell"; title = "Continue Trial"; ObjectID = "46"; */ 33 | "46.title" = "Продолжить использовать пробную версию"; 34 | 35 | /* Class = "NSTextFieldCell"; title = "Thanks for evaluating this version of Test Product."; ObjectID = "47"; */ 36 | "47.title" = "Thanks for evaluating this version of Test Product."; /* Does not need to be translated */ 37 | 38 | /* Class = "NSTextFieldCell"; title = "Test Product"; ObjectID = "48"; */ 39 | "48.title" = "Test Product"; /* Does not need to be translated */ 40 | 41 | /* Class = "NSTextFieldCell"; title = "Thank you for trying"; ObjectID = "49"; */ 42 | "49.title" = "Thank you for trying"; /* Does not need to be translated */ 43 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Headers/PADAlert.h: -------------------------------------------------------------------------------- 1 | // 2 | // PADAlert.h 3 | // Paddle 4 | // 5 | // Created by Paddle on 31/01/2018. 6 | // Introduced in v4.0. 7 | // Copyright © 2018 Paddle. All rights reserved. 8 | // 9 | 10 | #import "PADProduct.h" 11 | #import 12 | 13 | /** 14 | * @discussion The following constants describe the possible types of alerts. 15 | */ 16 | typedef NS_ENUM(NSInteger, PADAlertType) { 17 | /** 18 | * @discussion Specify that an action has successfully been completed. 19 | */ 20 | PADAlertSuccess, 21 | 22 | /** 23 | * @discussion Specify that an action has not successfully been completed. 24 | */ 25 | PADAlertError, 26 | 27 | /** 28 | * @discussion Specify that an action has not been completely successful, or that 29 | * there may be unexpected side-effects. 30 | */ 31 | PADAlertWarning 32 | }; 33 | 34 | /** 35 | * @discussion PADAlert represents a message the SDK would show to the Buyer. These can be suppressed via the Paddle delegate. 36 | */ 37 | @interface PADAlert : NSObject 38 | 39 | /** 40 | * @discussion The type of the alert, which influences the style of the displayed alert. 41 | */ 42 | @property (readonly, assign) PADAlertType alertType; 43 | 44 | /** 45 | * @discussion The main heading text of the alert. 46 | */ 47 | @property (nonnull, readonly, copy) NSString *title; 48 | 49 | /** 50 | * @discussion The body of the alert. 51 | */ 52 | @property (nonnull, readonly, copy) NSString *message; 53 | 54 | /** 55 | * @discussion The product that was relevant when the alert was created. The product is included 56 | * so that it can be passed to UI control methods. 57 | */ 58 | @property (nonnull, readonly, nonatomic) PADProduct *product; 59 | 60 | /** 61 | * @discussion Create a new PADAlert with all properties specified. 62 | */ 63 | - (nullable instancetype)init:(PADAlertType)alertType title:(nonnull NSString *)title message:(nonnull NSString *)message product:(nonnull PADProduct *)product; 64 | 65 | /** 66 | * @brief Display the alert to the user. 67 | * @discussion The alert is only displayed if the delegate either does not respond to willShowPaddleAlert: 68 | * or if the delegate returns YES from willShowPaddleAlert: for this alert. This allows the delegate to 69 | * disable specific alerts. 70 | * @discussion Because the alert is a UI element, this method must be called on the main dispatch queue. 71 | */ 72 | - (void)show; 73 | 74 | @end 75 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Headers/PADAlert.h: -------------------------------------------------------------------------------- 1 | // 2 | // PADAlert.h 3 | // Paddle 4 | // 5 | // Created by Paddle on 31/01/2018. 6 | // Introduced in v4.0. 7 | // Copyright © 2018 Paddle. All rights reserved. 8 | // 9 | 10 | #import "PADProduct.h" 11 | #import 12 | 13 | /** 14 | * @discussion The following constants describe the possible types of alerts. 15 | */ 16 | typedef NS_ENUM(NSInteger, PADAlertType) { 17 | /** 18 | * @discussion Specify that an action has successfully been completed. 19 | */ 20 | PADAlertSuccess, 21 | 22 | /** 23 | * @discussion Specify that an action has not successfully been completed. 24 | */ 25 | PADAlertError, 26 | 27 | /** 28 | * @discussion Specify that an action has not been completely successful, or that 29 | * there may be unexpected side-effects. 30 | */ 31 | PADAlertWarning 32 | }; 33 | 34 | /** 35 | * @discussion PADAlert represents a message the SDK would show to the Buyer. These can be suppressed via the Paddle delegate. 36 | */ 37 | @interface PADAlert : NSObject 38 | 39 | /** 40 | * @discussion The type of the alert, which influences the style of the displayed alert. 41 | */ 42 | @property (readonly, assign) PADAlertType alertType; 43 | 44 | /** 45 | * @discussion The main heading text of the alert. 46 | */ 47 | @property (nonnull, readonly, copy) NSString *title; 48 | 49 | /** 50 | * @discussion The body of the alert. 51 | */ 52 | @property (nonnull, readonly, copy) NSString *message; 53 | 54 | /** 55 | * @discussion The product that was relevant when the alert was created. The product is included 56 | * so that it can be passed to UI control methods. 57 | */ 58 | @property (nonnull, readonly, nonatomic) PADProduct *product; 59 | 60 | /** 61 | * @discussion Create a new PADAlert with all properties specified. 62 | */ 63 | - (nullable instancetype)init:(PADAlertType)alertType title:(nonnull NSString *)title message:(nonnull NSString *)message product:(nonnull PADProduct *)product; 64 | 65 | /** 66 | * @brief Display the alert to the user. 67 | * @discussion The alert is only displayed if the delegate either does not respond to willShowPaddleAlert: 68 | * or if the delegate returns YES from willShowPaddleAlert: for this alert. This allows the delegate to 69 | * disable specific alerts. 70 | * @discussion Because the alert is a UI element, this method must be called on the main dispatch queue. 71 | */ 72 | - (void)show; 73 | 74 | @end 75 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Headers/PADDisplayConfiguration.h: -------------------------------------------------------------------------------- 1 | // 2 | // PADDisplayConfiguration.h 3 | // Paddle 4 | // 5 | // Created by Paddle on 09/10/2017. 6 | // Introduced in v4.0. 7 | // Copyright © 2018 Paddle. All rights reserved. 8 | // 9 | 10 | #import 11 | #import 12 | 13 | /** 14 | * @discussion The following constants describe the possible ways in which Paddle UI 15 | * elements may be displayed. 16 | */ 17 | typedef NS_ENUM(NSInteger, PADDisplayType) { 18 | /** 19 | * @discussion Display the dialog as a window. 20 | */ 21 | PADDisplayTypeWindow, 22 | 23 | /** 24 | * @discussion Display the dialog as a sheet. 25 | */ 26 | PADDisplayTypeSheet, 27 | 28 | /** 29 | * @discussion Display the dialog as an alert. 30 | */ 31 | PADDisplayTypeAlert, 32 | 33 | /** 34 | * @discussion Display the dialog using a custom method. 35 | */ 36 | PADDisplayTypeCustom, 37 | 38 | /** 39 | * @discussion Display the dialog in an external browser. 40 | */ 41 | PADDisplayTypeExternalBrowser 42 | }; 43 | 44 | /** 45 | * @discussion PADDisplayConfiguration is used to specify how a Paddle dialog should be displayed 46 | */ 47 | @interface PADDisplayConfiguration : NSObject 48 | 49 | /** 50 | * @discussion Indicate how the Paddle UI element should be displayed. 51 | */ 52 | @property (readonly) PADDisplayType displayType; 53 | 54 | /** 55 | * @brief Specifies which window the sheet should be attached to. 56 | * @discussion The parent window is only required if the display type is PADDisplayTypeSheet. 57 | */ 58 | @property (nullable, assign, readonly) NSWindow *parentWindow; 59 | 60 | /** 61 | * @brief Hide buttons on dialogs that navigate to other dialogs. By default this option 62 | * is disabled. 63 | */ 64 | @property (readonly) BOOL hideNavigationButtons; 65 | 66 | /** 67 | * @discussion Initialize the display configuration with type and optional parent window. 68 | */ 69 | - (nullable instancetype)initWithDisplayType:(PADDisplayType)displayType 70 | hideNavigationButtons:(BOOL)hideNavigationButtons 71 | parentWindow:(NSWindow *_Nullable)parentWindow; 72 | 73 | /** 74 | * @discussion Initialize a new display configuration with type and optional parent window. 75 | */ 76 | + (nullable instancetype)configuration:(PADDisplayType)displayType 77 | hideNavigationButtons:(BOOL)hideNavigationButtons 78 | parentWindow:(NSWindow *_Nullable)parentWindow; 79 | 80 | /** 81 | * @discussion Initialize a new display configuration with the custom display type. The other 82 | * options are not used as this display type requires you to show the dialog with custom UI elements. 83 | */ 84 | + (nullable instancetype)displayCustom; 85 | 86 | @end 87 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Headers/PADDisplayConfiguration.h: -------------------------------------------------------------------------------- 1 | // 2 | // PADDisplayConfiguration.h 3 | // Paddle 4 | // 5 | // Created by Paddle on 09/10/2017. 6 | // Introduced in v4.0. 7 | // Copyright © 2018 Paddle. All rights reserved. 8 | // 9 | 10 | #import 11 | #import 12 | 13 | /** 14 | * @discussion The following constants describe the possible ways in which Paddle UI 15 | * elements may be displayed. 16 | */ 17 | typedef NS_ENUM(NSInteger, PADDisplayType) { 18 | /** 19 | * @discussion Display the dialog as a window. 20 | */ 21 | PADDisplayTypeWindow, 22 | 23 | /** 24 | * @discussion Display the dialog as a sheet. 25 | */ 26 | PADDisplayTypeSheet, 27 | 28 | /** 29 | * @discussion Display the dialog as an alert. 30 | */ 31 | PADDisplayTypeAlert, 32 | 33 | /** 34 | * @discussion Display the dialog using a custom method. 35 | */ 36 | PADDisplayTypeCustom, 37 | 38 | /** 39 | * @discussion Display the dialog in an external browser. 40 | */ 41 | PADDisplayTypeExternalBrowser 42 | }; 43 | 44 | /** 45 | * @discussion PADDisplayConfiguration is used to specify how a Paddle dialog should be displayed 46 | */ 47 | @interface PADDisplayConfiguration : NSObject 48 | 49 | /** 50 | * @discussion Indicate how the Paddle UI element should be displayed. 51 | */ 52 | @property (readonly) PADDisplayType displayType; 53 | 54 | /** 55 | * @brief Specifies which window the sheet should be attached to. 56 | * @discussion The parent window is only required if the display type is PADDisplayTypeSheet. 57 | */ 58 | @property (nullable, assign, readonly) NSWindow *parentWindow; 59 | 60 | /** 61 | * @brief Hide buttons on dialogs that navigate to other dialogs. By default this option 62 | * is disabled. 63 | */ 64 | @property (readonly) BOOL hideNavigationButtons; 65 | 66 | /** 67 | * @discussion Initialize the display configuration with type and optional parent window. 68 | */ 69 | - (nullable instancetype)initWithDisplayType:(PADDisplayType)displayType 70 | hideNavigationButtons:(BOOL)hideNavigationButtons 71 | parentWindow:(NSWindow *_Nullable)parentWindow; 72 | 73 | /** 74 | * @discussion Initialize a new display configuration with type and optional parent window. 75 | */ 76 | + (nullable instancetype)configuration:(PADDisplayType)displayType 77 | hideNavigationButtons:(BOOL)hideNavigationButtons 78 | parentWindow:(NSWindow *_Nullable)parentWindow; 79 | 80 | /** 81 | * @discussion Initialize a new display configuration with the custom display type. The other 82 | * options are not used as this display type requires you to show the dialog with custom UI elements. 83 | */ 84 | + (nullable instancetype)displayCustom; 85 | 86 | @end 87 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Headers/PADPriceOverride.h: -------------------------------------------------------------------------------- 1 | // 2 | // PADPriceOverride.h 3 | // Paddle 4 | // 5 | // Created by Paddle on 13/02/2018. 6 | // Introduced in v4.0. 7 | // Copyright © 2018 Paddle. All rights reserved. 8 | // 9 | 10 | #import "PADProduct.h" 11 | #import 12 | 13 | /** 14 | * @brief A PADPrice object describes a pre-authorized price override for the checkout. 15 | * @discussion The auth value should be calculated beforehand and preferably statically 16 | * included in the application binary to increase the difficulty of inspection. 17 | * 18 | * @discussion You'll need to supply at least one of these to \c PriceOverride if you wish 19 | * to override the dashboard checkout price for a product. 20 | */ 21 | @interface PADPrice : NSObject 22 | 23 | /** 24 | * @discussion The amount of the price, e.g. @10.15 25 | */ 26 | @property (nonnull, nonatomic) NSNumber *price; 27 | 28 | /** 29 | * @discussion The currency of the overridden price, e.g. @"USD". The specified currency must be enabled on the dashboard. 30 | */ 31 | @property (nonnull, copy) NSString *currency; 32 | 33 | /** 34 | * @discussion The authorization string used to validate the price override, calculated ahead of time. 35 | */ 36 | @property (nonnull, copy) NSString *auth; 37 | 38 | /** 39 | * @discussion Creates a new price with all required properties set. 40 | */ 41 | - (nullable instancetype)init:(nonnull NSNumber *)price currency:(nonnull NSString *)currency auth:(nonnull NSString *)auth; 42 | 43 | @end 44 | 45 | /** 46 | * @discussion PADPriceOverride collects all price overrides for the checkout. 47 | * 48 | * @discussion You must include a \c PADPrice object per currency that you wish to override 49 | * and pass a \c PriceOverride to \c CheckoutOptions and subsequently to the \c Checkout. 50 | */ 51 | @interface PADPriceOverride : NSObject 52 | 53 | /** 54 | * @discussion Collection of all purchase price overrides. These prices will be used 55 | * to determine the price of the checkout, but not to determine the recurring price 56 | * of the product. For non-subscription products, this is the only collection that 57 | * should be added to (if necessary). 58 | */ 59 | @property (nonnull, readonly, nonatomic) NSMutableArray *prices; 60 | 61 | /** 62 | * @discussion Collection of all recurring price overrides. These prices will be used 63 | * to determine the recurring price of the product and will be displayed on the checkout 64 | * to indicate the recurring nature of the product. These prices do not to influence the 65 | * price of the checkout. 66 | */ 67 | @property (nonnull, readonly, nonatomic) NSMutableArray *recurringPrices; 68 | 69 | /** 70 | * @discussion Add a price override to the prices array. 71 | */ 72 | - (void)addPrice:(nonnull PADPrice *)price; 73 | 74 | /** 75 | * @discussion Add a recurring price override to the recurring prices array. 76 | */ 77 | - (void)addRecurringPrice:(nonnull PADPrice *)price; 78 | 79 | @end 80 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Headers/PADPriceOverride.h: -------------------------------------------------------------------------------- 1 | // 2 | // PADPriceOverride.h 3 | // Paddle 4 | // 5 | // Created by Paddle on 13/02/2018. 6 | // Introduced in v4.0. 7 | // Copyright © 2018 Paddle. All rights reserved. 8 | // 9 | 10 | #import "PADProduct.h" 11 | #import 12 | 13 | /** 14 | * @brief A PADPrice object describes a pre-authorized price override for the checkout. 15 | * @discussion The auth value should be calculated beforehand and preferably statically 16 | * included in the application binary to increase the difficulty of inspection. 17 | * 18 | * @discussion You'll need to supply at least one of these to \c PriceOverride if you wish 19 | * to override the dashboard checkout price for a product. 20 | */ 21 | @interface PADPrice : NSObject 22 | 23 | /** 24 | * @discussion The amount of the price, e.g. @10.15 25 | */ 26 | @property (nonnull, nonatomic) NSNumber *price; 27 | 28 | /** 29 | * @discussion The currency of the overridden price, e.g. @"USD". The specified currency must be enabled on the dashboard. 30 | */ 31 | @property (nonnull, copy) NSString *currency; 32 | 33 | /** 34 | * @discussion The authorization string used to validate the price override, calculated ahead of time. 35 | */ 36 | @property (nonnull, copy) NSString *auth; 37 | 38 | /** 39 | * @discussion Creates a new price with all required properties set. 40 | */ 41 | - (nullable instancetype)init:(nonnull NSNumber *)price currency:(nonnull NSString *)currency auth:(nonnull NSString *)auth; 42 | 43 | @end 44 | 45 | /** 46 | * @discussion PADPriceOverride collects all price overrides for the checkout. 47 | * 48 | * @discussion You must include a \c PADPrice object per currency that you wish to override 49 | * and pass a \c PriceOverride to \c CheckoutOptions and subsequently to the \c Checkout. 50 | */ 51 | @interface PADPriceOverride : NSObject 52 | 53 | /** 54 | * @discussion Collection of all purchase price overrides. These prices will be used 55 | * to determine the price of the checkout, but not to determine the recurring price 56 | * of the product. For non-subscription products, this is the only collection that 57 | * should be added to (if necessary). 58 | */ 59 | @property (nonnull, readonly, nonatomic) NSMutableArray *prices; 60 | 61 | /** 62 | * @discussion Collection of all recurring price overrides. These prices will be used 63 | * to determine the recurring price of the product and will be displayed on the checkout 64 | * to indicate the recurring nature of the product. These prices do not to influence the 65 | * price of the checkout. 66 | */ 67 | @property (nonnull, readonly, nonatomic) NSMutableArray *recurringPrices; 68 | 69 | /** 70 | * @discussion Add a price override to the prices array. 71 | */ 72 | - (void)addPrice:(nonnull PADPrice *)price; 73 | 74 | /** 75 | * @discussion Add a recurring price override to the recurring prices array. 76 | */ 77 | - (void)addRecurringPrice:(nonnull PADPrice *)price; 78 | 79 | @end 80 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Headers/PADCheckoutOptions.h: -------------------------------------------------------------------------------- 1 | // 2 | // PADCheckoutOptions.h 3 | // Paddle 4 | // 5 | // Created by Paddle on 09/10/2017. 6 | // Introduced in v4.0. 7 | // Copyright © 2018 Paddle. All rights reserved. 8 | // 9 | 10 | #import "PADPriceOverride.h" 11 | #import 12 | 13 | /** 14 | * @brief PADCheckoutOptions describes the options that can be passed to the 15 | * Paddle checkout. 16 | * @discussion This interface contains the most common options to customize the checkout. 17 | * To specify additional options, add them to the \c additionalCheckoutParameters property. 18 | * See the reference documentation for Paddle.js for all possible checkout configuration options. 19 | */ 20 | @interface PADCheckoutOptions : NSObject 21 | 22 | /** 23 | * @discussion The user's email address. 24 | */ 25 | @property (copy, nullable) NSString *email; 26 | 27 | /** 28 | * @discussion The country of the user represented as a ISO 3166-1 alpha-2 country code, 29 | * e.g. @"US". 30 | */ 31 | @property (copy, nullable) NSString *country; 32 | 33 | /** 34 | * @discussion The postcode of the user. 35 | */ 36 | @property (copy, nullable) NSString *postcode; 37 | 38 | /** 39 | * @discussion The number of the same product that the user wishes to buy. 40 | */ 41 | @property (copy, nullable) NSNumber *quantity; 42 | 43 | /** 44 | * @discussion Specifies whether the user can change the quantity on the checkout. 45 | * By default this property is set to YES. 46 | */ 47 | @property BOOL allowQuantity; 48 | 49 | /** 50 | * @discussion The domain from which the checkout is started. 51 | */ 52 | @property (copy, nullable) NSString *referringDomain; 53 | 54 | /** 55 | * @discussion Specifies that users should be not be able to log out on the checkout, 56 | * preventing them from changing the email on checkout. By default this option is set 57 | * to NO. 58 | */ 59 | @property BOOL disableLogout; 60 | 61 | /** 62 | * @discussion The opaque value that we pass through the checkout process. 63 | */ 64 | @property (copy, nullable) NSString *passthrough; 65 | 66 | /** 67 | * @discussion The coupon code to use on the checkout. 68 | */ 69 | @property (copy, nullable) NSString *coupon; 70 | 71 | /** 72 | * @discussion The locale code of the user, if you would prefer to override the checkout's auto-detection. 73 | */ 74 | @property (copy, nullable) NSString *locale; 75 | 76 | /** 77 | * @discussion The short title of the checkout, typically the product name. 78 | */ 79 | @property (copy, nullable) NSString *title; 80 | 81 | /** 82 | * @discussion The message of the checkout, typically a short description of 83 | * the product. 84 | */ 85 | @property (copy, nullable) NSString *message; 86 | 87 | /** 88 | * @discussion The price overrides of the checkout. 89 | */ 90 | @property (nonatomic, nullable) PADPriceOverride *priceOverride; 91 | 92 | /** 93 | * @discussion The additional checkout options. 94 | */ 95 | @property (nonatomic, nullable) NSDictionary *additionalCheckoutParameters; 96 | 97 | /** 98 | * @discussion The checkout options prepared for transmission to the checkout 99 | * window or UI element. 100 | */ 101 | @property (readonly, nonnull) NSDictionary *formattedOptions; 102 | 103 | /** 104 | * @brief Create an empty checkout options object. 105 | */ 106 | + (nullable instancetype)options; 107 | 108 | @end 109 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Headers/PADCheckoutOptions.h: -------------------------------------------------------------------------------- 1 | // 2 | // PADCheckoutOptions.h 3 | // Paddle 4 | // 5 | // Created by Paddle on 09/10/2017. 6 | // Introduced in v4.0. 7 | // Copyright © 2018 Paddle. All rights reserved. 8 | // 9 | 10 | #import "PADPriceOverride.h" 11 | #import 12 | 13 | /** 14 | * @brief PADCheckoutOptions describes the options that can be passed to the 15 | * Paddle checkout. 16 | * @discussion This interface contains the most common options to customize the checkout. 17 | * To specify additional options, add them to the \c additionalCheckoutParameters property. 18 | * See the reference documentation for Paddle.js for all possible checkout configuration options. 19 | */ 20 | @interface PADCheckoutOptions : NSObject 21 | 22 | /** 23 | * @discussion The user's email address. 24 | */ 25 | @property (copy, nullable) NSString *email; 26 | 27 | /** 28 | * @discussion The country of the user represented as a ISO 3166-1 alpha-2 country code, 29 | * e.g. @"US". 30 | */ 31 | @property (copy, nullable) NSString *country; 32 | 33 | /** 34 | * @discussion The postcode of the user. 35 | */ 36 | @property (copy, nullable) NSString *postcode; 37 | 38 | /** 39 | * @discussion The number of the same product that the user wishes to buy. 40 | */ 41 | @property (copy, nullable) NSNumber *quantity; 42 | 43 | /** 44 | * @discussion Specifies whether the user can change the quantity on the checkout. 45 | * By default this property is set to YES. 46 | */ 47 | @property BOOL allowQuantity; 48 | 49 | /** 50 | * @discussion The domain from which the checkout is started. 51 | */ 52 | @property (copy, nullable) NSString *referringDomain; 53 | 54 | /** 55 | * @discussion Specifies that users should be not be able to log out on the checkout, 56 | * preventing them from changing the email on checkout. By default this option is set 57 | * to NO. 58 | */ 59 | @property BOOL disableLogout; 60 | 61 | /** 62 | * @discussion The opaque value that we pass through the checkout process. 63 | */ 64 | @property (copy, nullable) NSString *passthrough; 65 | 66 | /** 67 | * @discussion The coupon code to use on the checkout. 68 | */ 69 | @property (copy, nullable) NSString *coupon; 70 | 71 | /** 72 | * @discussion The locale code of the user, if you would prefer to override the checkout's auto-detection. 73 | */ 74 | @property (copy, nullable) NSString *locale; 75 | 76 | /** 77 | * @discussion The short title of the checkout, typically the product name. 78 | */ 79 | @property (copy, nullable) NSString *title; 80 | 81 | /** 82 | * @discussion The message of the checkout, typically a short description of 83 | * the product. 84 | */ 85 | @property (copy, nullable) NSString *message; 86 | 87 | /** 88 | * @discussion The price overrides of the checkout. 89 | */ 90 | @property (nonatomic, nullable) PADPriceOverride *priceOverride; 91 | 92 | /** 93 | * @discussion The additional checkout options. 94 | */ 95 | @property (nonatomic, nullable) NSDictionary *additionalCheckoutParameters; 96 | 97 | /** 98 | * @discussion The checkout options prepared for transmission to the checkout 99 | * window or UI element. 100 | */ 101 | @property (readonly, nonnull) NSDictionary *formattedOptions; 102 | 103 | /** 104 | * @brief Create an empty checkout options object. 105 | */ 106 | + (nullable instancetype)options; 107 | 108 | @end 109 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | "%@ can send me product updates and offers via email. You can opt-out at any time." = "%@ 可以通过电子邮件给我发送产品更新和报价。您可以随时选择退出。"; 3 | 4 | /* No comment provided by engineer. */ 5 | "%@%% off!" = "%@%% 离开!"; 6 | 7 | /* No comment provided by engineer. */ 8 | "A valid license code is required. Please try again." = "需要一个有效的许可证代码。请重试。"; 9 | 10 | /* No comment provided by engineer. */ 11 | "Activate" = "激活"; 12 | 13 | /* No comment provided by engineer. */ 14 | "Activate License" = "激活许可证"; 15 | 16 | /* No comment provided by engineer. */ 17 | "Already purchased a license? Fill in the form below and activate %@ instantly." = "已购买一个执照?填写下方的表格并立即激活 %@。"; 18 | 19 | /* No comment provided by engineer. */ 20 | "Buy Now" = "现在购买"; 21 | 22 | /* No comment provided by engineer. */ 23 | "By %@" = "通过 %@"; 24 | 25 | /* No comment provided by engineer. */ 26 | "Cancel" = "取消"; 27 | 28 | /* No comment provided by engineer. */ 29 | "Close" = "关闭"; 30 | 31 | /* No comment provided by engineer. */ 32 | "Continue Trial" = "继续试验"; 33 | 34 | /* No comment provided by engineer. */ 35 | "Deactivating License" = "撤销许可证"; 36 | 37 | /* No comment provided by engineer. */ 38 | "Email Address" = "电子邮件地址"; 39 | 40 | /* No comment provided by engineer. */ 41 | "Enter License" = "输入许可证"; 42 | 43 | /* No comment provided by engineer. */ 44 | "Error" = "错误"; 45 | 46 | /* No comment provided by engineer. */ 47 | "Join" = "加入"; 48 | 49 | /* No comment provided by engineer. */ 50 | "License Code" = "许可码"; 51 | 52 | /* No comment provided by engineer. */ 53 | "License code has already been used." = "许可码已被占用。"; 54 | 55 | /* No comment provided by engineer. */ 56 | "License code is not active" = "许可码未激活"; 57 | 58 | /* No comment provided by engineer. */ 59 | "License does not match product" = "许可证与产品不匹配"; 60 | 61 | /* No comment provided by engineer. */ 62 | "License successfully deactivated" = "许可证已成功失效"; 63 | 64 | /* No comment provided by engineer. */ 65 | "OK" = "好"; 66 | 67 | /* No comment provided by engineer. */ 68 | "Order Success" = "下单成功"; 69 | 70 | /* No comment provided by engineer. */ 71 | "Please enter the email address used to purchase your license." = "请输入电子邮件地址以购买您的许可证。"; 72 | 73 | /* No comment provided by engineer. */ 74 | "Provided currency is not valid'," = "提供的货币无效,"; 75 | 76 | /* No comment provided by engineer. */ 77 | "Quit" = "退出"; 78 | 79 | /* No comment provided by engineer. */ 80 | "Recover" = "恢复"; 81 | 82 | /* No comment provided by engineer. */ 83 | "Recover your %@ license" = "恢复您的 %@ 许可证"; 84 | 85 | /* No comment provided by engineer. */ 86 | "Recovering your %@ license" = "恢复您的 %@ 许可证"; 87 | 88 | /* No comment provided by engineer. */ 89 | "Retry" = "重试"; 90 | 91 | /* No comment provided by engineer. */ 92 | "Success" = "成功"; 93 | 94 | /* No comment provided by engineer. */ 95 | "Thank you for trying %@" = "感谢您试用 %@"; 96 | 97 | /* No comment provided by engineer. */ 98 | "This copy of %@ is registered with the information below." = "%@ 副本已用下方信息注册。"; 99 | 100 | /* No comment provided by engineer. */ 101 | "This license has expired" = "本许可证已过期"; 102 | 103 | /* No comment provided by engineer. */ 104 | "Unable to authenticate, check your SDK API key." = "无法验证,请检查您的 SDK API 键。"; 105 | 106 | /* No comment provided by engineer. */ 107 | "Unable to find requested activation" = "找不到请求的激活"; 108 | 109 | /* No comment provided by engineer. */ 110 | "Unable to find requested product" = "找不到请求的产品"; 111 | 112 | /* No comment provided by engineer. */ 113 | "Unspecified error, please contact support." = "未指明的错误,请联系支持团队。"; 114 | 115 | /* No comment provided by engineer. */ 116 | "Use a different email address" = "使用不同的电子邮件地址"; 117 | 118 | /* No comment provided by engineer. */ 119 | "We were unable to confirm the status of your order" = "我们无法确认您的订单状态"; 120 | 121 | /* No comment provided by engineer. */ 122 | "We were unable to confirm the status of your order. You'll receive an email soon." = "我们无法确认您的订单状态。您很快就会收到一封电子邮件。"; 123 | 124 | /* No comment provided by engineer. */ 125 | "We're already checking a license, please wait a moment." = "我们已经在检查许可证,请稍等。"; 126 | 127 | /* No comment provided by engineer. */ 128 | "We're already deactivating a license, please wait a moment." = "我们已经在撤销许可证,请稍等。"; 129 | 130 | /* No comment provided by engineer. */ 131 | "We're unable to find the supplied license key for this product." = "我们找不到本产品对应的许可证密钥。"; 132 | 133 | /* No comment provided by engineer. */ 134 | "We've sent details of any licenses for %@ to %@" = "我们已发送任何许可证的详情 %@ to %@"; 135 | 136 | /* No comment provided by engineer. */ 137 | "Welcome to %@!" = "欢迎来到 %@!"; 138 | 139 | /* No comment provided by engineer. */ 140 | "You don't have permission to access this resource" = "你无权限访问本资源"; 141 | 142 | /* No comment provided by engineer. */ 143 | "You have %d day remaining of your trial period." = "您的试用期还剩余 %d 天!"; 144 | 145 | /* No comment provided by engineer. */ 146 | "You have %d days remaining of your trial period." = "您的试用期还剩余 %d 天!"; 147 | 148 | /* No comment provided by engineer. */ 149 | "Your %@ License" = "您的 %@ 许可证"; 150 | 151 | /* No comment provided by engineer. */ 152 | "Your order is being processed" = "您的订单正在处理中"; 153 | 154 | /* No comment provided by engineer. */ 155 | "Your order is being processed. You'll receive an email soon." = "您的订单正在处理中。您很快就会收到一封电子邮件。"; 156 | 157 | "Order Complete" = "订单完成"; 158 | "Thank you for your order, you'll receive an email shortly." = "感谢您的订购,您稍后将收到一封电子邮件。"; 159 | "Unable to deactivate license. Please try again later." = "无法反激活许可。敬请稍后再试。"; 160 | 161 | "No Thanks!" = "不用了,谢谢!"; 162 | "Send anonymous usage information?" = "发送匿名使用信息?"; 163 | "Would you like to send anonymous usage information to the developer of %@ to help improve the application?" = "您想给%@的开发人员发送匿名使用信息来帮助改进这个应用程序吗?"; 164 | "%@ - Checkout" = "%@ - 结账"; 165 | "Forgotten your license key?" = "忘记了授权码?"; 166 | "Whoops! Something went wrong." = "哎呀!发生了一些错误。"; 167 | "An unexpected error occurred performing this action." = "执行该操作时发生意外错误。"; 168 | "An Error Occurred" = "发生了一个错误"; 169 | 170 | /* No comment provided by engineer. */ 171 | "Then %@/%ld days" = "此后为 %@/%ld 天"; 172 | 173 | /* No comment provided by engineer. */ 174 | "Then %@/%ld months" = "此后为 %@/%ld 月"; 175 | 176 | /* No comment provided by engineer. */ 177 | "Then %@/%ld weeks" = "此后为 %@/%ld 周"; 178 | 179 | /* No comment provided by engineer. */ 180 | "Then %@/%ld years" = "此后为 %@/%ld 年"; 181 | 182 | /* No comment provided by engineer. */ 183 | "Then %@/day" = "然后 %@/天"; 184 | 185 | /* No comment provided by engineer. */ 186 | "Then %@/month" = "然后 %@/月"; 187 | 188 | /* No comment provided by engineer. */ 189 | "Then %@/week" = "然后 %@/星期"; 190 | 191 | /* No comment provided by engineer. */ 192 | "Then %@/year" = "然后 %@/年"; 193 | 194 | /* No comment provided by engineer. */ 195 | "after %ld days" = "在 %ld 天后"; 196 | 197 | /* No comment provided by engineer. */ 198 | "after 1 day" = "在 1 天后"; 199 | 200 | /* No comment provided by engineer. */ 201 | "License code has already been utilized" = "注册码已被使用"; 202 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | "%@ - Checkout" = "%@ - Checkout"; 3 | 4 | /* No comment provided by engineer. */ 5 | "%@ can send me product updates and offers via email. You can opt-out at any time." = "%@ can send me product updates and offers via email. You can opt-out at any time."; 6 | 7 | /* No comment provided by engineer. */ 8 | "%@%% off!" = "%@%% off!"; 9 | 10 | /* No comment provided by engineer. */ 11 | "A valid license code is required. Please try again." = "A valid license code is required. Please try again."; 12 | 13 | /* No comment provided by engineer. */ 14 | "Activate" = "Activate"; 15 | 16 | /* No comment provided by engineer. */ 17 | "Activate License" = "Activate License"; 18 | 19 | /* No comment provided by engineer. */ 20 | "Already purchased a license? Fill in the form below and activate %@ instantly." = "Already purchased a license? Fill in the form below and activate %@ instantly."; 21 | 22 | /* No comment provided by engineer. */ 23 | "An Error Occurred" = "An Error Occurred"; 24 | 25 | /* No comment provided by engineer. */ 26 | "An unexpected error occurred performing this action." = "An unexpected error occurred performing this action."; 27 | 28 | /* No comment provided by engineer. */ 29 | "Buy Now" = "Buy Now"; 30 | 31 | /* No comment provided by engineer. */ 32 | "By %@" = "By %@"; 33 | 34 | /* No comment provided by engineer. */ 35 | "Cancel" = "Cancel"; 36 | 37 | /* No comment provided by engineer. */ 38 | "Close" = "Close"; 39 | 40 | /* No comment provided by engineer. */ 41 | "Continue Trial" = "Continue Trial"; 42 | 43 | /* No comment provided by engineer. */ 44 | "Deactivating License" = "Deactivating License"; 45 | 46 | /* No comment provided by engineer. */ 47 | "Email Address" = "Email Address"; 48 | 49 | /* No comment provided by engineer. */ 50 | "Enter License" = "Enter License"; 51 | 52 | /* No comment provided by engineer. */ 53 | "Error" = "Error"; 54 | 55 | /* No comment provided by engineer. */ 56 | "Forgotten your license key?" = "Forgotten your license key?"; 57 | 58 | /* No comment provided by engineer. */ 59 | "Join" = "Join"; 60 | 61 | /* No comment provided by engineer. */ 62 | "License Code" = "License Code"; 63 | 64 | /* No comment provided by engineer. */ 65 | "No Thanks!" = "No Thanks!"; 66 | 67 | /* No comment provided by engineer. */ 68 | "OK" = "OK"; 69 | 70 | /* No comment provided by engineer. */ 71 | "Order Complete" = "Order Complete"; 72 | 73 | /* No comment provided by engineer. */ 74 | "Order Success" = "Order Success"; 75 | 76 | /* No comment provided by engineer. */ 77 | "Please enter the email address used to purchase your license." = "Please enter the email address used to purchase your license."; 78 | 79 | /* No comment provided by engineer. */ 80 | "Quit" = "Quit"; 81 | 82 | /* No comment provided by engineer. */ 83 | "Recover" = "Recover"; 84 | 85 | /* No comment provided by engineer. */ 86 | "Recover your %@ license" = "Recover your %@ license"; 87 | 88 | /* No comment provided by engineer. */ 89 | "Recovering your %@ license" = "Recovering your %@ license"; 90 | 91 | /* No comment provided by engineer. */ 92 | "Retry" = "Retry"; 93 | 94 | /* No comment provided by engineer. */ 95 | "Send anonymous usage information?" = "Send anonymous usage information?"; 96 | 97 | /* No comment provided by engineer. */ 98 | "Success" = "Success"; 99 | 100 | /* No comment provided by engineer. */ 101 | "Thank you for trying %@" = "Thank you for trying %@"; 102 | 103 | /* No comment provided by engineer. */ 104 | "Thank you for your order, you'll receive an email shortly." = "Thank you for your order, you'll receive an email shortly."; 105 | 106 | /* No comment provided by engineer. */ 107 | "This copy of %@ is registered with the information below." = "This copy of %@ is registered with the information below."; 108 | 109 | /* No comment provided by engineer. */ 110 | "Unable to deactivate license. Please try again later." = "Unable to deactivate license. Please try again later."; 111 | 112 | /* No comment provided by engineer. */ 113 | "Unspecified error, please contact support." = "Unspecified error, please contact support."; 114 | 115 | /* No comment provided by engineer. */ 116 | "Use a different email address" = "Use a different email address"; 117 | 118 | /* No comment provided by engineer. */ 119 | "We're already checking a license, please wait a moment." = "We're already checking a license, please wait a moment."; 120 | 121 | /* No comment provided by engineer. */ 122 | "We're already deactivating a license, please wait a moment." = "We're already deactivating a license, please wait a moment."; 123 | 124 | /* No comment provided by engineer. */ 125 | "We've sent details of any licenses for %@ to %@" = "We've sent details of any licenses for %1$@ to %2$@"; 126 | 127 | /* No comment provided by engineer. */ 128 | "Welcome to %@!" = "Welcome to %@!"; 129 | 130 | /* No comment provided by engineer. */ 131 | "Whoops! Something went wrong." = "Whoops! Something went wrong."; 132 | 133 | /* No comment provided by engineer. */ 134 | "Would you like to send anonymous usage information to the developer of %@ to help improve the application?" = "Would you like to send anonymous usage information to the developer of %@ to help improve the application?"; 135 | 136 | /* No comment provided by engineer. */ 137 | "You have %d day remaining of your trial period." = "You have %d day remaining of your trial period."; 138 | 139 | /* No comment provided by engineer. */ 140 | "You have %d days remaining of your trial period." = "You have %d days remaining of your trial period."; 141 | 142 | /* No comment provided by engineer. */ 143 | "Your %@ License" = "Your %@ License"; 144 | 145 | /* No comment provided by engineer. */ 146 | "Your order is being processed" = "Your order is being processed"; 147 | 148 | /* No comment provided by engineer. */ 149 | "Your order is being processed. You'll receive an email soon." = "Your order is being processed. You'll receive an email soon."; 150 | 151 | /* No comment provided by engineer. */ 152 | "Then %@/%ld days" = "Then %@/%ld days"; 153 | 154 | /* No comment provided by engineer. */ 155 | "Then %@/%ld months" = "Then %@/%ld months"; 156 | 157 | /* No comment provided by engineer. */ 158 | "Then %@/%ld weeks" = "Then %@/%ld weeks"; 159 | 160 | /* No comment provided by engineer. */ 161 | "Then %@/%ld years" = "Then %@/%ld years"; 162 | 163 | /* No comment provided by engineer. */ 164 | "Then %@/day" = "Then %@/day"; 165 | 166 | /* No comment provided by engineer. */ 167 | "Then %@/month" = "Then %@/month"; 168 | 169 | /* No comment provided by engineer. */ 170 | "Then %@/week" = "Then %@/week"; 171 | 172 | /* No comment provided by engineer. */ 173 | "Then %@/year" = "Then %@/year"; 174 | 175 | /* No comment provided by engineer. */ 176 | "after %ld days" = "after %ld days"; 177 | 178 | /* No comment provided by engineer. */ 179 | "after 1 day" = "after 1 day"; 180 | 181 | /* No comment provided by engineer. */ 182 | "License code has already been utilized" = "License code has already been utilized"; 183 | -------------------------------------------------------------------------------- /Paddle.framework/Versions/A/Resources/zh-TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | "%@ can send me product updates and offers via email. You can opt-out at any time." = "%@ 可以透過電子郵件向我寄送產品更新及優惠資訊。您可以隨時選擇退出。"; 3 | 4 | /* No comment provided by engineer. */ 5 | "%@%% off!" = "優惠 %@%%!"; 6 | 7 | /* No comment provided by engineer. */ 8 | "A valid license code is required. Please try again." = "需要有效的授權碼。請再試一次。"; 9 | 10 | /* No comment provided by engineer. */ 11 | "Activate" = "啟用"; 12 | 13 | /* No comment provided by engineer. */ 14 | "Activate License" = "啟用授權"; 15 | 16 | /* No comment provided by engineer. */ 17 | "Already purchased a license? Fill in the form below and activate %@ instantly." = "已經購買授權了嗎?請填寫下表,立即啟用 %@。"; 18 | 19 | /* No comment provided by engineer. */ 20 | "Buy Now" = "立即購買"; 21 | 22 | /* No comment provided by engineer. */ 23 | "By %@" = "由 %@"; 24 | 25 | /* No comment provided by engineer. */ 26 | "Cancel" = "取消"; 27 | 28 | /* No comment provided by engineer. */ 29 | "Close" = "關閉"; 30 | 31 | /* No comment provided by engineer. */ 32 | "Continue Trial" = "繼續試用"; 33 | 34 | /* No comment provided by engineer. */ 35 | "Deactivating License" = "正在停用授權"; 36 | 37 | /* No comment provided by engineer. */ 38 | "Email Address" = "電子郵件地址"; 39 | 40 | /* No comment provided by engineer. */ 41 | "Enter License" = "輸入授權"; 42 | 43 | /* No comment provided by engineer. */ 44 | "Error" = "錯誤"; 45 | 46 | /* No comment provided by engineer. */ 47 | "Join" = "加入"; 48 | 49 | /* No comment provided by engineer. */ 50 | "License Code" = "授權碼"; 51 | 52 | /* No comment provided by engineer. */ 53 | "License code has already been used." = "授權碼已在使用中。"; 54 | 55 | /* No comment provided by engineer. */ 56 | "License code is not active" = "授權碼非使用中"; 57 | 58 | /* No comment provided by engineer. */ 59 | "License does not match product" = "授權與產品不符合"; 60 | 61 | /* No comment provided by engineer. */ 62 | "License successfully deactivated" = "已成功停用授權"; 63 | 64 | /* No comment provided by engineer. */ 65 | "OK" = "確定"; 66 | 67 | /* No comment provided by engineer. */ 68 | "Order Success" = "訂購成功"; 69 | 70 | /* No comment provided by engineer. */ 71 | "Please enter the email address used to purchase your license." = "請輸入用以購買授權的電子郵件地址。"; 72 | 73 | /* No comment provided by engineer. */ 74 | "Provided currency is not valid'," = "您提供的貨幣無效。"; 75 | 76 | /* No comment provided by engineer. */ 77 | "Quit" = "結束"; 78 | 79 | /* No comment provided by engineer. */ 80 | "Recover" = "復原"; 81 | 82 | /* No comment provided by engineer. */ 83 | "Recover your %@ license" = "復原您的 %@ 授權"; 84 | 85 | /* No comment provided by engineer. */ 86 | "Recovering your %@ license" = "正在復原您的 %@ 授權"; 87 | 88 | /* No comment provided by engineer. */ 89 | "Retry" = "再試一次"; 90 | 91 | /* No comment provided by engineer. */ 92 | "Success" = "成功"; 93 | 94 | /* No comment provided by engineer. */ 95 | "Thank you for trying %@" = "謝謝您試用 %@"; 96 | 97 | /* No comment provided by engineer. */ 98 | "This copy of %@ is registered with the information below." = "此 %@ 複本是以下方的資訊註冊。"; 99 | 100 | /* No comment provided by engineer. */ 101 | "This license has expired" = "此授權已過期"; 102 | 103 | /* No comment provided by engineer. */ 104 | "Unable to authenticate, check your SDK API key." = "無法驗證,請檢查您的 SDK API 金鑰"; 105 | 106 | /* No comment provided by engineer. */ 107 | "Unable to find requested activation" = "找不到要求的啟用"; 108 | 109 | /* No comment provided by engineer. */ 110 | "Unable to find requested product" = "找不到要求的產品"; 111 | 112 | /* No comment provided by engineer. */ 113 | "Unspecified error, please contact support." = "未指定的錯誤,請 連絡支援部門。"; 114 | 115 | /* No comment provided by engineer. */ 116 | "Use a different email address" = "使用不同的電子郵件地址"; 117 | 118 | /* No comment provided by engineer. */ 119 | "We were unable to confirm the status of your order" = "我們無法確認您的訂單狀態"; 120 | 121 | /* No comment provided by engineer. */ 122 | "We were unable to confirm the status of your order. You'll receive an email soon." = "我們無法確認您的訂單狀態。您很快會收到一封電子郵件。"; 123 | 124 | /* No comment provided by engineer. */ 125 | "We're already checking a license, please wait a moment." = "正在檢查授權,請稍候。"; 126 | 127 | /* No comment provided by engineer. */ 128 | "We're already deactivating a license, please wait a moment." = "正在停用授權,請稍候。"; 129 | 130 | /* No comment provided by engineer. */ 131 | "We're unable to find the supplied license key for this product." = "找不到此產品的供應授權金鑰。"; 132 | 133 | /* No comment provided by engineer. */ 134 | "We've sent details of any licenses for %@ to %@" = "我們已寄出 %@ 至 %@ 任何授權的詳細資料"; 135 | 136 | /* No comment provided by engineer. */ 137 | "Welcome to %@!" = "歡迎使用 %@!"; 138 | 139 | /* No comment provided by engineer. */ 140 | "You don't have permission to access this resource" = "您沒有存取此資源的權限"; 141 | 142 | /* No comment provided by engineer. */ 143 | "You have %d day remaining of your trial period." = "您的試用期還有 %d 天。"; 144 | 145 | /* No comment provided by engineer. */ 146 | "You have %d days remaining of your trial period." = "您的試用期還有 %d 天。"; 147 | 148 | /* No comment provided by engineer. */ 149 | "Your %@ License" = "您的 %@ 授權"; 150 | 151 | /* No comment provided by engineer. */ 152 | "Your order is being processed" = "正在處理您的訂單"; 153 | 154 | /* No comment provided by engineer. */ 155 | "Your order is being processed. You'll receive an email soon." = "正在處理您的訂單。您很快就會收到一封電子郵件。"; 156 | 157 | "Order Complete" = "訂購完成"; 158 | "Thank you for your order, you'll receive an email shortly." = "感謝您的訂購,您稍後將收到一封確認電郵。"; 159 | "No Thanks!" = "不要,謝謝!"; 160 | "Send anonymous usage information?" = "傳送匿名使用資訊?"; 161 | "Unable to deactivate license. Please try again later." = "無法停用授權。請稍後再試一次。"; 162 | "Would you like to send anonymous usage information to the developer of %@ to help improve the application?" = "您是否要傳送匿名使用資訊給 %@ 的開發者,以協助改善這個應用程式?"; 163 | "%@ - Checkout" = "%@ - 結帳"; 164 | "Forgotten your license key?" = "忘記了你的授權金鑰?"; 165 | "Whoops! Something went wrong." = "糟糕!發生錯誤。"; 166 | "An unexpected error occurred performing this action." = "執行此動作時發生意外的錯誤。"; 167 | "An Error Occurred" = "發生錯誤"; 168 | 169 | /* No comment provided by engineer. */ 170 | "Then %@/%ld days" = "Then %@/%ld days"; 171 | 172 | /* No comment provided by engineer. */ 173 | "Then %@/%ld months" = "Then %@/%ld months"; 174 | 175 | /* No comment provided by engineer. */ 176 | "Then %@/%ld weeks" = "Then %@/%ld weeks"; 177 | 178 | /* No comment provided by engineer. */ 179 | "Then %@/%ld years" = "Then %@/%ld years"; 180 | 181 | /* No comment provided by engineer. */ 182 | "Then %@/day" = "Then %@/day"; 183 | 184 | /* No comment provided by engineer. */ 185 | "Then %@/month" = "Then %@/month"; 186 | 187 | /* No comment provided by engineer. */ 188 | "Then %@/week" = "Then %@/week"; 189 | 190 | /* No comment provided by engineer. */ 191 | "Then %@/year" = "Then %@/year"; 192 | 193 | /* No comment provided by engineer. */ 194 | "after %ld days" = "after %ld days"; 195 | 196 | /* No comment provided by engineer. */ 197 | "after 1 day" = "after 1 day"; 198 | 199 | /* No comment provided by engineer. */ 200 | "License code has already been utilized" = "注册码已被使用"; 201 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | "%@ can send me product updates and offers via email. You can opt-out at any time." = "%@ 可以通过电子邮件给我发送产品更新和报价。您可以随时选择退出。"; 3 | 4 | /* No comment provided by engineer. */ 5 | "%@%% off!" = "%@%% 离开!"; 6 | 7 | /* No comment provided by engineer. */ 8 | "A valid license code is required. Please try again." = "需要一个有效的许可证代码。请重试。"; 9 | 10 | /* No comment provided by engineer. */ 11 | "Activate" = "激活"; 12 | 13 | /* No comment provided by engineer. */ 14 | "Activate License" = "激活许可证"; 15 | 16 | /* No comment provided by engineer. */ 17 | "Already purchased a license? Fill in the form below and activate %@ instantly." = "已购买一个执照?填写下方的表格并立即激活 %@。"; 18 | 19 | /* No comment provided by engineer. */ 20 | "Buy Now" = "现在购买"; 21 | 22 | /* No comment provided by engineer. */ 23 | "By %@" = "通过 %@"; 24 | 25 | /* No comment provided by engineer. */ 26 | "Cancel" = "取消"; 27 | 28 | /* No comment provided by engineer. */ 29 | "Close" = "关闭"; 30 | 31 | /* No comment provided by engineer. */ 32 | "Continue Trial" = "继续试验"; 33 | 34 | /* No comment provided by engineer. */ 35 | "Deactivating License" = "撤销许可证"; 36 | 37 | /* No comment provided by engineer. */ 38 | "Email Address" = "电子邮件地址"; 39 | 40 | /* No comment provided by engineer. */ 41 | "Enter License" = "输入许可证"; 42 | 43 | /* No comment provided by engineer. */ 44 | "Error" = "错误"; 45 | 46 | /* No comment provided by engineer. */ 47 | "Join" = "加入"; 48 | 49 | /* No comment provided by engineer. */ 50 | "License Code" = "许可码"; 51 | 52 | /* No comment provided by engineer. */ 53 | "License code has already been used." = "许可码已被占用。"; 54 | 55 | /* No comment provided by engineer. */ 56 | "License code is not active" = "许可码未激活"; 57 | 58 | /* No comment provided by engineer. */ 59 | "License does not match product" = "许可证与产品不匹配"; 60 | 61 | /* No comment provided by engineer. */ 62 | "License successfully deactivated" = "许可证已成功失效"; 63 | 64 | /* No comment provided by engineer. */ 65 | "OK" = "好"; 66 | 67 | /* No comment provided by engineer. */ 68 | "Order Success" = "下单成功"; 69 | 70 | /* No comment provided by engineer. */ 71 | "Please enter the email address used to purchase your license." = "请输入电子邮件地址以购买您的许可证。"; 72 | 73 | /* No comment provided by engineer. */ 74 | "Provided currency is not valid'," = "提供的货币无效,"; 75 | 76 | /* No comment provided by engineer. */ 77 | "Quit" = "退出"; 78 | 79 | /* No comment provided by engineer. */ 80 | "Recover" = "恢复"; 81 | 82 | /* No comment provided by engineer. */ 83 | "Recover your %@ license" = "恢复您的 %@ 许可证"; 84 | 85 | /* No comment provided by engineer. */ 86 | "Recovering your %@ license" = "恢复您的 %@ 许可证"; 87 | 88 | /* No comment provided by engineer. */ 89 | "Retry" = "重试"; 90 | 91 | /* No comment provided by engineer. */ 92 | "Success" = "成功"; 93 | 94 | /* No comment provided by engineer. */ 95 | "Thank you for trying %@" = "感谢您试用 %@"; 96 | 97 | /* No comment provided by engineer. */ 98 | "This copy of %@ is registered with the information below." = "%@ 副本已用下方信息注册。"; 99 | 100 | /* No comment provided by engineer. */ 101 | "This license has expired" = "本许可证已过期"; 102 | 103 | /* No comment provided by engineer. */ 104 | "Unable to authenticate, check your SDK API key." = "无法验证,请检查您的 SDK API 键。"; 105 | 106 | /* No comment provided by engineer. */ 107 | "Unable to find requested activation" = "找不到请求的激活"; 108 | 109 | /* No comment provided by engineer. */ 110 | "Unable to find requested product" = "找不到请求的产品"; 111 | 112 | /* No comment provided by engineer. */ 113 | "Unspecified error, please contact support." = "未指明的错误,请联系支持团队。"; 114 | 115 | /* No comment provided by engineer. */ 116 | "Use a different email address" = "使用不同的电子邮件地址"; 117 | 118 | /* No comment provided by engineer. */ 119 | "We were unable to confirm the status of your order" = "我们无法确认您的订单状态"; 120 | 121 | /* No comment provided by engineer. */ 122 | "We were unable to confirm the status of your order. You'll receive an email soon." = "我们无法确认您的订单状态。您很快就会收到一封电子邮件。"; 123 | 124 | /* No comment provided by engineer. */ 125 | "We're already checking a license, please wait a moment." = "我们已经在检查许可证,请稍等。"; 126 | 127 | /* No comment provided by engineer. */ 128 | "We're already deactivating a license, please wait a moment." = "我们已经在撤销许可证,请稍等。"; 129 | 130 | /* No comment provided by engineer. */ 131 | "We're unable to find the supplied license key for this product." = "我们找不到本产品对应的许可证密钥。"; 132 | 133 | /* No comment provided by engineer. */ 134 | "We've sent details of any licenses for %@ to %@" = "我们已发送任何许可证的详情 %@ to %@"; 135 | 136 | /* No comment provided by engineer. */ 137 | "Welcome to %@!" = "欢迎来到 %@!"; 138 | 139 | /* No comment provided by engineer. */ 140 | "You don't have permission to access this resource" = "你无权限访问本资源"; 141 | 142 | /* No comment provided by engineer. */ 143 | "You have %d day remaining of your trial period." = "您的试用期还剩余 %d 天!"; 144 | 145 | /* No comment provided by engineer. */ 146 | "You have %d days remaining of your trial period." = "您的试用期还剩余 %d 天!"; 147 | 148 | /* No comment provided by engineer. */ 149 | "Your %@ License" = "您的 %@ 许可证"; 150 | 151 | /* No comment provided by engineer. */ 152 | "Your order is being processed" = "您的订单正在处理中"; 153 | 154 | /* No comment provided by engineer. */ 155 | "Your order is being processed. You'll receive an email soon." = "您的订单正在处理中。您很快就会收到一封电子邮件。"; 156 | 157 | "Order Complete" = "订单完成"; 158 | "Thank you for your order, you'll receive an email shortly." = "感谢您的订购,您稍后将收到一封电子邮件。"; 159 | "Unable to deactivate license. Please try again later." = "无法反激活许可。敬请稍后再试。"; 160 | 161 | "No Thanks!" = "不用了,谢谢!"; 162 | "Send anonymous usage information?" = "发送匿名使用信息?"; 163 | "Would you like to send anonymous usage information to the developer of %@ to help improve the application?" = "您想给%@的开发人员发送匿名使用信息来帮助改进这个应用程序吗?"; 164 | "%@ - Checkout" = "%@ - 结账"; 165 | "Forgotten your license key?" = "忘记了授权码?"; 166 | "Whoops! Something went wrong." = "哎呀!发生了一些错误。"; 167 | "An unexpected error occurred performing this action." = "执行该操作时发生意外错误。"; 168 | "An Error Occurred" = "发生了一个错误"; 169 | 170 | /* No comment provided by engineer. */ 171 | "Then %@/%ld days" = "此后为 %@/%ld 天"; 172 | 173 | /* No comment provided by engineer. */ 174 | "Then %@/%ld months" = "此后为 %@/%ld 月"; 175 | 176 | /* No comment provided by engineer. */ 177 | "Then %@/%ld weeks" = "此后为 %@/%ld 周"; 178 | 179 | /* No comment provided by engineer. */ 180 | "Then %@/%ld years" = "此后为 %@/%ld 年"; 181 | 182 | /* No comment provided by engineer. */ 183 | "Then %@/day" = "然后 %@/天"; 184 | 185 | /* No comment provided by engineer. */ 186 | "Then %@/month" = "然后 %@/月"; 187 | 188 | /* No comment provided by engineer. */ 189 | "Then %@/week" = "然后 %@/星期"; 190 | 191 | /* No comment provided by engineer. */ 192 | "Then %@/year" = "然后 %@/年"; 193 | 194 | /* No comment provided by engineer. */ 195 | "after %ld days" = "在 %ld 天后"; 196 | 197 | /* No comment provided by engineer. */ 198 | "after 1 day" = "在 1 天后"; 199 | 200 | /* No comment provided by engineer. */ 201 | "License code has already been utilized" = "注册码已被使用"; 202 | -------------------------------------------------------------------------------- /Paddle.xcframework/macos-arm64_x86_64/Paddle.framework/Versions/A/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | "%@ - Checkout" = "%@ - Checkout"; 3 | 4 | /* No comment provided by engineer. */ 5 | "%@ can send me product updates and offers via email. You can opt-out at any time." = "%@ can send me product updates and offers via email. You can opt-out at any time."; 6 | 7 | /* No comment provided by engineer. */ 8 | "%@%% off!" = "%@%% off!"; 9 | 10 | /* No comment provided by engineer. */ 11 | "A valid license code is required. Please try again." = "A valid license code is required. Please try again."; 12 | 13 | /* No comment provided by engineer. */ 14 | "Activate" = "Activate"; 15 | 16 | /* No comment provided by engineer. */ 17 | "Activate License" = "Activate License"; 18 | 19 | /* No comment provided by engineer. */ 20 | "Already purchased a license? Fill in the form below and activate %@ instantly." = "Already purchased a license? Fill in the form below and activate %@ instantly."; 21 | 22 | /* No comment provided by engineer. */ 23 | "An Error Occurred" = "An Error Occurred"; 24 | 25 | /* No comment provided by engineer. */ 26 | "An unexpected error occurred performing this action." = "An unexpected error occurred performing this action."; 27 | 28 | /* No comment provided by engineer. */ 29 | "Buy Now" = "Buy Now"; 30 | 31 | /* No comment provided by engineer. */ 32 | "By %@" = "By %@"; 33 | 34 | /* No comment provided by engineer. */ 35 | "Cancel" = "Cancel"; 36 | 37 | /* No comment provided by engineer. */ 38 | "Close" = "Close"; 39 | 40 | /* No comment provided by engineer. */ 41 | "Continue Trial" = "Continue Trial"; 42 | 43 | /* No comment provided by engineer. */ 44 | "Deactivating License" = "Deactivating License"; 45 | 46 | /* No comment provided by engineer. */ 47 | "Email Address" = "Email Address"; 48 | 49 | /* No comment provided by engineer. */ 50 | "Enter License" = "Enter License"; 51 | 52 | /* No comment provided by engineer. */ 53 | "Error" = "Error"; 54 | 55 | /* No comment provided by engineer. */ 56 | "Forgotten your license key?" = "Forgotten your license key?"; 57 | 58 | /* No comment provided by engineer. */ 59 | "Join" = "Join"; 60 | 61 | /* No comment provided by engineer. */ 62 | "License Code" = "License Code"; 63 | 64 | /* No comment provided by engineer. */ 65 | "No Thanks!" = "No Thanks!"; 66 | 67 | /* No comment provided by engineer. */ 68 | "OK" = "OK"; 69 | 70 | /* No comment provided by engineer. */ 71 | "Order Complete" = "Order Complete"; 72 | 73 | /* No comment provided by engineer. */ 74 | "Order Success" = "Order Success"; 75 | 76 | /* No comment provided by engineer. */ 77 | "Please enter the email address used to purchase your license." = "Please enter the email address used to purchase your license."; 78 | 79 | /* No comment provided by engineer. */ 80 | "Quit" = "Quit"; 81 | 82 | /* No comment provided by engineer. */ 83 | "Recover" = "Recover"; 84 | 85 | /* No comment provided by engineer. */ 86 | "Recover your %@ license" = "Recover your %@ license"; 87 | 88 | /* No comment provided by engineer. */ 89 | "Recovering your %@ license" = "Recovering your %@ license"; 90 | 91 | /* No comment provided by engineer. */ 92 | "Retry" = "Retry"; 93 | 94 | /* No comment provided by engineer. */ 95 | "Send anonymous usage information?" = "Send anonymous usage information?"; 96 | 97 | /* No comment provided by engineer. */ 98 | "Success" = "Success"; 99 | 100 | /* No comment provided by engineer. */ 101 | "Thank you for trying %@" = "Thank you for trying %@"; 102 | 103 | /* No comment provided by engineer. */ 104 | "Thank you for your order, you'll receive an email shortly." = "Thank you for your order, you'll receive an email shortly."; 105 | 106 | /* No comment provided by engineer. */ 107 | "This copy of %@ is registered with the information below." = "This copy of %@ is registered with the information below."; 108 | 109 | /* No comment provided by engineer. */ 110 | "Unable to deactivate license. Please try again later." = "Unable to deactivate license. Please try again later."; 111 | 112 | /* No comment provided by engineer. */ 113 | "Unspecified error, please contact support." = "Unspecified error, please contact support."; 114 | 115 | /* No comment provided by engineer. */ 116 | "Use a different email address" = "Use a different email address"; 117 | 118 | /* No comment provided by engineer. */ 119 | "We're already checking a license, please wait a moment." = "We're already checking a license, please wait a moment."; 120 | 121 | /* No comment provided by engineer. */ 122 | "We're already deactivating a license, please wait a moment." = "We're already deactivating a license, please wait a moment."; 123 | 124 | /* No comment provided by engineer. */ 125 | "We've sent details of any licenses for %@ to %@" = "We've sent details of any licenses for %1$@ to %2$@"; 126 | 127 | /* No comment provided by engineer. */ 128 | "Welcome to %@!" = "Welcome to %@!"; 129 | 130 | /* No comment provided by engineer. */ 131 | "Whoops! Something went wrong." = "Whoops! Something went wrong."; 132 | 133 | /* No comment provided by engineer. */ 134 | "Would you like to send anonymous usage information to the developer of %@ to help improve the application?" = "Would you like to send anonymous usage information to the developer of %@ to help improve the application?"; 135 | 136 | /* No comment provided by engineer. */ 137 | "You have %d day remaining of your trial period." = "You have %d day remaining of your trial period."; 138 | 139 | /* No comment provided by engineer. */ 140 | "You have %d days remaining of your trial period." = "You have %d days remaining of your trial period."; 141 | 142 | /* No comment provided by engineer. */ 143 | "Your %@ License" = "Your %@ License"; 144 | 145 | /* No comment provided by engineer. */ 146 | "Your order is being processed" = "Your order is being processed"; 147 | 148 | /* No comment provided by engineer. */ 149 | "Your order is being processed. You'll receive an email soon." = "Your order is being processed. You'll receive an email soon."; 150 | 151 | /* No comment provided by engineer. */ 152 | "Then %@/%ld days" = "Then %@/%ld days"; 153 | 154 | /* No comment provided by engineer. */ 155 | "Then %@/%ld months" = "Then %@/%ld months"; 156 | 157 | /* No comment provided by engineer. */ 158 | "Then %@/%ld weeks" = "Then %@/%ld weeks"; 159 | 160 | /* No comment provided by engineer. */ 161 | "Then %@/%ld years" = "Then %@/%ld years"; 162 | 163 | /* No comment provided by engineer. */ 164 | "Then %@/day" = "Then %@/day"; 165 | 166 | /* No comment provided by engineer. */ 167 | "Then %@/month" = "Then %@/month"; 168 | 169 | /* No comment provided by engineer. */ 170 | "Then %@/week" = "Then %@/week"; 171 | 172 | /* No comment provided by engineer. */ 173 | "Then %@/year" = "Then %@/year"; 174 | 175 | /* No comment provided by engineer. */ 176 | "after %ld days" = "after %ld days"; 177 | 178 | /* No comment provided by engineer. */ 179 | "after 1 day" = "after 1 day"; 180 | 181 | /* No comment provided by engineer. */ 182 | "License code has already been utilized" = "License code has already been utilized"; 183 | --------------------------------------------------------------------------------