Advertisement
Hardrockdesign

Javascripts THG

Aug 4th, 2015
2,105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. ----------------CAMBIOS DE NOMBRE 1 ---------------
  2.  
  3. $(function(){
  4. $("div.h3 a[href='/statistics']").text("Cambiar estadsticas por lo que quieras");
  5. $("div.estadisticas").each(function(){
  6. $(this).html($(this).html()
  7. .replace("Nuestros miembros han publicado", "Han sido publicados")
  8. .replace("La mayor cantidad de usuarios en línea fue", "El récord en línea fue")
  9. .replace("El último usuario registrado es", "Damos la bienvenida a"));
  10. });
  11. });
  12.  
  13. ----------------CAMBIOS DE NOMBRE 2 ---------------
  14.  
  15. $(function(){
  16. $("div.h3 a[href='/statistics']").text("Cambiar estadsticas por lo que quieras");
  17. $("div.texto-legend").each(function(){
  18. $(this).html($(this).html()
  19. .replace("Nuevos mensajes", "Novedad")
  20. .replace("No hay nuevos mensajes", "Estable")
  21. .replace("Foro cerrado", "Cerrado"));
  22. });
  23. });
  24.  
  25. ----------------CAMBIOS DE NOMBRE 3 ---------------
  26.  
  27. $(function(){
  28. $("div.h3 a[href='/statistics']").text("Cambiar estadsticas por lo que quieras");
  29. $("span.label").each(function(){
  30. $(this).html($(this).html()
  31. .replace(":", " "));
  32. });
  33. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement