Alex 'AdUser' Z
7 years ago
4 changed files with 42 additions and 0 deletions
@ -0,0 +1,9 @@
|
||||
package CMTD::I18N; |
||||
|
||||
use strict; |
||||
use warnings; |
||||
use utf8; |
||||
|
||||
use Mojo::Base 'Locale::Maketext'; |
||||
|
||||
1; |
@ -0,0 +1,11 @@
|
||||
package CMTD::I18N::en; |
||||
|
||||
use strict |
||||
use warnings; |
||||
use utf8; |
||||
|
||||
use Mojo::Base 'CMTD::I18N'; |
||||
|
||||
our %Lexicon = ( _AUTO => 1 ); |
||||
|
||||
1; |
@ -0,0 +1,21 @@
|
||||
package CMTD::I18N::ru; |
||||
|
||||
use strict; |
||||
use warnings; |
||||
use utf8; |
||||
|
||||
use Mojo::Base 'CMTD::I18N'; |
||||
|
||||
our %Lexicon = ( |
||||
_AUTO => 1, # enable fallback |
||||
Comments => 'Комментарии', |
||||
Name => 'Имя', |
||||
Date => 'Дата', |
||||
Reply => 'Ответ', |
||||
Send => 'Отправить', |
||||
Add => 'Добавить', |
||||
|
||||
'No comments' => 'Нет комментариев', |
||||
); |
||||
|
||||
1; |
Loading…
Reference in new issue