/*
 Copyright (c) 2008, Red Universal de Marketing y Bookings Online, S.A. (Rumbo) All rights reserved.
 version: 0.8.0b
 */

rmb.seo.namespaces.createNamespace('rmb.seo.barras.Localization');


(function(){

    var l = rmb.seo.barras.Localization;
    
    //Locale information (overriden if existing)
    l.locale = 'pt-PT';
    l.language = 'pt';
    l.culture = 'PT';
    
    //Creation of the label namespace
    if (typeof l.label == 'undefined' || !l.label) {
        l.label = {};
    }
	
	l.label.errorAjax = 'Se ha producido un error en la carga del Ajax';
	l.label.mensajeFlotanteParte1 = 'O preço do voo '
	l.label.mensajeFlotanteParte2 = ' é de ';
	l.label.mensajeFlotanteParte3 = '\u20AC';
	
	l.label.sinPrecios = 'Neste momento não podemos mostrar preços para este mês, visto que nenhum do nossos usuários pesquisou este trajecto recentemente. Por favor, realize a pesquisa directamente através do buscador.';
	
	l.month = function(mes)
	{
		 var month = new Array(12);
        month = new Array(12);
        month[0]="Janeiro";
        month[1]="Fevereiro";
        month[2]="Março";
        month[3]="Abril";
        month[4]="Maio";
        month[5]="Junho";
        month[6]="Julho";
        month[7]="Agosto";
        month[8]="Setembro";
        month[9]="Outubro";
        month[10]="Novembro";
        month[11]="Dezembro";
		
		return month[mes];
	}
       
    l.label.vuelos = 'Voos';
	l.label.vuelosDesde = 'Voos desde ';
	l.label.a = ' para ';
    
})();

