﻿/**
 * @project Praias de Alcobaça
 * @filename application.js
 * @version 2.0 (15/02/2010)
 * @creationdate 15/02/2010
 * @author 1001 Acessos - Telecomunicacoes e Informatica, Lda
 * @description Application object with common configurations.  
 */

 Ext.namespace('application'); 
 
 application = new function() {
 
	/**
	 * Site specific
	 */
	this.PAGE_TITLE_PT = "Paredes Da Vitória - Muito mais que uma praia";
	this.PAGE_TITLE_EN = "Paredes Da Vitória - More than a beach";
	this.PAGE_TITLE_ES = "Paredes Da Vitória - Mucho más que una playa";
	this.PAGE_TITLE_FR = "Paredes Da Vitória - Plus q'une plage";
	this.PAGE_TITLE_DE = "Paredes Da Vitória - Mehr als ein strand";
	this.PAGE_URL = "http://www.paredesdavitoria.com";
	this.PAGE_EMAIL_ADDRESS = "1001@acessos.pt";
	this.PAGE_EMAIL_SUBJECT = "Paredes Da Vitória.com | Pedido de Contacto";

	/**
	 * Site main
	 */
	this.LANG_PT = "Pt";
	this.LANG_EN = "En";
	this.LANG_ES = "Es";
	this.LANG_FR = "Fr";
	this.LANG_DE = "De";
	this.IMAGE_ROOT_FOLDER = "src/images/";
	this.FLASH_ROOT_FOLDER = "src/flash/";
	this.DEBUG_MODE = true;
	this.PAGE_SIZE = 6;
	this.GALLERY_PAGE_SIZE = 18;
	this.MAX_MENU_ITEMS = 9;
	this.MAX_RECORDS = 999999;
	
	this.HEADER_BANNER_PT = "header_pt.swf";
	this.HEADER_BANNER_EN = "header_en.swf";
	this.HEADER_BANNER_ES = "header_es.swf";
	this.HEADER_BANNER_FR = "header_fr.swf";
	this.HEADER_BANNER_DE = "header_de.swf";
	this.HEADER_BANNER_WIDTH = 673;
	this.HEADER_BANNER_HEIGHT = 130;
	
	this.ADVERTISE_BANNER_PT = "como_publicitar_pt.swf";
	this.ADVERTISE_BANNER_EN = "como_publicitar_en.swf";
	this.ADVERTISE_BANNER_ES = "como_publicitar_es.swf";
	this.ADVERTISE_BANNER_FR = "como_publicitar_fr.swf";
	this.ADVERTISE_BANNER_DE = "como_publicitar_de.swf";
	this.ADVERTISE_BANNER_WIDTH = 150;
	this.ADVERTISE_BANNER_HEIGHT = 30;

	/**
	 * Site labels
	 */
	this.HOME_PT = "Início";
	this.HOME_EN = "Home";
	this.HOME_ES = "Inicio";
	this.HOME_FR = "Accueil";
	this.HOME_DE = "Heim";
	
	this.CONTACT_US_PT = "Contactos";
	this.CONTACT_US_EN = "Contacts";
	this.CONTACT_US_ES = "Contactos";
	this.CONTACT_US_FR = "Contacts";
	this.CONTACT_US_DE = "Kontakte";
	
	this.BOOKMARKS_PT = "Favoritos";
	this.BOOKMARKS_EN = "Bookmarks";
	this.BOOKMARKS_ES = "Favoritos";
	this.BOOKMARKS_FR = "Signets";
	this.BOOKMARKS_DE = "Bookmarks";

	/**
	 * Site menu
	 */
	this.PT_LOADING_MENU = "A carregar menu...";
	this.EN_LOADING_MENU = "Loading menu...";
	this.ES_LOADING_MENU = "Cargando menu...";
	this.FR_LOADING_MENU = "Chargement de menu...";
	this.DE_LOADING_MENU = "Laden menu...";

	/**
	 * Site publicity banners
	 */
	this.PT_LOADING_BANNERS = "A carregar publicidade...";
	this.PT_NO_BANNERS = "Não existe publicidade.";
	
	this.EN_LOADING_BANNERS = "Loading publicity...";
	this.EN_NO_BANNERS = "No publicity to show.";
	
	this.ES_LOADING_BANNERS = "Cargando publicidad...";
	this.ES_NO_BANNERS = "No hay publicidad.";
	
	this.FR_LOADING_BANNERS = "Chargement de publicité...";
	this.FR_NO_BANNERS = "Il n'y a pas de publicité.";
	
	this.DE_LOADING_BANNERS = "Laden werbung...";
	this.DE_NO_BANNERS = "Ist nicht werbung.";

	/**
	 * Site footer
	 */
	this.PT_LOADING_FOOTER = "A carregar rodapé...";
	this.EN_LOADING_FOOTER = "Loading footer...";
	this.ES_LOADING_FOOTER = "Cargando pie de página...";
	this.FR_LOADING_FOOTER = "Chargement de pied de page...";
	this.DE_LOADING_FOOTER = "Laden fußzeile...";

	/**
	 * Site forms
	 */
	this.PT_CONTACT_FORM_CONTACT_US = "Contacte-nos";
	this.PT_CONTACT_FORM_CONTACT_MESSAGE = "Se tiver alguma dúvida ou questão que nos queira colocar, sinta-se à vontade para o fazer. Para tal basta preencher o seguinte formulário.";
	this.PT_CONTACT_FORM_ADVERTISE = "Como Publicitar";
	this.PT_CONTACT_FORM_ADVERTISE_MESSAGE = "Solicite a visita de um dos nossos comerciais, para lhe dar a conhecer todas as soluções publicitárias que temos para si.<br /><br />" + 
		"Rua Rainha Sta. Isabel, Nº 185<br />2445-2004 Pataias<br /><br />Telef: +351 244 586 100<br />Fax: +351 244 580 869<br />Email: 1001@acessos.pt<br />Site: www.1001acessos.pt<br /><br />" +
		"Poderá ainda entrar em contacto conosco através do seguinte formulário.";
	this.PT_CONTACT_FORM_TITLE = "Formulário de Contacto";
	this.PT_CONTACT_FORM_MANDATORY_FIELDS = "Campos de preenchimento obrigatório";
	this.PT_CONTACT_FORM_NAME = "Nome";
	this.PT_CONTACT_FORM_COMPANY = "Empresa";
	this.PT_CONTACT_FORM_WEBSITE = "Website";
	this.PT_CONTACT_FORM_ADDRESS = "Morada";
	this.PT_CONTACT_FORM_ZIPCODE = "Cód.Postal";
	this.PT_CONTACT_FORM_AREA = "Localidade";
	this.PT_CONTACT_FORM_PHONE = "Tel.";
	this.PT_CONTACT_FORM_FAX = "Fax";
	this.PT_CONTACT_FORM_EMAIL = "Email";
	this.PT_CONTACT_FORM_MESSAGE = "Mensagem";
	this.PT_CONTACT_FORM_SUBMIT_BTN = "Enviar";
	this.PT_SENDTOFRIEND_WINDOW_TITLE = "Envie esta página a um amigo";
	this.PT_SENDTOFRIEND_WINDOW_CLOSE = "Fechar janela";
	this.PT_SENDTOFRIEND_FROM = "O seu e-mail";
	this.PT_SENDTOFRIEND_TO = "Enviar ao e-mail";
	this.PT_SENDTOFRIEND_SENT_BY = "Enviado por";

	this.EN_CONTACT_FORM_CONTACT_US = "Contact Us";
	this.EN_CONTACT_FORM_CONTACT_MESSAGE = "If you have any doubt, feel free to ask us. All you have to do is fill up the form below.";
	this.EN_CONTACT_FORM_ADVERTISE = "How to Advertise";
	this.EN_CONTACT_FORM_ADVERTISE_MESSAGE = "Feel free to request a visit from one of our representants, to inform you about all the advertising solutions we have for you.<br /><br />" + 
		"Rua Rainha Sta. Isabel, Nº 185<br />2445-2004 Pataias<br /><br />Telef: +351 244 586 100<br />Fax: +351 244 580 869<br />Email: 1001@acessos.pt<br />Site: www.1001acessos.pt<br /><br />" +
		"You can also contact us using the form below.";
	this.EN_CONTACT_FORM_TITLE = "Contact Form";
	this.EN_CONTACT_FORM_MANDATORY_FIELDS = "Mandatory fields";
	this.EN_CONTACT_FORM_NAME = "Name";
	this.EN_CONTACT_FORM_COMPANY = "Company";
	this.EN_CONTACT_FORM_WEBSITE = "Website";
	this.EN_CONTACT_FORM_ADDRESS = "Address";
	this.EN_CONTACT_FORM_ZIPCODE = "Zip-code";
	this.EN_CONTACT_FORM_AREA = "Area";
	this.EN_CONTACT_FORM_PHONE = "Phone";
	this.EN_CONTACT_FORM_FAX = "Fax";
	this.EN_CONTACT_FORM_EMAIL = "Email";
	this.EN_CONTACT_FORM_MESSAGE = "Message";
	this.EN_CONTACT_FORM_SUBMIT_BTN = "Submit";
	this.EN_SENDTOFRIEND_WINDOW_TITLE = "Send this page to a friend";
	this.EN_SENDTOFRIEND_WINDOW_CLOSE = "Close window";
	this.EN_SENDTOFRIEND_FROM = "Your e-mail";
	this.EN_SENDTOFRIEND_TO = "Send to e-mail";
	this.EN_SENDTOFRIEND_SENT_BY = "Sent by";

	this.ES_CONTACT_FORM_CONTACT_US = "Contactenos";
	this.ES_CONTACT_FORM_CONTACT_MESSAGE = "Si tiene alguna duda o questión que nos quiera colocar, no dude en hacerlo. Para tal solo tiene de llenar el siguiente formulario.";
	this.ES_CONTACT_FORM_ADVERTISE = "Cómo Publicitar";
	this.ES_CONTACT_FORM_ADVERTISE_MESSAGE = "Solicite una visita de uno de nuestros comerciales, para dar a conocer todas las soluciones de publicidad que tenemos para usted.<br /><br />" + 
		"Rua Rainha Sta. Isabel, Nº 185<br />2445-2004 Pataias<br /><br />Telef: +351 244 586 100<br />Fax: +351 244 580 869<br />Email: 1001@acessos.pt<br />Site: www.1001acessos.pt<br /><br />" +
		"Usted también puede contactar con nosotros mediante el siguiente formulario.";
	this.ES_CONTACT_FORM_TITLE = "Formulario de Contacto";
	this.ES_CONTACT_FORM_MANDATORY_FIELDS = "Campos obligatorios";
	this.ES_CONTACT_FORM_NAME = "Nombre";
	this.ES_CONTACT_FORM_COMPANY = "Empresa";
	this.ES_CONTACT_FORM_WEBSITE = "Website";
	this.ES_CONTACT_FORM_ADDRESS = "Dirección";
	this.ES_CONTACT_FORM_ZIPCODE = "Cód.Postal";
	this.ES_CONTACT_FORM_AREA = "Comunidad";
	this.ES_CONTACT_FORM_PHONE = "Tel.";
	this.ES_CONTACT_FORM_FAX = "Fax";
	this.ES_CONTACT_FORM_EMAIL = "Email";
	this.ES_CONTACT_FORM_MESSAGE = "Mensaje";
	this.ES_CONTACT_FORM_SUBMIT_BTN = "Enviar";
	this.ES_SENDTOFRIEND_WINDOW_TITLE = "Envie esta página a un amigo";
	this.ES_SENDTOFRIEND_WINDOW_CLOSE = "Cerrar ventana";
	this.ES_SENDTOFRIEND_FROM = "Su e-mail";
	this.ES_SENDTOFRIEND_TO = "Enviar para el e-mail";
	this.ES_SENDTOFRIEND_SENT_BY = "Enviado por";

	this.FR_CONTACT_FORM_CONTACT_US = "Contactez-nous";
	this.FR_CONTACT_FORM_CONTACT_MESSAGE = "Si vous avez des questions ou des préoccupations s'il vous plaît mettre les choses en, n'hésitez pas à le faire. Il suffit de remplir le formulaire suivant.";
	this.FR_CONTACT_FORM_ADVERTISE = "Comment Publiciter";
	this.FR_CONTACT_FORM_ADVERTISE_MESSAGE = "Demander une visite d'un de nos représentants, de donner toutes les solutions de publicité que nous avons pour vous.<br /><br />" + 
		"Rua Rainha Sta. Isabel, Nº 185<br />2445-2004 Pataias<br /><br />Telef: +351 244 586 100<br />Fax: +351 244 580 869<br />Email: 1001@acessos.pt<br />Site: www.1001acessos.pt<br /><br />" +
		"Vous pouvez également nous contacter en utilisant le formulaire ci-dessous.";
	this.FR_CONTACT_FORM_TITLE = "Formulaire de contact";
	this.FR_CONTACT_FORM_MANDATORY_FIELDS = "Champs obligatoires";
	this.FR_CONTACT_FORM_NAME = "Nom";
	this.FR_CONTACT_FORM_COMPANY = "Entreprise";
	this.FR_CONTACT_FORM_WEBSITE = "Website";
	this.FR_CONTACT_FORM_ADDRESS = "Adresse";
	this.FR_CONTACT_FORM_ZIPCODE = "Code Postal";
	this.FR_CONTACT_FORM_AREA = "Emplacement";
	this.FR_CONTACT_FORM_PHONE = "Téléphone";
	this.FR_CONTACT_FORM_FAX = "Fax";
	this.FR_CONTACT_FORM_EMAIL = "Email";
	this.FR_CONTACT_FORM_MESSAGE = "Message";
	this.FR_CONTACT_FORM_SUBMIT_BTN = "Envoyer";
	this.FR_SENDTOFRIEND_WINDOW_TITLE = "Envoyer cette page à un ami";
	this.FR_SENDTOFRIEND_WINDOW_CLOSE = "Fermer fenêtre";
	this.FR_SENDTOFRIEND_FROM = "Son e-mail";
	this.FR_SENDTOFRIEND_TO = "Envoyer au e-mail";
	this.FR_SENDTOFRIEND_SENT_BY = "Envoyeé par";

	this.DE_CONTACT_FORM_CONTACT_US = "Kontakt";
	this.DE_CONTACT_FORM_CONTACT_MESSAGE = "Wenn sie fragen oder bedenken haben, bitte setzen, dass es, das gefühl frei, dies zu tun. Es ist genug, um das nachstehende formular auszufüllen.";
	this.DE_CONTACT_FORM_ADVERTISE = "Wie werben um";
	this.DE_CONTACT_FORM_ADVERTISE_MESSAGE = "Fordern sie ein besuch von einem unserer wirtschaft, zu geben, in dem alle werbe-Lösungen, die wir für sie.<br /><br />" + 
		"Rua Rainha Sta. Isabel, Nº 185<br />2445-2004 Pataias<br /><br />Telef: +351 244 586 100<br />Fax: +351 244 580 869<br />Email: 1001@acessos.pt<br />Site: www.1001acessos.pt<br /><br />" +
		"Sie können uns auch mit unten stehendem formular.";
	this.DE_CONTACT_FORM_TITLE = "Mailformular";
	this.DE_CONTACT_FORM_MANDATORY_FIELDS = "Pflichtfelder";
	this.DE_CONTACT_FORM_NAME = "Name";
	this.DE_CONTACT_FORM_COMPANY = "Firma";
	this.DE_CONTACT_FORM_WEBSITE = "Website";
	this.DE_CONTACT_FORM_ADDRESS = "Adresse";
	this.DE_CONTACT_FORM_ZIPCODE = "PLZ";
	this.DE_CONTACT_FORM_AREA = "Standort";
	this.DE_CONTACT_FORM_PHONE = "Telefon";
	this.DE_CONTACT_FORM_FAX = "Fax";
	this.DE_CONTACT_FORM_EMAIL = "Email";
	this.DE_CONTACT_FORM_MESSAGE = "Nachricht";
	this.DE_CONTACT_FORM_SUBMIT_BTN = "Senden";
	this.DE_SENDTOFRIEND_WINDOW_TITLE = "Senden sie diese seite einem freund";
	this.DE_SENDTOFRIEND_WINDOW_CLOSE = "Fenster schließen";
	this.DE_SENDTOFRIEND_FROM = "Seine e-mail";
	this.DE_SENDTOFRIEND_TO = "In den e-mail";
	this.DE_SENDTOFRIEND_SENT_BY = "Geschrieben von";

	/**
	 * Site gallery
	 */
	this.PT_GALLERY = "Galeria de Fotos";
	this.PT_GALLERY_PHOTOS = "Fotos";
	this.PT_LOADING_GALLERY = "A carregar galerias de fotos...";
	this.PT_NO_GALLERIES = "Não existem galerias.";
	this.PT_GALLERIES_ADD_TO_BOOKMARKS = "Adicione esta página aos seus favoritos";
	this.PT_GALLERY_ADD_TO_BOOKMARKS = "Adicione esta galeria aos seus favoritos";
	
	this.EN_GALLERY = "Photo Gallery";
	this.EN_GALLERY_PHOTOS = "Photos";
	this.EN_LOADING_GALLERY = "Loading photo galleries...";
	this.EN_NO_GALLERIES = "No galleries to show.";
	this.EN_GALLERIES_ADD_TO_BOOKMARKS = "Add this page to your favorites";	
	this.EN_GALLERY_ADD_TO_BOOKMARKS = "Add this gallery to your favorites";
	
	this.ES_GALLERY = "Galería de Fotos";
	this.ES_GALLERY_PHOTOS = "Fotos";
	this.ES_LOADING_GALLERY = "Cargando galerias de imagenes...";
	this.ES_NO_GALLERIES = "No hay galerias.";
	this.ES_GALLERIES_ADD_TO_BOOKMARKS = "Añada esta página a sus favoritos";
	this.ES_GALLERY_ADD_TO_BOOKMARKS = "Añada esta galería a sus favoritos";
	
	this.FR_GALLERY = "Galerie";
	this.FR_GALLERY_PHOTOS = "Photos";
	this.FR_LOADING_GALLERY = "Chargement de galeries...";
	this.FR_NO_GALLERIES = "Il n'y a pas de galeries.";
	this.FR_GALLERIES_ADD_TO_BOOKMARKS = "Ajoute cette page photos à vos favoris";
	this.FR_GALLERY_ADD_TO_BOOKMARKS = "Ajoute cette galerie photos à vos favoris";
	
	this.DE_GALLERY = "Fotogalerie";
	this.DE_GALLERY_PHOTOS = "Fotos";
	this.DE_LOADING_GALLERY = "Laden fotogalerie...";
	this.DE_NO_GALLERIES = "Da ist nich fotogalerie.";
	this.DE_GALLERIES_ADD_TO_BOOKMARKS = "Fügen sie diese seite zu ihren lesezeichen";
	this.DE_GALLERY_ADD_TO_BOOKMARKS = "Fügen sie diese galerie zu ihren favoriten hinzu";

	/**
	 * Site photos
	 */
	this.PT_PHOTOS = "Fotos da galeria";
	this.PT_LOADING_PHOTOS = "A carregar fotos...";
	this.PT_NO_PHOTOS = "Não existem fotos.";
	
	this.EN_PHOTOS = "Photos from the gallery";
	this.EN_LOADING_PHOTOS = "Loading photos...";
	this.EN_NO_PHOTOS = "No photos to show.";
	
	this.ES_PHOTOS = "Fotos de la galería";
	this.ES_LOADING_PHOTOS = "Cargando fotos...";
	this.ES_NO_PHOTOS = "No hay fotos.";
	
	this.FR_PHOTOS = "Photos de la galerie";
	this.FR_LOADING_PHOTOS = "Chargement de photos...";
	this.FR_NO_PHOTOS = "Il n'y a pas de photos.";
	
	this.DE_PHOTOS = "Fotos von fotogalerie";
	this.DE_LOADING_PHOTOS = "Laden fotos...";
	this.DE_NO_PHOTOS = "Da ist nich fotos.";
	
	/**
	 * Site hostages
	 */
	this.PT_HOSTAGE = "Onde Ficar";
	this.PT_HOSTAGE_REGISTER = "»&nbsp;Registe aqui o seu anúncio";
	this.PT_LOADING_HOSTAGES = "A carregar alojamentos...";
	this.PT_NO_HOSTAGES = "Não existem alojamentos.";
	this.PT_NO_HOSTAGE = "O alojamento indicado não existe.";
	this.PT_HOSTAGE_ADD_TO_BOOKMARKS = "Adicione esta página aos seus favoritos";
	this.PT_HOSTAGE_ADDRESS = "Morada";
	this.PT_HOSTAGE_PHONE = "Telefone";
	this.PT_HOSTAGE_EMAIL = "E-mail";
	this.PT_HOSTAGE_FAX = "Fax";
	this.PT_HOSTAGE_DESCRIPTION = "Descrição";
	this.PT_HOSTAGE_COMMENTS = "Observações";
	
	this.EN_HOSTAGE = "Accommodation";
	this.EN_HOSTAGE_REGISTER = "»&nbsp;Register your offer here";
	this.EN_LOADING_HOSTAGES = "Loading accommodation...";
	this.EN_NO_HOSTAGES = "No accommodations to show.";
	this.EN_NO_HOSTAGE = "The accomodation does not exist.";
	this.EN_HOSTAGE_ADD_TO_BOOKMARKS = "Add this page to your bookmarks";
	this.EN_HOSTAGE_ADDRESS = "Address";
	this.EN_HOSTAGE_PHONE = "Phone";
	this.EN_HOSTAGE_EMAIL = "E-mail";
	this.EN_HOSTAGE_FAX = "Fax";
	this.EN_HOSTAGE_DESCRIPTION = "Description";
	this.EN_HOSTAGE_COMMENTS = "Comments";
	
	this.ES_HOSTAGE = "Donde Quedar";
	this.ES_HOSTAGE_REGISTER = "»&nbsp;Registre su anuncio aquí";
	this.ES_LOADING_HOSTAGES = "Cargando alojamientos...";
	this.ES_NO_HOSTAGES = "No hay alojamientos.";
	this.ES_NO_HOSTAGE = "El alojamiento indicado no existe.";
	this.ES_HOSTAGE_ADD_TO_BOOKMARKS = "Añada esta página a sus favoritos";
	this.ES_HOSTAGE_ADDRESS = "Dirección";
	this.ES_HOSTAGE_PHONE = "Teléfono";
	this.ES_HOSTAGE_EMAIL = "E-mail";
	this.ES_HOSTAGE_FAX = "Fax";
	this.ES_HOSTAGE_DESCRIPTION = "Descrición";
	this.ES_HOSTAGE_COMMENTS = "Observaciones";
	
	this.FR_HOSTAGE = "Logement";
	this.FR_HOSTAGE_REGISTER = "»&nbsp;Enregistrez votre annonce ici";
	this.FR_LOADING_HOSTAGES = "Chargement de logements...";
	this.FR_NO_HOSTAGES = "Il n'y a pas de logements.";
	this.FR_NO_HOSTAGE = "Le logement n'existe pas.";
	this.FR_HOSTAGE_ADD_TO_BOOKMARKS = "Ajoute cette page à vos favoris";
	this.FR_HOSTAGE_ADDRESS = "Adresse";
	this.FR_HOSTAGE_PHONE = "Teléphone";
	this.FR_HOSTAGE_EMAIL = "E-mail";
	this.FR_HOSTAGE_FAX = "Fax";
	this.FR_HOSTAGE_DESCRIPTION = "Description";
	this.FR_HOSTAGE_COMMENTS = "Remarques";
	
	this.DE_HOSTAGE = "Unterkunft";
	this.DE_HOSTAGE_REGISTER = "»&nbsp;Registrieren sie ihre anzeige hier";
	this.DE_LOADING_HOSTAGES = "Laden unterkunft...";
	this.DE_NO_HOSTAGES = "Da ist nich unterkunft.";
	this.DE_NO_HOSTAGE = "Die unterkunft ist nicht vorhanden.";
	this.DE_HOSTAGE_ADD_TO_BOOKMARKS = "Fügen sie diese seite zu ihren lesezeichen";
	this.DE_HOSTAGE_ADDRESS = "Adresse";
	this.DE_HOSTAGE_PHONE = "Telefon";
	this.DE_HOSTAGE_EMAIL = "E-mail";
	this.DE_HOSTAGE_FAX = "Fax";
	this.DE_HOSTAGE_DESCRIPTION = "Beschreibung";
	this.DE_HOSTAGE_COMMENTS = "Kommentare";
	
	/**
	 * Site hostage photos
	 */
	this.PT_HOSTAGEPHOTOS = "Fotos:";
	this.PT_LOADING_HOSTAGEPHOTOS = "A carregar fotos...";
	this.PT_NO_HOSTAGEPHOTOS = "Não existem fotos.";
	
	this.EN_HOSTAGEPHOTOS = "Photos:";
	this.EN_LOADING_HOSTAGEPHOTOS = "Loading photos...";
	this.EN_NO_HOSTAGEPHOTOS = "No photos to show.";
	
	this.ES_HOSTAGEPHOTOS = "Fotos:";
	this.ES_LOADING_HOSTAGEPHOTOS = "Cargando fotos...";
	this.ES_NO_HOSTAGEPHOTOS = "No hay fotos.";
	
	this.FR_HOSTAGEPHOTOS = "Photos:";
	this.FR_LOADING_HOSTAGEPHOTOS = "Chargement de photos...";
	this.FR_NO_HOSTAGEPHOTOS = "Il n'y a pas de photos.";
	
	this.DE_HOSTAGEPHOTOS = "Fotos";
	this.DE_LOADING_HOSTAGEPHOTOS = "Laden fotos...";
	this.DE_NO_HOSTAGEPHOTOS = "Da ist nich fotos.";

	/**
	 * Site restaurants
	 */
	this.PT_RESTAURANTS = "Onde Comer";
	this.PT_RESTAURANTS_REGISTER = "»&nbsp;Registe aqui o seu restaurante";
	this.PT_LOADING_RESTAURANTS = "A carregar restaurantes...";
	this.PT_NO_RESTAURANTS = "Não existem restaurantes.";
	this.PT_NO_RESTAURANT = "O restaurante indicado não existe.";
	this.PT_RESTAURANTS_ADD_TO_BOOKMARKS = "Adicione esta página aos seus favoritos";
	this.PT_RESTAURANTS_ADDRESS = "Morada";
	this.PT_RESTAURANTS_PHONE = "Telefone";
	this.PT_RESTAURANTS_EMAIL = "E-mail";
	this.PT_RESTAURANTS_FAX = "Fax";
	this.PT_RESTAURANTS_DESCRIPTION = "Descrição";
	this.PT_RESTAURANTS_COMMENTS = "Observações";
	
	this.EN_RESTAURANTS = "Restaurants";
	this.EN_RESTAURANTS_REGISTER = "»&nbsp;Register your restaurant here";
	this.EN_LOADING_RESTAURANTS = "Loading restaurants...";
	this.EN_NO_RESTAURANTS = "No restaurants to show.";
	this.EN_NO_RESTAURANT = "The restaurant does not exist.";
	this.EN_RESTAURANTS_ADD_TO_BOOKMARKS = "Add this page to your bookmarks";
	this.EN_RESTAURANTS_ADDRESS = "Address";
	this.EN_RESTAURANTS_PHONE = "Phone";
	this.EN_RESTAURANTS_EMAIL = "E-mail";
	this.EN_RESTAURANTS_FAX = "Fax";
	this.EN_RESTAURANTS_DESCRIPTION = "Description";
	this.EN_RESTAURANTS_COMMENTS = "Comments";
	
	this.ES_RESTAURANTS = "Donde Comer";
	this.ES_RESTAURANTS_REGISTER = "»&nbsp;Registre su restaurante aquí";
	this.ES_LOADING_RESTAURANTS = "Cargando restaurantes...";
	this.ES_NO_RESTAURANTS = "No hay restaurantes.";
	this.ES_NO_RESTAURANT = "El restaurante indicado no existe.";
	this.ES_RESTAURANTS_ADD_TO_BOOKMARKS = "Añada esta página a sus favoritos";
	this.ES_RESTAURANTS_ADDRESS = "Dirección";
	this.ES_RESTAURANTS_PHONE = "Teléfono";
	this.ES_RESTAURANTS_EMAIL = "E-mail";
	this.ES_RESTAURANTS_FAX = "Fax";
	this.ES_RESTAURANTS_DESCRIPTION = "Descrición";
	this.ES_RESTAURANTS_COMMENTS = "Observaciones";
	
	this.FR_RESTAURANTS = "Oú manger";
	this.FR_RESTAURANTS_REGISTER = "»&nbsp;Enregistrez votre restaurant ici";
	this.FR_LOADING_RESTAURANTS = "Chargement de restaurants...";
	this.FR_NO_RESTAURANTS = "Il n'y a pas de restaurants.";
	this.FR_NO_RESTAURANT = "Le restaurant n'existe pas.";
	this.FR_RESTAURANTS_ADD_TO_BOOKMARKS = "Ajoute cette page à vos favoris";
	this.FR_RESTAURANTS_ADDRESS = "Adresse";
	this.FR_RESTAURANTS_PHONE = "Teléphone";
	this.FR_RESTAURANTS_EMAIL = "E-mail";
	this.FR_RESTAURANTS_FAX = "Fax";
	this.FR_RESTAURANTS_DESCRIPTION = "Description";
	this.FR_RESTAURANTS_COMMENTS = "Remarques";
	
	this.DE_RESTAURANTS = "Restaurants";
	this.DE_RESTAURANTS_REGISTER = "»&nbsp;Registrieren sie sich hier ihr restaurant";
	this.DE_LOADING_RESTAURANTS = "Laden restaurants...";
	this.DE_NO_RESTAURANTS = "Da ist nich restaurants.";
	this.DE_NO_RESTAURANT = "Das restaurant ist nicht vorhanden.";
	this.DE_RESTAURANTS_ADD_TO_BOOKMARKS = "Fügen sie diese seite zu ihren lesezeichen";
	this.DE_RESTAURANTS_ADDRESS = "Adresse";
	this.DE_RESTAURANTS_PHONE = "Telefon";
	this.DE_RESTAURANTS_EMAIL = "E-mail";
	this.DE_RESTAURANTS_FAX = "Fax";
	this.DE_RESTAURANTS_DESCRIPTION = "Beschreibung";
	this.DE_RESTAURANTS_COMMENTS = "Kommentare";

	/**
	 * Site restaurant photos
	 */
	this.PT_RESTAURANTPHOTOS = "Fotos:";
	this.PT_LOADING_RESTAURANTPHOTOS = "A carregar fotos...";
	this.PT_NO_RESTAURANTPHOTOS = "Não existem fotos.";
	
	this.EN_RESTAURANTPHOTOS = "Photos:";
	this.EN_LOADING_RESTAURANTPHOTOS = "Loading photos...";
	this.EN_NO_RESTAURANTPHOTOS = "No photos to show.";
	
	this.ES_RESTAURANTPHOTOS = "Fotos:";
	this.ES_LOADING_RESTAURANTPHOTOS = "Cargando fotos...";
	this.ES_NO_RESTAURANTPHOTOS = "No hay fotos.";
	
	this.FR_RESTAURANTPHOTOS = "Photos:";
	this.FR_LOADING_RESTAURANTPHOTOS = "Chargement de photos...";
	this.FR_NO_RESTAURANTPHOTOS = "Il n'y a pas de photos.";
	
	this.DE_RESTAURANTPHOTOS = "Fotos";
	this.DE_LOADING_RESTAURANTPHOTOS = "Laden fotos...";
	this.DE_NO_RESTAURANTPHOTOS = "Da ist nich fotos.";

	/**
	  * Admin common
	  */
	 this.NUM_ROWS_GRID_VERY_LOW = 10;
	 this.NUM_ROWS_GRID_LOW = 25;
	 this.NUM_ROWS_GRID_MIDDLE = 50;
	 this.NUM_ROWS_GRID_HIGH = 100;
	 this.NUM_ROWS_GRID_VERY_HIGH = 200;

	/**
	 * Admin login
	 */
	this.LOGIN_IMAGES_PATH = 'src/images/';
	this.LOGIN_WINDOW_LOGO = 'logo.png';
	this.LOGIN_BOTTOM_LOGO = 'logo_medium.png';

	/**
	 * Admin main
	 */
	this.MAIN_IMAGES_PATH = '../images/';
	this.MAIN_TOP_LEFT_LOGO = 'catalog.png';
	this.MAIN_TOP_RIGHT_LOGO = 'logo_small.png';
	this.MAIN_MAX_NUM_TABS = 10;
	 
	/**
	 * Admin paths
	 */
	this.IMAGES_PATH = '../images/';
	this.BANNERS_PATH = '../flash/';
	
 }
 
