in reply to new to CMS

CMS isn't an architecture, its just a class of application (like Word Processor).

Where do I store the information that are editable?

Anywhere you like, a relational database like MySQL is the normal choice.

I only want one version of my html pages (template file)

Template or HTML::Template are the usual choices.

The webpages should be multilingual

This makes things more complicated (since you will probably want your CMS to keep things in sync and fire off alerts to translators when a document is changed in one language), but not impossible to handle.

Need to have a wysiwyg editing tool

There is no such thing on the web (since HTML is a language for describing semantics and relationships, and CSS is (a) optional and (b) implemented inconsistantly). Graphical editors abound, although they are of variable quality.

You might want to look into some of the browser based graphical editors. Another option (and I don't know if such tools exist) might be to find an application (along the lines of Dreamweaver) that can work over WebDAV and then write a mod_perl module to handle the WebDAV interface. You could also try convincing users to learn HTML (which is, frankly, pretty trivial - especially if you restrict them to HTML 4.01 Strict (which is all the vast majority of people need)) and have them just write markup.