Ir para conteúdo
Fórum Script Brasil
  • 0

Data E Hora


Guest TiagoMaker

Pergunta

Guest TiagoMaker

Dae pessoal! Estou com uma dúvida que nunca tinha me ocorrido, e agora está me tirando do sério. Lá vai:

Estou usando um script de um chat baixado aqui mesmo no scriptbrasil, alterei tudo, traduzi tudo, menos 1 coisa: os meses do ano.

Pode parecer bobagem, mas vasculhei em todos arquivos e em nenhum consta os meses do ano em inglês para que eu possa traduzir. Tem um arquivo chamado CONFIG.PHP que tem o seguinte comando: $time_format='d M, H:i';

mas é só isso, em nenhum lugar fala dos meses.

Tem algum comando que eu possa usar para que eu diga o nome dos meses? Obrigado.

Link para o comentário
Compartilhar em outros sites

5 respostass a esta questão

Posts Recomendados

  • 0
Guest TiagoMaker

Desculpe cara, mas não sei se isso serve, pois o arquivo que guarda as informações não é o mesmo que vai exibí-las> Código Abaixo:

<?php 
error_reporting(1);
if(function_exists('import_request_variables')){import_request_variables("gpc");$REMOTE_ADDR=$HTTP_SERVER_VARS['REMOTE_ADDR'];$PHP_SELF=$HTTP_SERVER_VARS['PHP_SELF'];}
error_reporting(8);

$version='2.2 [2005-04-08]';             // version number
$time_format='d M, H:i';                 // set time format using proper attributes. details: http://www.php.net/date
$default_zone=-3;                        // default timezone, 0=GMT
$refresh_rate='6:12:24:48:60';           // refresh rates (sec, 5 entries)
$default_rate=12;                        // default refresh rate (sec) [an Apache server with default settings closes the socket in 15 sec. With refresh rate 12 sec the socket will be reused.]
$password_field='text';                  // ['text' or 'password'] - 'password' would display ****
$no_cache=0;                             // use random numbers in the address bar to prevent caching (1=yes, 0=no)
$check_space=0;                          // check free disk space before writing to a file (1=yes, 0=no, might cause problems on some servers)
$gzip=1;                                 // use gzip compression (1=yes, 0=no) [try to turn this option on (1). if it works, the size of an ordinary chat page is less than 1kB]
$clear_chat=0;                           // clear each chatroom when the last user leaves (1=yes, 0=no)
$secret_word='blabla';                   // secret word (whatever you wish, but it is ESSENTIAL 'blabla' to be changed!)

include 'incl/lang-en.inc';              // set a language file
$skin_dir='s-blue';                      // skin directory (no trailing slashes)
$data_dir='data';                        // data directory (no trailing slashes)

$bad_words=array('fuck','bitch', 'p***', 'vadia', 'fude', 'fode', 'foda', 'c*', 'p****', 'c******', 'vadia', 'puto' );        // words which are not acceptable

$users_per_room=50;                      // users per room
$chat_lines=10;                          // lines in chat
$keep_lines=150;                         // history lines
$username_length=10;                     // set greater values (at least current*5) for Chinese, Japanese etc
$words_length=80;                        // -||- -||-
$entry_length=200;                       // -||- -||-
$full_length=600;                        // entry length + additional html tags (smilies etc)

$room_name='Dinastia - Chat!';           // name of the room


/*---------------------------------------------------------------------------*/

include "$skin_dir/skin.inc";
set_magic_quotes_runtime(0);

$log_file=$data_dir.'/room';
$usr_file=$data_dir.'/user';
$timestamp=time();
$random=mt_rand(1,999999);

function time_to_run(){$time=microtime();$time=explode(" ",$time);return $time[1]+$time[0];}$start_time=time_to_run();
$row_bg='a';function change_row_color(){global $row_bg;if($row_bg=='a'){$row_bg='b';}else{$row_bg='a';}}
function check_space(){$s=true;global $check_space;if(function_exists('disk_free_space')&&$check_space==1){$a=disk_free_space("/");if(is_int($a)&&$a<204800){$s=false;}}return $s;}
function show_pic($que,$a){$que=explode("|",$que);if(isset($que[0])&&isset($que[1])&&isset($que[2])&&isset($que[3])){global $skin_dir;print "<img src=\"$skin_dir/$que[0]\" width=\"$que[1]\" height=\"$que[2]\" border=\"0\" alt=\"$que[3]\" ";if(isset($que[4])&&strlen($que[4])>4){print "onmouseover=\"this.src='$skin_dir/$que[4]'\" onmouseout=\"this.src='$skin_dir/$que[0]'\"";}if(isset($a)&&strlen($a)>3){print " $a";}if(isset($que[5])&&strlen($que[5])>4){print " $que[5]";}print " />";}else{$que=implode(":",$que);print $que;}}if(!is_file('info.php')||filesize('info.php')!=1392){die('?');}
function open_file($que,$a){$fd=fopen($que,"r") or die('..');$fs=fread($fd,filesize($que));fclose($fd);if($a!=0){$fs=explode("\n",$fs);}return $fs;}
function save_file($que,$a,$o){if(check_space()){$a=trim($a);$a=str_replace("\n\n","\n",$a);if($a==''){$a=' ';}$m=0;do{$fd=fopen($que,"w") or die($o);$fout=fwrite($fd,$a);fclose($fd);$m++;}while(filesize($que)<1&&$m<5);}}
function clean_entry($que){$que=trim($que);$que=stripslashes($que);$que=str_replace("<","",$que);$que=str_replace(">","",$que);$que=str_replace("\r\n","",$que);$que=str_replace("\r","",$que);$que=str_replace("\n","",$que);$que=str_replace(":|:","",$que);return $que;}
function check_user(){global $name,$xpas,$secret_word;if(md5($name.$secret_word)!=$xpas){die("</head><body onload=\"parent.location='index.php?name=0'\"></body></html>");}}
function show_time($s){global $time_format,$time_offset;return gmdate($time_format,$s+$time_offset*3600);}
function refresh_online($n,$s){global $data_dir,$timestamp,$refresh_rate,$usr_file;$x=explode(':',$refresh_rate);$y=$x[count($x)-1];$y+=10;$j=0;$online=array();$fs=open_file($usr_file,1);for($i=0;$i<count($fs);$i++){if(isset($fs[$i])&&strlen($fs[$i])>9){$row=explode(":|:",$fs[$i]);settype($row[1],"integer");if(strtolower($n)!=strtolower($row[0])&&($timestamp-$row[1])<$y){$online[$j]=$fs[$i];$j++;}}}if($s!=0){$sf=implode("\n",$online);save_file($usr_file,$sf,0);}return $online;}
function remove_bad_words($w){global $bad_words;for($i=0;$i<count($bad_words);$i++){$w=eregi_replace($bad_words[$i],'***',$w);}return $w;}

if(isset($time_offset)){$time_offset=(int)$time_offset;}elseif(isset($blabtime)){$time_offset=(int)$blabtime;}else{$time_offset=$default_zone;}
$local_time=gmdate('H:i',time()+$time_offset*3600);

if(!is_writeable($log_file)){save_file($log_file,'','CHMOD /data to 777!');}
if(!is_writeable($usr_file)){save_file($usr_file,'','CHMOD /data to 777!');}

if(isset($HTTP_SERVER_VARS['HTTP_USER_AGENT'])){$browser=$HTTP_SERVER_VARS['HTTP_USER_AGENT'];}else{$browser='';}

if(stristr($browser,'msie')&&!stristr($browser,'opera')){
if(function_exists('ob_gzhandler')&&$gzip==1&&(stristr($PHP_SELF,'chat')||stristr($PHP_SELF,'admin')||stristr($PHP_SELF,'history'))){ob_start("ob_gzhandler");}
else{
if(!stristr($PHP_SELF,'smilies')&&!stristr($PHP_SELF,'top')&&!stristr($PHP_SELF,'bottom')){
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");}}}

else{
if(function_exists('ob_gzhandler')&&$gzip==1){ob_start("ob_gzhandler");}
if(!stristr($PHP_SELF,'smilies')&&!stristr($PHP_SELF,'top')&&!stristr($PHP_SELF,'bottom')){
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");}}
?>

Link para o comentário
Compartilhar em outros sites

Participe da discussão

Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.

Visitante
Responder esta pergunta...

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emoticons são permitidos.

×   Seu link foi incorporado automaticamente.   Exibir como um link em vez disso

×   Seu conteúdo anterior foi restaurado.   Limpar Editor

×   Você não pode colar imagens diretamente. Carregar ou inserir imagens do URL.



  • Estatísticas dos Fóruns

    • Tópicos
      152,3k
    • Posts
      652,4k
×
×
  • Criar Novo...