Sorry for my bad english sad...

I want - one new reply per topic => one email to subscriber.

Now is - all new reply per topic = > only one email to subscriber.

77

(27 replies, posted in Archive)

For english speaking users - we discuss about literary translation of "avatar", "sticky", "ban" smile...

78

(27 replies, posted in Archive)

?? ?????? ???????. ? ????? ?????? - ???, ????? ???????????? ??????. ??? ??? ????????? ??? 9 ??????:

avatar [ ] 1) ; ??????? ( ? ???????? - ?????????? ???? ????? ) 2) ??????????, ?????????? Syn: incarnation , embodiment 3) ??????????, ????????????? She was an avatar of selflessness and generosity. ? ??? ???? ???? ?????????? ????????????????? ? ???????????. Syn: embodiment , personification

??? ?? "?????" (? ?????? - ???? ??????????? - ??, ??? ? ??? ?????????)? ???? ?? ???? ????? ?????????? ??? ?????, ??? ? ???????????? ??????. ?????? - ????? ??????? ???????? ???????? ?????? ?? ???? - ????? ???????? ? ?????...

?? ?????? "????" - ??? ??????? ?? ?????????. ? ????????????? ???????????? ??????? ??? ????? ???????????? ???, ???????? "?????".

P.S. ???? - ? ????? ???? ? ???? ????? ? ???? ?????????????? ?????? sad.

If I have small forum - why not...

IMHO - it must be customizable.

Is this possible?

81

(27 replies, posted in Archive)

??????? smile.

? ????? - ???????, ???, ? ????? ?????????, ???? ??? ?????? ?? "??????????????" ? ??????, ????????? ???????, ?????? ???????, ??? ??? ?????? ???????? ?, ????, ????? ????????? ?? ?????? ?????.

??? ????????? ? ?????:

'Sticky'        =>    '???????????',

?????? - "????????". ?? ??????? ???? - ?? ??????. ? ????, ?????? ????? ???????, ??? ??? ? ?????, ???????????? ? ????????? smile...

'Red text'                =>    '????? ???????? ?????',

??? ????? ????????. ? ???????????? ???????? ????? ?????? ???????? ?????????. ???????? - "????????? ??????".

??? ???????? "????????". ? ??????? ??? ??? ????? ?????????. ??, ????? ?????????? - ??? ?? ??? ?? ?????? ?????????. ??????????? ?? "???????????".

???????? - ??? - ?? ?????. ???? sad - ????? ?? ???????? smile...

"??? ???????????? guest ???????????????". ??? - ? ??????????. ? ??????? - ????????????? ?????? "?????".

'Avatar'                    =>    '???????????????? ???????????',

?????? ?????? - ?????? ??????????? ??? "?????". ?????? ???? - ???? ?? ????? ??? ??????????...

? ????? ???????. ??? ????????? ?????? ? ???? ?? ???????? ????? ?? ??????? ??????? ? ????????????? (FreeBSD 4.9 | MySQL 4.17). ??? ???? ??? ??????????:

// Determine what locale to use
switch (PHP_OS)
{
    case 'WINNT':
    case 'WIN32':
        $locale = 'russian';
        break;

    case 'FreeBSD':
    case 'NetBSD':
    case 'OpenBSD':
        $locale = 'ru_RU.CP1251';
        break;

    default:
        $locale = 'ru_RU';
        break;
}

// Attempt to set the locale (required for fulltext indexing to work correctly)
setlocale(LC_CTYPE, $locale);
Kennel wrote:

That should be in ru_common.php from the russian language packs. Isn't it there?

Yes. But I found russian language pack only for older forum version.

I use CP 1251 instead ISO8859-5 in original version.

I resolve the problem:


// Determine what locale to use
switch (PHP_OS)
{
    case 'WINNT':
    case 'WIN32':
        $locale = 'russian';
        break;

    case 'FreeBSD':
    case 'NetBSD':
    case 'OpenBSD':
        $locale = 'ru_RU.CP1251';
        break;

    default:
        $locale = 'ru_RU';
        break;
}

// Attempt to set the locale (required for fulltext indexing to work correctly)
setlocale(LC_CTYPE, $locale);

Can you fix this?

I set

'lang_encoding'            =>    'windows-1251',

in en_common.php and russian letters is not HTML encoded in output HTML source code.