Aegisub/packages/osx_bundle/Contents/Info.plist
Amar Takhar 9e29094af2 * Add CFBundleLocalizations which will allow users to set the language via the
System language setting.
* Rename the binary from aegisub to Aegisub so it shows up properly in the title
  bar. (I have no idea why it uses this when using CFBundleLocalizations)

Originally committed to SVN as r2653.
2009-01-05 12:16:35 +00:00

155 lines
4.1 KiB
Plaintext

<?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>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<!-- General settings -->
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>Aegisub</string>
<key>CFBundleIconFile</key>
<string>Aegisub</string>
<key>CFBundleIdentifier</key>
<string>com.aegisub.aegisub</string>
<key>CFBundleName</key>
<string>Aegisub</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>agsu</string>
<!-- Bundle version -->
<!-- This should be bumped on any major changes -->
<key>CFBundleVersion</key>
<string>1</string>
<!-- aegisub version -->
<key>CFBundleShortVersionString</key>
<string>@PLIST_VERSION@</string>
<key>CFBundleLongVersionString</key>
<string>@PLIST_VERSION@ (@PLIST_SVN_REVISION@), Copyright 2005-2009, aegisub http://www.aegisub.net/</string>
<!-- Values: i386, ppc, x86_65, ppc64 -->
<key>LSArchitecturePriority</key>
<string>i386</string>
<!-- Displayed in the 'Get Info' context menu dialogue -->
<key>CFBundleGetInfoString</key>
<string>aegisub version @PLIST_VERSION@ (@PLIST_SVN_REVISION@) built on @PLIST_BUILD_DATE@ http://www.aegisub.net/</string>
<!-- Whether to allow multiple instances across user logins -->
<key>LSMultipleInstancesProhibited</key>
<false/>
<!-- Map resource files to memory -->
<key>CSResourcesFileMapped</key>
<true/>
<!-- Localizations supported -->
<key>CFBundleLocalizations</key>
<array>
<string>ca</string>
<string>da</string>
<string>de</string>
<string>en</string>
<string>es</string>
<string>fr_FR</string>
<string>hu</string>
<string>it</string>
<string>ko</string>
<string>ru</string>
<string>pt_BR</string>
<string>zh_TW</string>
</array>
<!-- Supported document types -->
<key>CFBundleDocumentTypes</key>
<array>
<!-- .ass -->
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>ass</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>assIcon</string>
<key>CFBundleTypeName</key>
<string>Advanced Substation Alpha</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>Binary</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
</dict>
<!-- .ssa -->
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>ssa</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>ssaIcon</string>
<key>CFBundleTypeName</key>
<string>Substation Alpha</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>Binary</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
</dict>
<!-- .srt -->
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>srt</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>srtIcon</string>
<key>CFBundleTypeName</key>
<string>SubRip</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>Binary</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
</dict>
<!-- .txt -->
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>txt</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>txtIcon</string>
<key>CFBundleTypeName</key>
<string>Plain text</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>binary</string>
<key>LSHandlerRank</key>
<string>None</string>
</dict>
</array>
</dict>
</plist>