To get started just upload a new version of our Localizable.strings file attached to this thread with the English bits on the right side of the equals sign replaced by their translated counterparts. So for example this:
<br />
/* Update section confirm button text */<br />
"Update Section" = "Update Section";<br />
Becomes this in Korean:
<br />
/* Update section confirm button text */<br />
"Update Section" = "섹션 업데이트";<br />
To test it in your local version of PMS just create a new folder in the WebManager.bundle plugin named for the two letter language code you're translating to:
<br />
# German<br />
WebManager.bundle/Contents/Resources/Resources/de.lproj<br />
Add your language to WebManager.bundle/Contents/Resources/Info.plist:
CPBundleLocalizedResourceKeysA**;S;2;de**
More explicitly, find CPBundleLocalizedResourceKeysA and add this immediately after: **;S;2;de** (semi-colon, capital 'S', the number '2', semi-colon, then your 2-letter language code).
Then download the Localizable.strings attached to this post to that new directory. Once you've made an edit or two and want to try it, run this command in Terminal.app from within that directory:
<br />
plutil -convert xml1 Localizable.strings -o Localizable.xstrings<br />
Then go to the web PMM in your browser with lang=de, like so: http://localhost:32400/manage/index.html?lang=de
Then just edit, run plutil, and try it in your browser until you've got it just right. Please let us know if you have any questions!
**Note:** There is already an es.lproj for Spanish, but it's a stub. If you want to expand it, please start over with the Localizable.strings attached to this thread.

