/*----------------------------------------------------------------------------- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is Fever Framework code. The Initial Developer of the Original Code is Romain Ecarnot. Portions created by Initial Developer are Copyright (C) 2006 the Initial Developer. All Rights Reserved. Contributor(s): Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -----------------------------------------------------------------------------*/ import fever.app.local.LocalisationEvent; import fever.core.Resources; /** * Localisation properties for {@link fvaswing.components.FvCalculator} * component. * * @author Romain Ecarnot */ class fvaswing.components.calculator.FvCalculatorResources extends Resources { //------------------------------------------------------------------------- // Private properties //------------------------------------------------------------------------- private static var _instance : FvCalculatorResources; //------------------------------------------------------------------------- // Public Properties //------------------------------------------------------------------------- public var title : String; public var backspace : String; public var sqrt : String; public var menu : String; public var copy : String; public var classic : String; public var scientific : String; //------------------------------------------------------------------------- // Public API //------------------------------------------------------------------------- /** * Returns {@link FvCalculatorResources} instance. * *
Singleton design */ public static function getInstance() : FvCalculatorResources { if( !_instance ) _instance = new FvCalculatorResources(); return _instance; } /** * Triggered when Localisation language change. */ public function onLocalisationUpdate( event : LocalisationEvent ) : Void { title = getTranslation( 'title' ); backspace = getTranslation( 'backspace' ); sqrt = getTranslation( 'sqrt' ); menu = getTranslation( 'menu' ); copy = getTranslation( 'copy' ); classic = getTranslation( 'classic' ); scientific = getTranslation( 'scientific' ); } //------------------------------------------------------------------------- // Private implementation //------------------------------------------------------------------------- /** * Constructor. */ private function FvCalculatorResources() { super( 'fvaswing:calculator' ); } private function _initDefault() : Void { title = 'Calculator'; backspace = 'backspace'; sqrt = 'sqrt'; menu = 'Options'; copy = 'Copy to clipboard'; classic = 'Classic view'; scientific = 'Scientist view'; } }