// Copyright 2009 Google Inc.  All Rights Reserved.

/**
 * @fileoverview Javascript file to store localized strings for picasa album
 *     feed.
 * Dependencies:
 *     This file is always used in conjunction with
 *     http://www.google.com/press/media_room/js/picasa_feed.js.
 * This file is used for en_US.
 *
 * @author dcarlsson@google.com (dave carlsson)
 */

/**
 * Global variables for strings that reference image size.
 * These are used when creating links to different sized images in Picasa.
 * These are required for each use of the picasa_feed.js file.
 * @const
 * @type {string}
 */
var PHOTO_TEXT_SMALL = 'small photo';
var PHOTO_TEXT_LARGE = 'large photo';
var PHOTO_TEXT_FULL_SIZE = 'full size photo';

/**
 * Text used to display a "loading" message on the HTML page while feed
 * data is being rendered.
 * @const
 * @type {string}
 */
var LOADING_TEXT = 'Loading';
