// JavaScript Document
/**
 * See if the global namespace object 'goog' exists. If it doesn't, create it.
 */
var goog = goog || {};

/**
 * See if the object goog.web exists. If it doesn't create it.
 */
goog.web = goog.web || {};

goog.web.host = 'sketchup.google';

// Name, domain, language, selected
goog.web.languages = [
  ['Deutsch', '.com', 'de', false],
  ['English (UK)', '.com', 'en_uk', false],
  ['English (US)', '.com', 'en', false],
  ['español (España)', '.com', 'es', false],
  ['Français', '.com', 'fr', false],
  ['Italiano', '.com', 'it', false],
  ['Nederlands', '.com', 'nl', false],
  ['Português (Brasil)', '.com', 'pt-BR', false],
  ['中文 (简体)', '.com', 'zh-CN', false],
  ['中文 (繁體)', '.com', 'zh-TW', false]
];
