システム環境設定および prefPane ウィンドウのタイトルバーに表示される名前とは別に、prefPane バンドルの名前を制御できます。EG、取得するには...
bundle "file" name: EG.prefPane
name shown in System Preferences
this preferences window title: Example Preferences
... 製品の Info.plist ファイル (つまり、Xcode) で次のエントリを使用します。
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string>EG</string>
<key>NSPrefPaneIconLabel</key>
<string>Example Preferences</string>
<key>NSPrefPaneSearchParameters</key>
<string>EG</string>
<key>CFBundleName</key>
<string>Example Preferences</string>
<key>CFBundleGetInfoString</key>
<string>Example Preferences 1.0</string>