-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhelp.php
60 lines (58 loc) · 1.71 KB
/
help.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
require_once("../inc/spoken_languages.inc");
require_once("../inc/help_db.inc");
require_once("../inc/translation.inc");
require_once("../inc/util.inc");
page_head(tra("Live help via Skype or email"));
text_start();
echo "
<p>
<p>
".tra("BOINC Live Help lets you get one-on-one help from an experienced BOINC user who can answer questions about BOINC, help you install BOINC, and troubleshoot problems.")."
</ul>
<p>
".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 %3 download and install it now %4. When you're finished, return to this page.",
"<a href=\"https://www.skype.com\">",
"</a>",
"<a href=\"https://www.skype.com\">",
"</a>"
)."
<li> ".tra("using Skype chat")."
</ul>
<p>
".tra("Volunteers speaking many languages are available. Please select a language (number of helpers is shown):"),"
<p>
";
$langs = get_languages2();
$i = 0;
foreach ($langs as $lang=>$n) {
$lang_enc = urlencode($lang);
if ($i) {
echo " · ";
}
$i++;
echo "<a href=\"help_lang.php?lang=$lang_enc\"><b>$lang</b></a> ($n)";
}
echo "
<h2>".tra("Be a Help Volunteer")."</h2>
<p>
".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!"),
"<a href=http://boinc.berkeley.edu/wiki/Help_volunteer>",
"</a>"
)."
<p>
".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>"
)."
";
text_end();
page_tail();
?>