/******************************************************************************* * Copyright (c) 2011 Softberries Krzysztof Grajek. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Softberries Krzysztof Grajek - initial API and implementation ******************************************************************************/ package com.softberries.klerk.gui.helpers; import org.eclipse.osgi.util.NLS; public class Messages extends NLS { private static final String BUNDLE_NAME = "com.softberries.klerk.gui.helpers.messages"; //$NON-NLS-1$ public static String CategoriesView_administration; public static String CategoriesView_all_Categories; public static String CategoriesView_categories; public static String CategoriesView_companies; public static String CategoriesView_documents; public static String CategoriesView_inventory; public static String CategoriesView_invoices; public static String CategoriesView_messages; public static String CategoriesView_people; public static String CategoriesView_products; public static String CategoriesView_Purchases; public static String CategoriesView_Sales; public static String CompaniesEditor_email; public static String CompaniesEditor_mobile; public static String CompaniesEditor_name; public static String CompaniesEditor_telephone; public static String CompaniesEditor_vatid; public static String CompaniesEditor_www; public static String DatabasePreferencePage_Database_connection_settings; public static String DatabasePreferencePage_database_name; public static String DatabasePreferencePage_database_password; public static String DatabasePreferencePage_database_url; public static String DatabasePreferencePage_database_username; public static String DocumentCalculator_GROSS; public static String DocumentCalculator_NET; public static String DocumentCalculator_TaxLevel; public static String DocumentsEditor_creator; public static String DocumentsEditor_date_created; public static String DocumentsEditor_due_date; public static String DocumentsEditor_notes; public static String DocumentsEditor_place_created; public static String DocumentsEditor_search; public static String DocumentsEditor_title; public static String DocumentsEditor_transaction_date; public static String GenericKlerkEditor_add; public static String GenericKlerkEditor_delete; public static String GenericKlerkEditor_edit; public static String GenericKlerkEditor_refresh; public static String GenericKlerkEditor_search; public static String ProductsEditor_Code; public static String ProductsEditor_Description; public static String ProductsEditor_Name; public static String ProductsEditor_Search; public static String SingleDocumentEditor_Base_Price; public static String SingleDocumentEditor_Buyer; public static String SingleDocumentEditor_created_by; public static String SingleDocumentEditor_Code; public static String SingleDocumentEditor_Created_Date; public static String SingleDocumentEditor_due_date; public static String SingleDocumentEditor_INVOICE; public static String SingleDocumentEditor_Invoice_Items; public static String SingleDocumentEditor_Invoice_main_properties; public static String SingleDocumentEditor_Invoice_Summary; public static String SingleDocumentEditor_Main; public static String SingleDocumentEditor_Name; public static String SingleDocumentEditor_Notes; public static String SingleDocumentEditor_Preferences; public static String SingleDocumentEditor_Price_Gross; public static String SingleDocumentEditor_Price_Net; public static String SingleDocumentEditor_Quantity; public static String SingleDocumentEditor_Selected; public static String SingleDocumentEditor_Seller; public static String SingleDocumentEditor_Summary; public static String SingleDocumentEditor_Tax; public static String SingleDocumentEditor_Tax_Percent; public static String SingleDocumentEditor_Title; public static String SingleDocumentEditor_Transaction_Date; public static String SingleProductEditor_alreadyExists; public static String SingleProductEditor_cannotUpdateError; public static String SingleProductEditor_code; public static String SingleProductEditor_Description; public static String SingleProductEditor_fieldCannotBeEmpty; public static String SingleProductEditor_Main; public static String SingleProductEditor_Name; public static String SingleProductEditor_PRODUCT; public static String SingleProductEditor_Product_Description; public static String SingleProductEditor_Product_main_properties; public static String SingleProductEditor_productCode; public static String SingleDocumentEditor_lblToPay_text; public static String SingleDocumentEditor_lblPln_text; static { // initialize resource bundle NLS.initializeMessages(BUNDLE_NAME, Messages.class); } private Messages() { } }