Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 724 Bytes

README.md

File metadata and controls

44 lines (30 loc) · 724 Bytes

yii2-yee-translation

##Yee CMS - Translation Module

####Backend module for managing translations

This module is part of Yee CMS (based on Yii2 Framework).

Translation module lets you easily create messages and translations on your site.

Installation

  • Either run
composer require --prefer-dist yeesoft/yii2-yee-translation "*"

or add

"yeesoft/yii2-yee-translation": "*"

to the require section of your composer.json file.

  • Run migrations
yii migrate --migrationPath=@vendor/yeesoft/yii2-yee-translation/migrations/

Configuration

  • In your backend config file
'modules'=>[
	'translation' => [
		'class' => 'yeesoft\page\TranslationModule',
	],
],