diff --git a/locales/en-US/chrome/chatzilla.properties b/locales/en-US/chrome/chatzilla.properties --- a/locales/en-US/chrome/chatzilla.properties +++ b/locales/en-US/chrome/chatzilla.properties @@ -29,17 +29,17 @@ # # Note: the ChatZilla version and expected locale versions may not always be # the same. For example, if only non-locale changes have been made, the # expected locale version will stay the same. This is to make using # localisations between versions easier. # ### End of notes ### -locale.version = 0.9.90 +locale.version = 0.9.90.1 locale.error = You are using ChatZilla %1$S, which requires the locale version %2$S. The currently selected locale, %3$S, is version %4$S, and therefore there may be problems running ChatZilla.\n\nIt is strongly advised that you update or remove the ChatZilla locale in question. locale.authors = XXX REPLACE THIS VALUE WITH A SEMICOLON-SEPARATED LIST OF NAMES FOR YOUR LOCALIZATION TEAM XXX # Misc unknown= none= na= @@ -116,16 +116,17 @@ cmd.channel-motif.params = [ [ can be a URL to a .css file, or the shortcut "dark" or "light". If is a minus ('-') character, the motif will revert to the network motif. If is not provided, the current channel will be assumed. See the ChatZilla homepage at for more information on how to style ChatZilla. See also |motif|. cmd.channel-pref.params = [ []] cmd.channel-pref.help = Sets the value of the preference named to the value of on the current channel. If is not provided, the current value of will be displayed. If both and are omitted, all preferences will be displayed. If is a minus ('-') character, then the preference will revert back to its default value. cmd.clear-view.label = Cl&ear Tab cmd.clear-view.params = [] cmd.clear-view.help = Clear the current view, discarding *all* content. +cmd.clear-view.key = accel L cmd.client.help = Make the ``*client*'' view current. If the ``*client*'' view has been deleted, it will be recreated. cmd.cmd-docommand.params = cmd.cmd-docommand.help = cmd.cmd-undo.label = &Undo cmd.cmd-undo.key = accel Z diff --git a/xul/content/contents.rdf b/xul/content/contents.rdf --- a/xul/content/contents.rdf +++ b/xul/content/contents.rdf @@ -8,17 +8,17 @@ diff --git a/xul/content/static.js b/xul/content/static.js --- a/xul/content/static.js +++ b/xul/content/static.js @@ -1,19 +1,19 @@ /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -const __cz_version = "0.9.90"; +const __cz_version = "0.9.90.1"; const __cz_condition = "green"; const __cz_suffix = ""; const __cz_guid = "59c81df5-4b7a-477b-912d-4e0fdf64e5f2"; -const __cz_locale = "0.9.90"; +const __cz_locale = "0.9.90.1"; var warn; var ASSERT; var TEST; if (DEBUG) { _dd_pfx = "cz: "; @@ -2413,16 +2413,17 @@ function updateAppMotif(motifURL) if (!node) { node = document.createProcessingInstruction("xml-stylesheet", dataStr); document.insertBefore(node, document.firstChild); } else { node.data = dataStr; + document.insertBefore(node, node.nextSibling); } } catch (ex) { dd(formatException(ex)); var err = ex.name; // Mozilla 1.0 doesn't like document.insertBefore(..., // document.firstChild); though it has a prototype for it -