-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make MacOSX Bundle with working translations
- To create bundle, both build and install must be run by CMake - Localizations now need to be extra declared in Info.plist
- Loading branch information
Showing
2 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>treesheets</string> | ||
<key>CFBundleGetInfoString</key> | ||
<string></string> | ||
<key>CFBundleIconFile</key> | ||
<string>App.icns</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.strlen.TreeSheets</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleLongVersionString</key> | ||
<string></string> | ||
<key>CFBundleName</key> | ||
<string></string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string></string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string></string> | ||
<key>CSResourcesFileMapped</key> | ||
<true/> | ||
<key>NSHumanReadableCopyright</key> | ||
<string>Wouter van Oortmersen</string> | ||
<key>CFBundleLocalizations</key> | ||
<array> | ||
<string>English</string> | ||
<string>German</string> | ||
<string>French</string> | ||
<string>Chinese</string> | ||
<string>Portuguese</string> | ||
<string>Russian</string> | ||
</array> | ||
</dict> | ||
</plist> |