2006-12-01 00:38:36 +00:00
< ? php
require_once ( " docutil.php " );
require_once ( " spoken_languages.php " );
require_once ( " help_db.php " );
2009-01-26 23:52:27 +00:00
require_once ( " ../html/inc/translation.inc " );
2006-12-01 00:38:36 +00:00
2015-08-23 04:28:48 +00:00
page_head ( tra ( " Live help via Skype or email " ));
2006-12-01 00:38:36 +00:00
echo "
< p >
2015-08-23 04:28:48 +00:00
" .tra( " BOINC Live Help lets get one - on - one help from an experienced BOINC user , who can answer questions about BOINC , help you install and use BOINC , and troubleshoot problems . " ). "
2006-12-01 00:38:36 +00:00
</ ul >
< p >
2015-08-23 04:28:48 +00:00
" .tra( " You can communicate with a helper " ). "
< ul >
< li > " .tra( " by email " ). "
< li >
" .tra( "
by voice , using % 1 Skype % 2 , a free Internet - based telephone system . If you don 't already have Skype, you can %3download and install it now%4. When you' re finished , return to this page . " ,
2009-01-26 23:52:27 +00:00
" <a href= \" http://www.skype.com \" > " ,
" </a> " ,
" <a href= \" http://www.skype.com \" > " ,
" </a> "
) . "
2015-08-23 04:28:48 +00:00
< li > " .tra( " using Skype chat " ). "
</ ul >
2006-12-01 00:38:36 +00:00
< p >
2015-08-23 04:28:48 +00:00
" .tra( " Volunteers speaking many languages are available . Please select a language ( number of helpers is shown ) : " ), "
2006-12-04 19:00:37 +00:00
< p >
2006-12-01 00:38:36 +00:00
" ;
2015-08-23 04:28:48 +00:00
$langs = get_languages2 ();
$i = 0 ;
foreach ( $langs as $lang => $n ) {
2006-12-01 00:38:36 +00:00
$lang_enc = urlencode ( $lang );
2015-08-23 04:28:48 +00:00
if ( $i ) {
2010-01-06 06:01:23 +00:00
echo " · " ;
2006-12-04 19:00:37 +00:00
}
2015-08-23 04:28:48 +00:00
$i ++ ;
echo " <a href= \" help_lang.php?lang= $lang_enc\ " >< b > $lang </ b ></ a > ( $n ) " ;
2006-12-01 00:38:36 +00:00
}
echo "
2009-01-26 23:52:27 +00:00
< h2 > " .tra( " Be a Help Volunteer " ). " </ h2 >
2006-12-01 00:38:36 +00:00
< p >
2009-01-26 23:52:27 +00:00
" .sprintf(
tra ( " If you're an experienced BOINC user, we encourage you to %sbecome a Help Volunteer%s. It's a great way to help the cause of scientific research and volunteer computing - and it's fun! " ),
2009-08-30 05:22:53 +00:00
" <a href=http://boinc.berkeley.edu/wiki/Help_volunteer> " ,
2009-01-26 23:52:27 +00:00
" </a> "
) . "
2006-12-01 00:38:36 +00:00
< p >
2009-01-26 23:52:27 +00:00
" .sprintf(
tra ( " If you're already a Help Volunteer: to edit your settings, %sclick here%s. " ),
" <a href= \" help_vol_edit.php?edit_login=1 \" > " ,
" </a> "
) . "
2006-12-01 00:38:36 +00:00
" ;
page_tail ();
?>