Со временем планируется собрать скрипты, изменяющие каждое название или слово на форуме.
Спасибо за помощь Lazary (сейчас Lazary)
1. Форум, Участники.....
<script>
<!--
indexof="Forums"
str = document.getElementById("navindex").innerHTML
pos = str.indexOf("Форум")
document.getElementById("navindex").innerHTML=str.substring(0,pos)+indexof+str.substring(pos+5,str.length-1)
-->
</script>
Для изменения слова Участники
<script>
<!--
userof="Users"
str = document.getElementById("navuserlist").innerHTML
if( (pos=str.indexOf("Участники")) != -1 )
document.getElementById("navuserlist").innerHTML=str.substring(0,pos)+userof+str.substring(pos+9,str.length-1)
-->
</script>
Для изменения слова Правила
<script>
<!--
pravilof="Rules"
str = document.getElementById("navrules").innerHTML
pos = str.indexOf("Правила")
document.getElementById("navrules").innerHTML=str.substring(0,pos)+pravilof+str.substring(pos+14,str.length-1)
-->
</script>
Для изменения слова Поиск
<script>
<!--
findof="Search"
str = document.getElementById("navsearch").innerHTML
pos = str.indexOf("Поиск")
document.getElementById("navsearch").innerHTML=str.substring(0,pos)+findof+str.substring(pos+5,str.length-1)
-->
</script>
Для изменения слова Профиль
<script>
<!--
faseof="Profile"
str = document.getElementById("navprofile").innerHTML
pos = str.indexOf("Профиль")
document.getElementById("navprofile").innerHTML=str.substring(0,pos)+faseof+str.substring(pos+14,str.length-1)
-->
</script>
Для изменения слова Сообщения
<script>
<!--
pismaof="Messages"
str = document.getElementById("navpm").innerHTML
pos = str.indexOf("Сообщения")
document.getElementById("navpm").innerHTML=str.substring(0,pos)+pismaof+str.substring(pos+9,str.length-1)
-->
</script>
Для изменения слова Администрирование
<script>
<!--
godof="Administration"
str = document.getElementById("navadmin").innerHTML
pos = str.indexOf("Администрирование")
document.getElementById("navadmin").innerHTML=str.substring(0,pos)+godof+str.substring(pos+17,str.length-1)
-->
</script>
Для изменения слова Выход
<script>
<!--
valiof="Log Out"
str = document.getElementById("navlogout").innerHTML
pos = str.indexOf("Выход")
document.getElementById("navlogout").innerHTML=str.substring(0,pos)+valiof+str.substring(pos+5,str.length-1)
-->
</script>
Для изменения слова Вход
<script>
<!--
vxodiof="Log In"
str = document.getElementById("navlogin").innerHTML
pos = str.indexOf("Войти")
document.getElementById("navlogin").innerHTML=str.substring(0,pos)+vxodiof+str.substring(pos+5,str.length-1)
-->
</script>
Для изменения слова Регистрация
<script>
<!--
regof="Registrationp"
str = document.getElementById("navregister").innerHTML
pos = str.indexOf("Регистрация")
document.getElementById("navregister").innerHTML=str.substring(0,pos)+regof+str.substring(pos+18,str.length-1)
-->
</script>
2. Новые сообщения, Активные темы....
<script type="text/javascript">
li=document.getElementsByTagName("li")
f=0
while(li[++f]){
s=li[f].innerHTML
if((p=s.indexOf("Новые сообщения")) != -1) li[f].innerHTML=s.substring(0,p)+"New messages"+s.substring(p+15)
else if((p=s.indexOf("Активные темы")) != -1) li[f].innerHTML=s.substring(0,p)+"Active Topics"+s.substring(p+13)
else if((p=s.indexOf("Сообщения без ответов")) != -1) li[f].innerHTML=s.substring(0,p)+"Messages unanswered"+s.substring(p+21)
else if((p=s.indexOf("Мои сообщения")) != -1) li[f].innerHTML=s.substring(0,p)+"My messages"+s.substring(p+13)
else if((p=s.indexOf("Подписка")) != -1) li[f].innerHTML=s.substring(0,p)+"Subscription"+s.substring(p+8)
else if((p=s.indexOf("Все прочитано")) != -1) li[f].innerHTML=s.substring(0,p)+"All reads"+s.substring(p+13)
}
</script>
3. Объявление.
<script type="text/javascript">
li=document.getElementsByTagName("span")
f=0
while(li[++f]){
s=li[f].innerHTML
if((p=s.indexOf("Объявление")) != -1) li[f].innerHTML=s.substring(0,p)+"Announcement"+s.substring(p+10)
}
</script>
4. Тем, Сообщений, Последнее сообщение
<script type="text/javascript">
li=document.getElementsByTagName("th")
f=0
while(li[++f]){
s=li[f].innerHTML
if((p=s.indexOf("Тем")) != -1) li[f].innerHTML=s.substring(0,p)+"Topics"+s.substring(p+3)
else if((p=s.indexOf("Сообщений")) != -1) li[f].innerHTML=s.substring(0,p)+"Posts"+s.substring(p+9)
else if((p=s.indexOf("Последнее сообщение")) != -1) li[f].innerHTML=s.substring(0,p)+"Last Post"+s.substring(p+19)
}
</script>
Дополнение: Привет, ..... Ваш последний визит
<script>
visit="Your last visit"
str = document.getElementById("pun-status").innerHTML
if( (pos=str.indexOf("Ваш последний визит")) != -1 )
document.getElementById("pun-status").innerHTML=str.substring(0,pos)+visit+str.substring(pos+19,str.length-1)
greet="Hello, "
str = document.getElementById("pun-status").innerHTML
pos = str.indexOf("Привет")
document.getElementById("pun-status").innerHTML=str.substring(0,pos)+greet+str.substring(pos+8,str.length-1)
</script>