 // Copyright 2009 Google Inc.  All Rights Reserved.

/**
 * @fileoverview Javascript file to store localized strings  and data for custom
 * YouTube players.
 * This file is always used in conjunction with
 * google.com/press/media_room/js/youtube_custom_players.js.
 * @author dave carlsson
 */

/**
 * The text string of the first player to load on the page if none other
 * is indicated.
 * This should be a key in press.Media.moviePlayers.
 * @type {string}
 */
press.Media.defaultPlayerName = 'adsense';

/**
 * Key/value pairs to associate shortened names with a full display name to
 * be listed on the HTML page.
 * Keys match with keys from press.Media.moviePlayers.
 * Values match with text on the HTML page that needs to be matched.
 * @type {Object}
 */
press.Media.moviePlayerNames = {'adsense': 'AdSense', 'adwords': 'AdWords',
                                'busqueda':
                                'Busqueda de Google y Herramientas' +
                                'para Webmasters',
                                'chrome': 'Chrome',
                                'apps':
                                'Google Apps: Potentes aplicaciones y' +
                                'servicios',
                                'privacidad': 'Privacidad'};

/**
 * Key/value pairs to associate a custom YouTube player name with the unique
 * string value from the player embed code.
 * @type {Object}
 */
press.Media.moviePlayers = {'adsense':
                            'vjVQa1PpcFOc6GnBYUp-YcqDgm03W830WGxBd0tDvY0',
                            'adwords':
                            'vjVQa1PpcFOc6GnBYUp-Yf70d7zEM1K3lDZFBYNVqVk',
                            'busqueda':
                            'vjVQa1PpcFOc6GnBYUp-YXNefzBNfKH6ZLTrTHags2s',
                            'chrome':
                            'vjVQa1PpcFOc6GnBYUp-Yd0ic0CuJkSp9ckqKry_9vI',
                            'apps':
                            'vjVQa1PpcFOc6GnBYUp-YaCDx7d-2ajskelJfgHRAvc',
                            'privacidad':
                            'vjVQa1PpcFOc6GnBYUp-YceZ8H7rOEGySeQNDl46yNo'};

