The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
I'm writting a mod for vbb but i don't know how to use $vbphrase in javascript
Can anyone help me? Sorry for my bad english Thanks anyone help me please ![]() |
#2
|
|||
|
|||
![]()
can anyone help me please
![]() |
#3
|
||||
|
||||
![]()
You can look at my Live Feedback system templates for some hints.
![]() |
#4
|
|||
|
|||
![]() Code:
<script type="text/javascript"> var lfsr_username_available = '$vbphrase[lfsr_username_available]'; var lfsr_username_not_available = '$vbphrase[lfsr_username_not_available]'; var lfsr_username_invalid_censored = '$vbphrase[lfsr_username_invalid_censored]'; var lfsr_username_invalid_semicolon = '$vbphrase[lfsr_username_invalid_semicolon]'; var lfsr_username_too_short = '$vbphrase[lfsr_username_too_short]'; var lfsr_username_choose = '$vbphrase[lfsr_username_choose]'; var lfsr_match_fill_both = '$vbphrase[lfsr_match_fill_both]'; var lfsr_match_false = '$vbphrase[lfsr_match_false]'; var lfsr_match_true = '$vbphrase[lfsr_match_true]'; var lfsr_username_member_false = '$vbphrase[lfsr_username_member_false]'; var lfsr_username_member_true = '$vbphrase[lfsr_username_member_true]'; var lfsr_email_invalid = '$vbphrase[lfsr_email_invalid]'; var lfsr_email_banned = '$vbphrase[lfsr_email_banned]'; var lfsr_email_exists = '$vbphrase[lfsr_email_exists]'; var lfsr_email_valid = '$vbphrase[lfsr_email_valid]'; var lfsr_email_reject = '$vbphrase[lfsr_email_reject]'; var lfsr_email_no_responce = '$vbphrase[lfsr_email_no_responce]'; var lfsr_email_no_connect = '$vbphrase[lfsr_email_no_connect]'; var lfsr_email_validation_progress = '$email_progress_phrase'; var lfsr_email_submit_valid = '$vbphrase[lfsr_email_submit_valid]'; var lfsr_email_default = '$email_default_phrase'; </script> <script language="JavaScript" type="text/javascript" src="clientscript/live_feedback_system.js"></script> i just wanna put $vbphrase in js file like this Code:
function validatemessage(messagetext, subjecttext, minchars) { if (is_kon || is_saf || is_webtv) { // ignore less-than-capable browsers return true; } else if (subjecttext.length < 1) { // subject not specified alert(vbphrase['must_enter_subject']); return false; } else { var stripped = PHP.trim(stripcode(messagetext, false, ignorequotechars)); if (stripped.length < minchars) { // minimum message length not met alert(construct_phrase(vbphrase['message_too_short'], minchars)); return false; } else { // everything seems ok return true; } } } ![]() ![]() |
#5
|
||||
|
||||
![]()
You can't. You have to do it like I suggested and then use the var in your javascript.
|
#6
|
|||
|
|||
![]()
but why vbulletin can ?
![]() ![]() anyone help me please |
#7
|
|||
|
|||
![]()
help me please man
|
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|