Home
last modified time | relevance | path

Searched refs:_pfc (Results 1 – 25 of 35) sorted by relevance

12

/plugin/freechat/phpfreechat/themes/default/
H A Dchat.html.tpl.php35 value="<?php echo _pfc("Send"); ?>"
109 alt="<?php echo _pfc("Bold"); ?>"
110 title="<?php echo _pfc("Bold"); ?>"
117 alt="<?php echo _pfc("Italics"); ?>"
118 title="<?php echo _pfc("Italics"); ?>"
133 alt="<?php echo _pfc("Delete"); ?>"
134 title="<?php echo _pfc("Delete"); ?>"
142 alt="<?php echo _pfc("Mail"); ?>"
143 title="<?php echo _pfc("Mail"); ?>"
150 alt="<?php echo _pfc("Color"); ?>"
[all …]
H A Dchat.js.tpl.php5 <?php echo _pfc("Chat loading ..."); ?><br style="margin:0"/><?php echo _pfc("Please wait"); ?>
104_pfc("%s appears to be either disabled or unsupported by your browser.","JavaScript"); ?> <?php ec…
112_pfc("%s appears to be either disabled or unsupported by your browser.","Cookies"); ?> <?php echo
114_pfc("%s appears to be either disabled or unsupported by your browser.","Ajax"); ?> <?php echo _pf…
116_pfc("%s appears to be either disabled or unsupported by your browser.","ActiveX"); ?> <?php echo
/plugin/freechat/phpfreechat/data/public/themes/default/
H A Dchat.html.tpl.php35 value="<?php echo _pfc("Send"); ?>"
109 alt="<?php echo _pfc("Bold"); ?>"
110 title="<?php echo _pfc("Bold"); ?>"
117 alt="<?php echo _pfc("Italics"); ?>"
118 title="<?php echo _pfc("Italics"); ?>"
133 alt="<?php echo _pfc("Delete"); ?>"
134 title="<?php echo _pfc("Delete"); ?>"
142 alt="<?php echo _pfc("Mail"); ?>"
143 title="<?php echo _pfc("Mail"); ?>"
150 alt="<?php echo _pfc("Color"); ?>"
[all …]
H A Dchat.js.tpl.php5 <?php echo _pfc("Chat loading ..."); ?><br style="margin:0"/><?php echo _pfc("Please wait"); ?>
104_pfc("%s appears to be either disabled or unsupported by your browser.","JavaScript"); ?> <?php ec…
112_pfc("%s appears to be either disabled or unsupported by your browser.","Cookies"); ?> <?php echo
114_pfc("%s appears to be either disabled or unsupported by your browser.","Ajax"); ?> <?php echo _pf…
116_pfc("%s appears to be either disabled or unsupported by your browser.","ActiveX"); ?> <?php echo
/plugin/freechat/phpfreechat/src/
H A Dpfcglobalconfig.class.php731 $this->channels = array(_pfc("My room"));
785 $this->errors[] = _pfc("'%s' parameter must be an array", $ap);
797 $this->errors[] = _pfc("'%s' parameter must be a boolean", $bp);
806 if ($this->title == "") $this->title = _pfc("My Chat");
815 $err_preg_x = _pfc("You need %s", "PHP 3 >= 3.0.9 or PHP 4 or PHP 5");
819 $err_ob_x = _pfc("You need %s", "PHP 4 or PHP 5");
823 $f_list["get_object_vars"] = _pfc("You need %s", "PHP 4 or PHP 5");
863 $this->errors[] = _pfc("%s doesn't exist", $filetotest);
883 $this->errors[] = _pfc("%s doesn't exist", $filetotest);
905 $this->errors[] = _pfc("cannot copy %s in %s",
[all …]
H A Dpfctools.php221 $errors[] = _pfc("%s doesn't exist: %s", $func, $err);
231 $errors[] = _pfc("%s directory must be specified", ($name!="" ? $name : $dir));
234 $this->errors[] = _pfc("%s must be a directory",$dir);
238 $errors[] = _pfc("%s can't be created",$dir);
240 $errors[] = _pfc("%s is not writeable",$dir);
242 $errors[] = _pfc("%s is not readable",$dir);
255 $errors[] = _pfc("%s is not a file", $src_file);
257 $errors[] = _pfc("%s is not readable", $src_file);
259 $errors[] = _pfc("%s is not a directory", $src_dir);
273 $errors[] = _pfc("%s is not a directory", $src_dir);
[all …]
H A Dpfccontainerinterface.class.php50 { die(_pfc("%s must be implemented", get_class($this)."::".__FUNCTION__)); }
62 { die(_pfc("%s must be implemented", get_class($this)."::".__FUNCTION__)); }
73 { die(_pfc("%s must be implemented", get_class($this)."::".__FUNCTION__)); }
H A Dpfctemplate.class.php48 die(_pfc("%s template could not be found", $this->tpl_filename));
/plugin/freechat/phpfreechat/src/commands/
H A Dbanlist.class.php24 $msg .= "<p>"._pfc("The banished user list is:")."</p>";
37 $msg .= "<p>("._pfc("Empty").")</p>";
39 $msg .= "<p>"._pfc("'/unban {nickname}' will unban the user identified by {nickname}")."</p>";
40 $msg .= "<p>"._pfc("'/unban all' will unban all the users on this channel")."</p>";
H A Dunban.class.php30 $cmdp["param"] = _pfc("Missing parameter");
39 $msg = "<p>"._pfc("Nobody has been unbanished")."</p>";
54 $msg = "<p>"._pfc("%s has been unbanished", $nick)."</p>";
61 $msg = "<p>"._pfc("%s users have been unbanished", $nb)."</p>";
H A Dkick.class.php23 if ($reason == '') $reason = _pfc("no reason");
34 $cmdp["param"] = _pfc("Missing parameter");
50 …$cmdp['params'][] = _pfc("kicked from %s by %s - reason: %s", $channame, $sender, $reason); // rea…
H A Dinvite.class.php61 $cmdp["param"] = _pfc("Missing parameter");
73 $cmdp["param"] = _pfc("You must join %s to invite users in this channel",$channeltarget);
89 $cmdp["param"] = _pfc("%s was invited by %s",$nicktoinvite,$sender);
H A Dban.class.php23 if ($reason == '') $reason = _pfc("no reason");
36 $cmdp["param"] = _pfc("Missing parameter");
48 $cmdp["param"] = _pfc("%s banished from %s by %s", $nick, $channame, $sender);
H A Dsend.class.php40 $cmdp["param"] = _pfc("Can't send the message, %s is offline", $pvnick);
50 if ($text == "") $errors["pfc_words"] = _pfc("Text cannot be empty");
51 if ($nick == "") $errors["pfc_handle"] = _pfc("Please enter your nickname");
H A Didentify.class.php64 $msg .= _pfc("Succesfully identified");
69 $msg .= _pfc("Identification failure");
H A Dleave.class.php31 $cmdp["param"] = _pfc("Missing parameter");
100 $cmdp["param"] = _pfc("%s quit",$u->getNickname());
137 $cmdp["param"] = _pfc("Missing parameter");
H A Djoin.class.php27 $cmdp["param"] = _pfc("Missing parameter");
49 $cmdp["param"] = _pfc("%s joins %s",$u->getNickname(), $channame);
H A Dnick.class.php25 $cmdp["param"] = _pfc("Missing parameter");
53 $cmdp["param"] = _pfc("%s changes his nickname to %s",$oldnick,$newnick);
H A Dredirect.class.php23 $cmdp["param"] = _pfc("Missing parameter");
H A Ddeop.class.php19 $cmdp["param"] = _pfc("Missing parameter");
H A Dme.class.php25 $cmdp["param"] = _pfc("Missing parameter");
H A Dasknick.class.php33 $msg = _pfc("Please enter your nickname");
/plugin/freechat/phpfreechat/src/proxies/
H A Dauth.class.php52 $cmdp["param"] = _pfc("Your must be connected to send a message");
68 …$xml_reponse->script("alert('".addslashes(_pfc("You are not allowed to run '%s' command", $this->n…
89 $msg = _pfc("Can't join %s because you are banished", $param);
99 $msg = _pfc("Can't join %s because the channels list is restricted", $param);
H A Dnoflood.class.php75 $msg = _pfc("Please don't post so many message, flood is not tolerated");
83 … $cmdp["params"][2] .=_pfc("kicked from %s by %s", $u->channels[$recipientid]["name"], "noflood");
/plugin/freechat/phpfreechat/src/containers/
H A Dmysql.class.php103 $errors[] = _pfc("Mysql container: connect error");
118 $errors[] = _pfc("Mysql container: create database error '%s'",mysql_error($db));
137 $errors[] = _pfc("Mysql container: create table error '%s'",mysql_error($db));

12