[Phpfreechat-svn] SF.net SVN: phpfreechat: [968] trunk
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-02-19 10:24:47
|
Revision: 968 http://svn.sourceforge.net/phpfreechat/?rev=968&view=rev Author: kerphi Date: 2007-02-19 02:24:46 -0800 (Mon, 19 Feb 2007) Log Message: ----------- Translate the DHTML prompt labels Modified Paths: -------------- trunk/data/public/js/pfcprompt.js trunk/i18n/ar_LB/main.php trunk/i18n/ba_BA/main.php trunk/i18n/bg_BG/main.php trunk/i18n/bn_BD/main.php trunk/i18n/da_DK/main.php trunk/i18n/de_DE-formal/main.php trunk/i18n/de_DE-informal/main.php trunk/i18n/el_GR/main.php trunk/i18n/en_US/main.php trunk/i18n/eo/main.php trunk/i18n/es_ES/main.php trunk/i18n/fr_FR/main.php trunk/i18n/hu_HU/main.php trunk/i18n/hy_AM/main.php trunk/i18n/id_ID/main.php trunk/i18n/it_IT/main.php trunk/i18n/ja_JP/main.php trunk/i18n/ko_KR/main.php trunk/i18n/nb_NO/main.php trunk/i18n/nl_NL/main.php trunk/i18n/pl_PL/main.php trunk/i18n/pt_BR/main.php trunk/i18n/pt_PT/main.php trunk/i18n/ru_RU/main.php trunk/i18n/sr_CS/main.php trunk/i18n/sv_SE/main.php trunk/i18n/tr_TR/main.php trunk/i18n/uk_RO/main.php trunk/i18n/uk_UA/main.php trunk/i18n/zh_CN/main.php trunk/i18n/zh_TW/main.php trunk/src/phpfreechat.class.php trunk/themes/default/style.css.php Modified: trunk/data/public/js/pfcprompt.js =================================================================== --- trunk/data/public/js/pfcprompt.js 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/data/public/js/pfcprompt.js 2007-02-19 10:24:46 UTC (rev 968) @@ -29,7 +29,7 @@ this.box.style.display = 'none'; var div = document.createElement('h2'); - div.appendChild(document.createTextNode('Input Required')); + div.appendChild(document.createTextNode(pfc.res.getLabel('Input Required'))); this.box.appendChild(div); this.prompt_title = document.createElement('p'); @@ -50,20 +50,20 @@ var br = document.createElement('br'); form.appendChild(br); - var submit = document.createElement('input'); - submit.id = 'pfc_promptbox_submit'; - submit.type = 'submit'; - submit.value = 'OK'; - form.appendChild(submit); - var cancel = document.createElement('input'); cancel.id = 'pfc_promptbox_cancel'; cancel.type = 'button'; - cancel.value = 'Cancel'; + cancel.value = pfc.res.getLabel('Cancel'); cancel.pfc_prompt = this; cancel.onclick = function(evt) { return this.pfc_prompt._doSubmit(true); }; form.appendChild(cancel); + var submit = document.createElement('input'); + submit.id = 'pfc_promptbox_submit'; + submit.type = 'submit'; + submit.value = pfc.res.getLabel('OK'); + form.appendChild(submit); + this.container.appendChild(this.box); } }, Modified: trunk/i18n/ar_LB/main.php =================================================================== --- trunk/i18n/ar_LB/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/ar_LB/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -372,4 +372,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/ba_BA/main.php =================================================================== --- trunk/i18n/ba_BA/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/ba_BA/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -375,4 +375,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/bg_BG/main.php =================================================================== --- trunk/i18n/bg_BG/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/bg_BG/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -370,4 +370,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/bn_BD/main.php =================================================================== --- trunk/i18n/bn_BD/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/bn_BD/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -376,4 +376,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/da_DK/main.php =================================================================== --- trunk/i18n/da_DK/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/da_DK/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -372,4 +372,13 @@ // line 140 in chat.js.tpl.php $GLOBALS["i18n"]["In Internet Explorer versions earlier than 7.0, Ajax is implemented using ActiveX. Please enable ActiveX in your browser security settings or upgrade to a browser with Ajax support and try again."] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/de_DE-formal/main.php =================================================================== --- trunk/i18n/de_DE-formal/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/de_DE-formal/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -377,4 +377,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/de_DE-informal/main.php =================================================================== --- trunk/i18n/de_DE-informal/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/de_DE-informal/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -378,4 +378,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/el_GR/main.php =================================================================== --- trunk/i18n/el_GR/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/el_GR/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -371,4 +371,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/en_US/main.php =================================================================== --- trunk/i18n/en_US/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/en_US/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -372,4 +372,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = "Ping"; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = "Input Required"; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = "OK"; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = "Cancel"; + ?> \ No newline at end of file Modified: trunk/i18n/eo/main.php =================================================================== --- trunk/i18n/eo/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/eo/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -375,4 +375,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/es_ES/main.php =================================================================== --- trunk/i18n/es_ES/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/es_ES/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -373,4 +373,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/fr_FR/main.php =================================================================== --- trunk/i18n/fr_FR/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/fr_FR/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -372,4 +372,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = "Temps de réponse"; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = "Veuillez répondre"; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = "OK"; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = "Annuler"; + ?> \ No newline at end of file Modified: trunk/i18n/hu_HU/main.php =================================================================== --- trunk/i18n/hu_HU/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/hu_HU/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -373,4 +373,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/hy_AM/main.php =================================================================== --- trunk/i18n/hy_AM/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/hy_AM/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -375,4 +375,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/id_ID/main.php =================================================================== --- trunk/i18n/id_ID/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/id_ID/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -375,4 +375,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/it_IT/main.php =================================================================== --- trunk/i18n/it_IT/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/it_IT/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -375,4 +375,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/ja_JP/main.php =================================================================== --- trunk/i18n/ja_JP/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/ja_JP/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -373,4 +373,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/ko_KR/main.php =================================================================== --- trunk/i18n/ko_KR/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/ko_KR/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -373,4 +373,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/nb_NO/main.php =================================================================== --- trunk/i18n/nb_NO/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/nb_NO/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -372,4 +372,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/nl_NL/main.php =================================================================== --- trunk/i18n/nl_NL/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/nl_NL/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -373,4 +373,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/pl_PL/main.php =================================================================== --- trunk/i18n/pl_PL/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/pl_PL/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -373,4 +373,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/pt_BR/main.php =================================================================== --- trunk/i18n/pt_BR/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/pt_BR/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -377,4 +377,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/pt_PT/main.php =================================================================== --- trunk/i18n/pt_PT/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/pt_PT/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -373,4 +373,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/ru_RU/main.php =================================================================== --- trunk/i18n/ru_RU/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/ru_RU/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -377,4 +377,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/sr_CS/main.php =================================================================== --- trunk/i18n/sr_CS/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/sr_CS/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -375,4 +375,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/sv_SE/main.php =================================================================== --- trunk/i18n/sv_SE/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/sv_SE/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -380,4 +380,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/tr_TR/main.php =================================================================== --- trunk/i18n/tr_TR/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/tr_TR/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -372,4 +372,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/uk_RO/main.php =================================================================== --- trunk/i18n/uk_RO/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/uk_RO/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -372,4 +372,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/uk_UA/main.php =================================================================== --- trunk/i18n/uk_UA/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/uk_UA/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -372,4 +372,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/zh_CN/main.php =================================================================== --- trunk/i18n/zh_CN/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/zh_CN/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -376,4 +376,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/zh_TW/main.php =================================================================== --- trunk/i18n/zh_TW/main.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/i18n/zh_TW/main.php 2007-02-19 10:24:46 UTC (rev 968) @@ -372,4 +372,13 @@ // line 47 in chat.html.tpl.php $GLOBALS["i18n"]["Ping"] = ""; +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = ""; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = ""; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = ""; + ?> \ No newline at end of file Modified: trunk/src/phpfreechat.class.php =================================================================== --- trunk/src/phpfreechat.class.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/src/phpfreechat.class.php 2007-02-19 10:24:46 UTC (rev 968) @@ -473,7 +473,10 @@ "Close", // _pfc "Choosen nickname is not allowed", // _pfc "Enable sound notifications", // _pfc - "Disable sound notifications", // _pfc + "Disable sound notifications", // _pfc + "Input Required", // _pfc + "OK", // _pfc + "Cancel", // _pfc ); foreach($labels_to_load as $l) { Modified: trunk/themes/default/style.css.php =================================================================== --- trunk/themes/default/style.css.php 2007-02-19 09:29:16 UTC (rev 967) +++ trunk/themes/default/style.css.php 2007-02-19 10:24:46 UTC (rev 968) @@ -399,7 +399,6 @@ /* The DHTML prompt */ div#pfc_promptbox { - /* color:red;*/ border: 2px solid #000; background-color: #DDD; } @@ -427,8 +426,8 @@ width: 100%; } input#pfc_promptbox_submit { - margin: 5px 10px 0 0; + margin: 0; } input#pfc_promptbox_cancel { - margin: 0; + margin: 5px 10px 0 0; } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |