/******************************************************************************
**	Wording Template for Kyte Show Browser Badges
**
**	This template is used for the customization or I18N of Kyte Show Browser
**	Badges. With help of a template all or only particular strings can be 
**	customized to your needs.
**
**	When assigning a wording template please use a unique name for the wording
**	object (e.g. "KyteBadgeInSwissDialect"). This way conflicts on pages with
**	several badges are avoided.
**
**	Please refer to the user guide for further help and documentation:
**	http://apps.kyte.com/badges/show_browser/badge_creator/kyteBadgeCreator_guide.pdf
**
**/

/**
**	Rename "KyteBadgeWordingTemplate" below to a unique name that describes
**	your wording best. This name must be passed as parameter for badges where
**	the wording is to be applied. 
**/
if (typeof OpsaBadgeWordingTemplate == "undefined") {
  function OpsaBadgeWordingTemplate() {
  	
 		/*
 		*	Strings for the pagination
 		*/
		this.paging_index = "P&aacute;gina [x] / [y]";	// Current page displayed in badge: [x]= placeholder for current page, [y]= total pages, default "Page [x] / [y]"
		this.paging_prev = "<";								// Previous link, default "<"
		this.paging_next = ">";								// Next link, default ">"
		this.paging_first = "<< ";						// First link, default "<< "
		this.paging_last = " >>";							// Last link, default " >>"		
		
		/*
		*	Strings for the filters
		*/
		this.filter_playlist = "Todos";							// Playlist filter, default "Playlist"
		this.filter_just_produced = "Recientes";		// Newest shows, default "Just Produced"
		this.filter_most_watched = "M&aacute;s vistos";			// Most watched, default "Most Watched"
		this.filter_best_rated = "Mejor calificados";					// Best rated, default "Best Rated"
		this.filter_most_commented = "M&aacute;s comentados";	// Most commented, default "Most Commented"
		this.search_go_button = "Buscar";										// Text for submit button in search function, default "Go"
		this.search_find = "Buscar:";											// Label for search function, default "Find:"
	
		/*
		*	Strings for presentation of meta data. Strings may contain HTML SPAN tags
		*	for improved highlighting options through CSS
		*/
		this.meta_tag_by = "<span>Por:</span> [x]";							// Produced by: [x]= producer name, default "<span>By:</span> [x]"
		this.meta_tag_views = "<span>Vistas:</span> [x]";				// Number of views: [x]= views, default "<span>Views:</span> [x]"
		this.meta_tag_description = "[x]";											// Description: [x]= show description, default "[x]"
		this.meta_tag_time = "[x]";															// Time of production: [x]= time/date (see below for more options), default "[x]"
		this.meta_tag_duration = "<span>Duraci&oacute;n:</span> [x]:[y]";// Length of video: [x]= minutes, [y]=seconds, default "<span>Duration:</span> [x]:[y]"
		this.meta_tag_rating = "<span>Rating:</span> [x]";			// Rating of show: [x]= rate 
		this.meta_tag_title = "[x]";														// Title: [x]= show title, default "[x]"
		this.meta_tag_comments = "<span>Comentarios:</span> [x]";	// Number of comments: [x]= number of comments
	 
	 	/*
	 	*	Presentation of production time, date and time (show meta data)
	 	*/
		this.date_format_day = "[x] [y]";		// Format of day in date: [x]= month, [y]= day, [z]= year, default "[x] [y]"
		this.date_format_time = "[x]:[y]";	// Format of time in date: [x]= minutes, [y]= hours. Drop declaration to use default US am/pm format of time, default "[x]:[y]"
		this.date_format = "[x] [y]";				// Format of whole date: [x]= day (formatted by date_format_day), [y]= time (formatted by date_format_time), default "[x] [y]"
		// Definition of months to be applied in production time, numeric or string
		this.month_1 = "Ene";								// January, default "Jan"
		this.month_2 = "Feb";								// February, default "Feb"
		this.month_3 = "Marzo";								// March, default "Mar"
		this.month_4 = "Abril";								// April, default "Apr"
		this.month_5 = "Mayo";								// May, default "May"
		this.month_6 = "Junio";								// June, default "Jun"
		this.month_7 = "Julio";								// July, default "Jul"
		this.month_8 = "Agosto";								// August, default "Aug"
		this.month_9 = "Sept";								// September, default "Sep"
		this.month_10 = "Oct";							// October, default "Oct"
		this.month_11 = "Nov";							// November, default "Nov"
		this.month_12 = "Dic";							// December, default "Dec"

		/*
		*	Presentation of production time, time since production (show meta data)
		*/
		this.time_ago = "hace [x] [y]";	// Format of time since production: [x]= counter for units, [y]= time unit (e.g. minutes(s)), default [x] [y] ago
		this.just_now = "Ahora";			// If time < 1 minute, default "Just now"
		this.minute = "minuto";					// minute, default "minute"
		this.minutes = "minutos";				// minutes, default "minutes"
		this.hour = "hora";							// hour, default "hour"
		this.hours = "horas";						// hours, default "hours"
		this.day = "da"; 								// day, default "day"
		this.days = "d&iacute;as";							// days, default "days"
		this.week ="semana";							// week, default "week"
		this.weeks = "semanas";						// weeks, default "weeks"
		this.month = "mes";						// month, default "month"
		this.months = "meses";					// months, default "months"
		this.year = "aņo";							// year, default "year"
		this.years = "aņos";						// years, default "years"

		/*
		* Info and error message strings
		*/
		this.info_no_matches = "No se encontro video!";	// Message when search returned no results, default "No matching shows!"
		this.info_no_shows = "No hay videos disponibles!";		// Message when no shows were returned by Kyte, default "No shows available!"
		this.error = "(Error [x]: [y])";							// Error message: [x]= numeric error code, [y]= error message
		
  }
}