dustin@799: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz dustin@799: * Software engineering by Intevation GmbH dustin@799: * dustin@799: * This file is Free Software under the GNU GPL (v>=3) dustin@799: * and comes with ABSOLUTELY NO WARRANTY! Check out dustin@799: * the documentation coming with IMIS-Labordaten-Application for details. dustin@799: */ dustin@799: dustin@799: /** dustin@799: * Store for Status-Werte dustin@799: * TODO i18n dustin@799: */ dustin@799: Ext.define('Lada.store.StatusWerte', { dustin@799: extend: 'Ext.data.Store', dustin@799: fields: ['display', 'id'], dustin@799: data: [{ dustin@799: display: 'unbekannt', id: 0 dustin@799: }, { dustin@799: display: 'nicht vergeben', id: 1 dustin@799: }, { dustin@799: display: 'plausibel', id: 2 dustin@799: }, { dustin@799: display: 'nicht repräsentativ', id: 3 dustin@799: }, { dustin@799: display: 'nicht plausibel', id: 4 dustin@799: }] dustin@799: });