1) Donwload monstra
2) install monstra on www.site.com/en/ - English version of ur website u write all content there ONLY IN ENGLISH LANGUAGE!
3) install monstra on www.site.com/ru/ - Russian version of ur website u write all content there ONLY IN RUSSIAN LANGUAGE!
4)In .htaccess file change to this to run your website first on www.site.com/en/
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !/en/
RewriteRule ^(.*)$ /en/$1 [L]
</IfModule>
5) Add button to change language
<div class="button to change language must be on both websites">
<a href="<?php echo Site::url(); ?>en/<?php echo Page::slug(); ?>">EN</a>
<a href="<?php echo Site::url(); ?>ru/<?php echo Page::slug(); ?>">RU</a>
</div>
Did not test it ever, i guess it should work just fine, if u know how to install monstra on sub-domain
p/s You will have 2 websites so u have to add content 2 times on each of them! open admin for EN write in english, then open admin for RU and write in russian!
(с) Roman Art
So far So good