這個教學是教大家
如何在"設定"裡面增加一個 " 關於"的選項,
並且自訂顯示的資訊內容
讓不知道的人以為你拿到洩漏的iPhone台灣版


1.首先,安裝winterboard並複製你的
/Applications/Preferences.app/Settings-iPhone.plist
到/Library/Themes/主題名/Bundles/com.apple.Preferences裡面
沒有的資料夾請自己建立

2.修改在Theme裡面的Settings-iPhone.plist
找到下面這段文字(應該在倒數幾段)
代碼:
                    <string>com.apple.mobileslideshow-Photos</string>
                </dict>
            </array>
        </dict>
直接在後面加上

代碼:
        <dict>
            <key>cell</key>
            <string>PSLinkCell</string>
            <key>icon</key>
            <string>About.png</string>
            <key>label</key>
            <string>About</string>
        </dict>
並存檔。

(如果不想要有選項圖示的話就去掉
<key>icon</key>
<string>About.png</string>這段文字)



3.之後開新檔案,複製以下文字,當然,你可以修改任何內容

代碼:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>items</key>
    <array>
        <dict>
            <key>cell</key>
            <string>PSGroupCell</string>
            <key>label</key>
            <string>系統資訊</string>
        </dict>
        <dict>
            <key>cell</key>
            <string>PSGroupCell</string>
            <key>isStaticText</key>
            <true/>
        </dict>
        <dict>
            <key>cell</key>
            <string>PSTitleValueCell</string>
            <key>label</key>
            <string>
Copyright c 2008 Apple Inc.                       
All rights reserved.                                      

型號: iPhone 3G 台灣專用版                     
容量: 64GB                                                
韌體: 2.3 Beta2                                          
序號: IP2128-TWENG-RA385-493KU       
網路系統: WiMAX                                      
電信商: 種花電信                                       
作業系統: Windows Vista Ultimate            

※此系統為蘋果公司設計工程師專用版本.   

</string>
        </dict>
    </array>
    <key>title</key>
    <string>系統資訊</string>
</dict>
</plist>
5.修改完畢請另存成About.plist,並隨便找個icon改名叫About.png,一起丟到
/Library/Themes/主題名/Bundles/com.apple.Preferences裡面即可

6.這樣選項會顯示成"About",如果想要把他改成"關於"的話
請把第2步驟中新增文字內容'當中的
代碼:
            <key>label</key>
            <string>About</string>
改成
代碼:
            <key>label</key>
             <string>關於</string>
再利用Mobile Finder把丟進去的"About.plist"改成"關於.plist"(因winscp不支援中文檔名,所以必須在iPhone裡直接改檔名...)