Ver Mensaje Individual
  #3 (permalink)  
Antiguo 31/05/2012, 02:46
danneg
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Varios Idiomas para Inmobiliaria

también puedes hacerlo con json

Código Javascript:
Ver original
  1. var lang = 'es',
  2. text = {
  3.     'es' = { // Español
  4.         'title' = 'El título',
  5.         'content' = 'El gran contenido'
  6.     },
  7.     'en' = { // Inglés
  8.         'title' = 'The title',
  9.         'content' = 'the great content'
  10.     },
  11.     'fr' = { // Francés
  12.         'title' = 'Le titre',
  13.         'content' = 'Grande le contenu'
  14.     }
  15. };

Puedes usarlo así:

Código Javascript:
Ver original
  1. $('h1').text(text.lang.title);

Utilizar xml, es un poco arcaico.

Acá algo que hice con el primer método
http://ifsmexico.com/demo

Última edición por danneg; 31/05/2012 a las 02:51