From: Lo?c C. <lo...@us...> - 2001-04-10 16:59:08
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv8429/chat Modified Files: exit.php3 handle_input.php3 help_popup.php3 input.php3 loader.php3 messages_low.php3 profile_del.php3 profile_edit.php3 profile_reg.php3 tutorial_popup.php3 users.php3 users_low.php3 users_popup.php3 users_popup_low.php3 whois_popup.php3 Log Message: The name of translations have been changed Index: exit.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/exit.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** exit.php3 2001/04/10 14:19:47 1.6 --- exit.php3 2001/04/10 16:58:34 1.7 *************** *** 60,64 **** * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); --- 60,64 ---- * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); Index: handle_input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/handle_input.php3,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** handle_input.php3 2001/04/10 14:19:47 1.8 --- handle_input.php3 2001/04/10 16:58:34 1.9 *************** *** 69,73 **** * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); $latin1 = (L_CHARSET == 'iso-8859-1'); --- 69,73 ---- * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); $latin1 = (L_CHARSET == 'iso-8859-1'); Index: help_popup.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/help_popup.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** help_popup.php3 2001/04/04 17:47:47 1.2 --- help_popup.php3 2001/04/10 16:58:34 1.3 *************** *** 45,49 **** * Defines the language to be used */ ! if (!file_exists('./localization/' . $lang . '/localized.chat.' . C_EXTENSION)) { ?> --- 45,49 ---- * Defines the language to be used */ ! if (!file_exists('./localization/' . $lang . '/chat.loc')) { ?> *************** *** 58,62 **** exit(); } ! require('./localization/' . $lang . '/localized.chat.' . C_EXTENSION); /** --- 58,62 ---- exit(); } ! require('./localization/' . $lang . '/chat.loc'); /** Index: input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/input.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** input.php3 2001/04/10 14:19:47 1.9 --- input.php3 2001/04/10 16:58:34 1.10 *************** *** 69,73 **** * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); $latin1 = (L_CHARSET == 'iso-8859-1'); --- 69,73 ---- * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); $latin1 = (L_CHARSET == 'iso-8859-1'); Index: loader.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/loader.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** loader.php3 2001/04/10 14:19:47 1.5 --- loader.php3 2001/04/10 16:58:34 1.6 *************** *** 64,68 **** * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; --- 64,68 ---- * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; Index: messages_low.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/messages_low.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** messages_low.php3 2001/04/10 14:19:47 1.4 --- messages_low.php3 2001/04/10 16:58:34 1.5 *************** *** 60,64 **** * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; --- 60,64 ---- * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; Index: profile_del.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_del.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** profile_del.php3 2001/04/10 14:19:47 1.2 --- profile_del.php3 2001/04/10 16:58:34 1.3 *************** *** 70,74 **** */ require('./localization/languages.lib.' . C_EXTENSION); ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); --- 70,74 ---- */ require('./localization/languages.lib.' . C_EXTENSION); ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); Index: profile_edit.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_edit.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** profile_edit.php3 2001/04/10 14:19:47 1.2 --- profile_edit.php3 2001/04/10 16:58:34 1.3 *************** *** 80,84 **** */ require('./localization/languages.lib.' . C_EXTENSION); ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); --- 80,84 ---- */ require('./localization/languages.lib.' . C_EXTENSION); ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); Index: profile_reg.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_reg.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** profile_reg.php3 2001/04/10 14:19:47 1.2 --- profile_reg.php3 2001/04/10 16:58:34 1.3 *************** *** 80,84 **** */ require('./localization/languages.lib.' . C_EXTENSION); ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); --- 80,84 ---- */ require('./localization/languages.lib.' . C_EXTENSION); ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); Index: tutorial_popup.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/tutorial_popup.php3,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** tutorial_popup.php3 2001/04/03 20:17:40 1.1 --- tutorial_popup.php3 2001/04/10 16:58:34 1.2 *************** *** 46,50 **** */ if (empty($lang) ! || !file_exists('./localization/' . $lang . '/localized.tutorial.' . C_EXTENSION)) { $lang = ''; --- 46,50 ---- */ if (empty($lang) ! || !file_exists('./localization/' . $lang . '/tutorial.loc')) { $lang = ''; *************** *** 55,58 **** * Gets the tutorial */ ! require('./localization/'. $lang .'/localized.tutorial.' . C_EXTENSION); ?> --- 55,58 ---- * Gets the tutorial */ ! require('./localization/'. $lang .'/tutorial.loc'); ?> Index: users.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** users.php3 2001/04/10 14:19:47 1.9 --- users.php3 2001/04/10 16:58:34 1.10 *************** *** 57,61 **** * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; --- 57,61 ---- * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; Index: users_low.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users_low.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** users_low.php3 2001/04/10 14:19:47 1.5 --- users_low.php3 2001/04/10 16:58:34 1.6 *************** *** 58,62 **** * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; --- 58,62 ---- * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; Index: users_popup.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users_popup.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** users_popup.php3 2001/04/10 14:19:47 1.4 --- users_popup.php3 2001/04/10 16:58:34 1.5 *************** *** 63,67 **** { if (empty($lang) ! || !file_exists('./localization/' . $lang . '/localized.chat.' . C_EXTENSION)) { $dbSessionVars['lang'] = ''; --- 63,67 ---- { if (empty($lang) ! || !file_exists('./localization/' . $lang . '/chat.loc')) { $dbSessionVars['lang'] = ''; *************** *** 73,77 **** } } ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; --- 73,77 ---- } } ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; Index: users_popup_low.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users_popup_low.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** users_popup_low.php3 2001/04/10 14:19:47 1.4 --- users_popup_low.php3 2001/04/10 16:58:34 1.5 *************** *** 64,68 **** { if (empty($lang) ! || !file_exists('./localization/' . $lang . '/localized.chat.' . C_EXTENSION)) { $dbSessionVars['lang'] = ''; --- 64,68 ---- { if (empty($lang) ! || !file_exists('./localization/' . $lang . '/chat.loc')) { $dbSessionVars['lang'] = ''; *************** *** 74,78 **** } } ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; --- 74,78 ---- } } ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); $textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'; Index: whois_popup.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/whois_popup.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** whois_popup.php3 2001/04/10 14:19:47 1.4 --- whois_popup.php3 2001/04/10 16:58:34 1.5 *************** *** 62,66 **** * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/localized.chat.' . C_EXTENSION); /** --- 62,66 ---- * Defines the language to be used */ ! require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); /** |