diff --git a/tine20/Sales/Config.php b/tine20/Sales/Config.php index 5bfeafd7f97..196fdc23bd0 100644 --- a/tine20/Sales/Config.php +++ b/tine20/Sales/Config.php @@ -248,20 +248,20 @@ class Sales_Config extends Tinebase_Config_Abstract self::RECORDS => [ [ 'id' => self::DOCUMENT_FOLLOWUP_STATUS_NONE, - //_('No followups booked') - 'value' => 'No followups booked', + //_('None') + 'value' => 'None', 'icon' => null, 'system' => true, ], [ 'id' => self::DOCUMENT_FOLLOWUP_STATUS_PARTIALLY, - //_('Followups partially booked') - 'value' => 'Followups partially booked', + //_('Partially') + 'value' => 'Partially', 'icon' => null, 'system' => true, ], [ 'id' => self::DOCUMENT_FOLLOWUP_STATUS_COMPLETED, - //_('Followups booked') - 'value' => 'Followups booked', + //_('Completed') + 'value' => 'Completed', 'icon' => null, 'system' => true, ], diff --git a/tine20/Sales/Controller/Document/Order.php b/tine20/Sales/Controller/Document/Order.php index 28c9f509e56..571bc48da5d 100644 --- a/tine20/Sales/Controller/Document/Order.php +++ b/tine20/Sales/Controller/Document/Order.php @@ -46,7 +46,9 @@ protected function __construct() Sales_Model_Document_Order::FLD_COST_CENTER_ID, Sales_Model_Document_Order::FLD_COST_BEARER_ID, Sales_Model_Document_Order::FLD_DESCRIPTION, + Sales_Model_Document_Order::FLD_SHARED_INVOICE, Sales_Model_Document_Order::FLD_INVOICE_RECIPIENT_ID, + Sales_Model_Document_Order::FLD_SHARED_DELIVERY, Sales_Model_Document_Order::FLD_DELIVERY_RECIPIENT_ID, Sales_Model_Document_Order::FLD_FOLLOWUP_DELIVERY_CREATED_STATUS, Sales_Model_Document_Order::FLD_FOLLOWUP_INVOICE_CREATED_STATUS, diff --git a/tine20/Sales/Model/Document/Abstract.php b/tine20/Sales/Model/Document/Abstract.php index e576bdf14f4..0e5f4d89b95 100644 --- a/tine20/Sales/Model/Document/Abstract.php +++ b/tine20/Sales/Model/Document/Abstract.php @@ -150,15 +150,25 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract Zend_Filter_Input::PRESENCE => Zend_Filter_Input::PRESENCE_REQUIRED ]*/ ], + self::FLD_REVERSAL_STATUS => [ + self::LABEL => 'Reversal', // _('Reversal') + self::TYPE => self::TYPE_KEY_FIELD, + self::NAME => Sales_Config::DOCUMENT_REVERSAL_STATUS, + self::UI_CONFIG => [ + self::READ_ONLY => true, + ], + ], self::FLD_DOCUMENT_LANGUAGE => [ self::LABEL => 'Language', // _('Language') self::TYPE => self::TYPE_KEY_FIELD, self::NAME => Sales_Config::LANGUAGES_AVAILABLE, + self::SHY => true, ], self::FLD_DOCUMENT_CATEGORY => [ self::LABEL => 'Category', // _('Category') self::TYPE => self::TYPE_KEY_FIELD, self::NAME => Sales_Config::DOCUMENT_CATEGORY, + self::SHY => true, ], self::FLD_PRECURSOR_DOCUMENTS => [ self::TYPE => self::TYPE_RECORDS, @@ -209,6 +219,7 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract self::LENGTH => 255, self::NULLABLE => true, self::QUERY_FILTER => true, + self::SHY => true, ], self::FLD_CUSTOMER_ID => [ @@ -234,6 +245,7 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract self::REF_ID_FIELD => Sales_Model_Document_Address::FLD_DOCUMENT_ID, self::TYPE => Sales_Model_Document_Address::TYPE_POSTAL, ], + self::SHY => true, ], self::FLD_CONTACT_ID => [ self::TYPE => self::TYPE_RECORD, @@ -244,6 +256,7 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract self::MODEL_NAME => Addressbook_Model_Contact::MODEL_PART_NAME, ], self::NULLABLE => true, + self::SHY => true, ], self::FLD_POSITIONS => [ @@ -260,6 +273,7 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract self::LABEL => 'Positions Net Sum', //_('Positions Net Sum') self::TYPE => self::TYPE_MONEY, self::NULLABLE => true, + self::SHY => true, self::UI_CONFIG => [ self::READ_ONLY => true, ], @@ -268,6 +282,7 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract self::LABEL => 'Positions Discount Sum', //_('Positions Discount Sum') self::TYPE => self::TYPE_MONEY, self::NULLABLE => true, + self::SHY => true, self::UI_CONFIG => [ self::READ_ONLY => true, ], @@ -278,6 +293,7 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract self::TYPE => self::TYPE_KEY_FIELD, self::NAME => Sales_Config::INVOICE_DISCOUNT_TYPE, self::NULLABLE => true, + self::SHY => true, self::DEFAULT_VAL => 'SUM' ], self::FLD_INVOICE_DISCOUNT_PERCENTAGE => [ @@ -291,6 +307,7 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract self::TYPE => self::TYPE_FLOAT, self::SPECIAL_TYPE => self::SPECIAL_TYPE_DISCOUNT, self::NULLABLE => true, + self::SHY => true, self::UI_CONFIG => [ 'price_field' => self::FLD_POSITIONS_NET_SUM, 'net_field' => self::FLD_NET_SUM @@ -309,6 +326,7 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract self::LABEL => 'Sales Tax', //_('Sales Tax') self::TYPE => self::TYPE_MONEY, self::NULLABLE => true, + self::SHY => true, self::UI_CONFIG => [ self::READ_ONLY => true, ], @@ -347,6 +365,7 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract self::MODEL_NAME => Tinebase_Model_CostCenter::MODEL_NAME_PART, ], self::NULLABLE => true, + self::SHY => true, ], self::FLD_COST_BEARER_ID => [ self::LABEL => 'Cost Bearer', //_('Cost Bearer') @@ -356,20 +375,14 @@ abstract class Sales_Model_Document_Abstract extends Tinebase_Record_NewAbstract self::MODEL_NAME => Tinebase_Model_CostUnit::MODEL_NAME_PART, ], self::NULLABLE => true, + self::SHY => true, ], self::FLD_DESCRIPTION => [ self::LABEL => 'Internal Note', //_('Internal Note') self::TYPE => self::TYPE_TEXT, self::NULLABLE => true, self::QUERY_FILTER => true, - ], - self::FLD_REVERSAL_STATUS => [ - self::LABEL => 'Reversal Status', // _('Reversal Status') - self::TYPE => self::TYPE_KEY_FIELD, - self::NAME => Sales_Config::DOCUMENT_REVERSAL_STATUS, - self::UI_CONFIG => [ - self::READ_ONLY => true, - ], + self::SHY => true, ], ] ]; diff --git a/tine20/Sales/Model/Document/Delivery.php b/tine20/Sales/Model/Document/Delivery.php index 304c0c3d936..48ff399a3ef 100644 --- a/tine20/Sales/Model/Document/Delivery.php +++ b/tine20/Sales/Model/Document/Delivery.php @@ -61,13 +61,15 @@ public static function inheritModelConfigHook(array &$_definition) Sales_Model_DocumentPosition_Delivery::MODEL_NAME_PART; // delivery status - $_definition[self::FIELDS][self::FLD_DELIVERY_STATUS] = [ - self::LABEL => 'Status', // _('Status') - self::TYPE => self::TYPE_KEY_FIELD, - self::NAME => Sales_Config::DOCUMENT_DELIVERY_STATUS, - self::LENGTH => 255, - self::NULLABLE => true, - ]; + Tinebase_Helper::arrayInsertAfterKey($_definition[self::FIELDS], self::FLD_DOCUMENT_NUMBER,[ + self::FLD_DELIVERY_STATUS => [ + self::LABEL => 'Status', // _('Status') + self::TYPE => self::TYPE_KEY_FIELD, + self::NAME => Sales_Config::DOCUMENT_DELIVERY_STATUS, + self::LENGTH => 255, + self::NULLABLE => true, + ] + ]); $_definition[self::FIELDS][self::FLD_DOCUMENT_NUMBER][self::NULLABLE] = true; $_definition[self::FIELDS][self::FLD_DOCUMENT_NUMBER][self::CONFIG][Tinebase_Numberable::CONFIG_OVERRIDE] = @@ -94,6 +96,7 @@ public static function inheritModelConfigHook(array &$_definition) self::TYPE => self::TYPE_BOOLEAN, self::LABEL => 'Shared Document', //_('Shared Document') self::DEFAULT_VAL => false, + self::SHY => true, ]; // remove all moneytary fields, this is a delivery document, no money here diff --git a/tine20/Sales/Model/Document/Invoice.php b/tine20/Sales/Model/Document/Invoice.php index ed4bd40ca75..13dd735ad18 100644 --- a/tine20/Sales/Model/Document/Invoice.php +++ b/tine20/Sales/Model/Document/Invoice.php @@ -64,13 +64,15 @@ public static function inheritModelConfigHook(array &$_definition) Sales_Model_DocumentPosition_Invoice::MODEL_NAME_PART; // invoice status - $_definition[self::FIELDS][self::FLD_INVOICE_STATUS] = [ - self::LABEL => 'Status', // _('Status') - self::TYPE => self::TYPE_KEY_FIELD, - self::NAME => Sales_Config::DOCUMENT_INVOICE_STATUS, - self::LENGTH => 255, - self::NULLABLE => true, - ]; + Tinebase_Helper::arrayInsertAfterKey($_definition[self::FIELDS], self::FLD_DOCUMENT_NUMBER, [ + self::FLD_INVOICE_STATUS => [ + self::LABEL => 'Status', // _('Status') + self::TYPE => self::TYPE_KEY_FIELD, + self::NAME => Sales_Config::DOCUMENT_INVOICE_STATUS, + self::LENGTH => 255, + self::NULLABLE => true, + ] + ]); $_definition[self::FIELDS][self::FLD_DOCUMENT_NUMBER][self::NULLABLE] = true; $_definition[self::FIELDS][self::FLD_DOCUMENT_NUMBER][self::CONFIG][Tinebase_Numberable::CONFIG_OVERRIDE] = @@ -97,6 +99,7 @@ public static function inheritModelConfigHook(array &$_definition) self::TYPE => self::TYPE_BOOLEAN, self::LABEL => 'Shared Document', //_('Shared Document') self::DEFAULT_VAL => false, + self::SHY => true, ]; } diff --git a/tine20/Sales/Model/Document/Offer.php b/tine20/Sales/Model/Document/Offer.php index a2bbec2bd9f..ac2a983923b 100644 --- a/tine20/Sales/Model/Document/Offer.php +++ b/tine20/Sales/Model/Document/Offer.php @@ -82,6 +82,18 @@ protected static function _adaptFields(array &$_definition) $_definition[self::FIELDS][self::FLD_POSITIONS][self::CONFIG][self::MODEL_NAME] = Sales_Model_DocumentPosition_Offer::MODEL_NAME_PART; + // OFFER_STATUS keyfield: In Bearbeitung(ungebucht, offen), Zugestellt(gebucht, offen), + // Beauftragt(gebucht, offen), Abgelehnt(gebucht, geschlossen) + Tinebase_Helper::arrayInsertAfterKey($_definition[self::FIELDS], self::FLD_DOCUMENT_NUMBER, [ + self::FLD_OFFER_STATUS => [ + self::LABEL => 'Status', // _('Status') + self::TYPE => self::TYPE_KEY_FIELD, + self::NAME => Sales_Config::DOCUMENT_OFFER_STATUS, + self::LENGTH => 255, + self::NULLABLE => true, + ], + ]); + $_definition[self::FIELDS] = array_merge($_definition[self::FIELDS], [ self::FLD_ORDER_ID => [ self::TYPE => self::TYPE_RECORD, @@ -92,27 +104,20 @@ protected static function _adaptFields(array &$_definition) ], self::NULLABLE => true, ], - // OFFER_STATUS keyfield: In Bearbeitung(ungebucht, offen), Zugestellt(gebucht, offen), - // Beauftragt(gebucht, offen), Abgelehnt(gebucht, geschlossen) - self::FLD_OFFER_STATUS => [ - self::LABEL => 'Status', // _('Status') - self::TYPE => self::TYPE_KEY_FIELD, - self::NAME => Sales_Config::DOCUMENT_OFFER_STATUS, - self::LENGTH => 255, - self::NULLABLE => true, - ], self::FLD_FOLLOWUP_ORDER_CREATED_STATUS => [ - self::LABEL => 'Followup Order Creation Status', // _('Followup Order Creation Status') + self::LABEL => 'Order Created', // _('Order Created') self::TYPE => self::TYPE_KEY_FIELD, self::NAME => Sales_Config::DOCUMENT_FOLLOWUP_STATUS, + self::SHY => true, self::UI_CONFIG => [ self::READ_ONLY => true, ], ], self::FLD_FOLLOWUP_ORDER_BOOKED_STATUS => [ - self::LABEL => 'Followup Order Booked Status', // _('Followup Order Booked Status') + self::LABEL => 'Order Booked', // _('Order Booked') self::TYPE => self::TYPE_KEY_FIELD, self::NAME => Sales_Config::DOCUMENT_FOLLOWUP_STATUS, + self::SHY => true, self::UI_CONFIG => [ self::READ_ONLY => true, ], diff --git a/tine20/Sales/Model/Document/Order.php b/tine20/Sales/Model/Document/Order.php index a31028fa0d9..296870422b8 100644 --- a/tine20/Sales/Model/Document/Order.php +++ b/tine20/Sales/Model/Document/Order.php @@ -24,11 +24,11 @@ class Sales_Model_Document_Order extends Sales_Model_Document_Abstract public const FLD_DELIVERY_RECIPIENT_ID = 'delivery_recipient_id'; public const FLD_ORDER_STATUS = 'order_status'; - public const FLD_FOLLOWUP_INVOICE_CREATED_STATUS = 'followup_invoice_created_status'; public const FLD_FOLLOWUP_DELIVERY_CREATED_STATUS = 'followup_delivery_created_status'; + public const FLD_FOLLOWUP_DELIVERY_BOOKED_STATUS = 'followup_delivery_booked_status'; + public const FLD_FOLLOWUP_INVOICE_CREATED_STATUS = 'followup_invoice_created_status'; public const FLD_FOLLOWUP_INVOICE_BOOKED_STATUS = 'followup_invoice_booked_status'; - public const FLD_FOLLOWUP_DELIVERY_BOOKED_STATUS = 'followup_delivery_booked_status'; public const FLD_SHARED_INVOICE = 'shared_invoice'; public const FLD_SHARED_DELIVERY = 'shared_delivery'; @@ -67,33 +67,37 @@ public static function inheritModelConfigHook(array &$_definition) self::NULLABLE => true, ], self::FLD_FOLLOWUP_DELIVERY_CREATED_STATUS => [ - self::LABEL => 'Followup Delivery Creation Status', // _('Followup Delivery Creation Status') + self::LABEL => 'Delivery Created', // _('Delivery Created') self::TYPE => self::TYPE_KEY_FIELD, self::NAME => Sales_Config::DOCUMENT_FOLLOWUP_STATUS, + self::SHY => true, self::UI_CONFIG => [ self::READ_ONLY => true, ], ], - self::FLD_FOLLOWUP_INVOICE_CREATED_STATUS => [ - self::LABEL => 'Followup Invoice Creation Status', // _('Followup Invoice Creation Status') + self::FLD_FOLLOWUP_DELIVERY_BOOKED_STATUS => [ + self::LABEL => 'Delivery Booked', // _('Delivery Booked') self::TYPE => self::TYPE_KEY_FIELD, self::NAME => Sales_Config::DOCUMENT_FOLLOWUP_STATUS, + self::SHY => true, self::UI_CONFIG => [ self::READ_ONLY => true, ], ], - self::FLD_FOLLOWUP_DELIVERY_BOOKED_STATUS => [ - self::LABEL => 'Followup Delivery Booked Status', // _('Followup Delivery Booked Status') + self::FLD_FOLLOWUP_INVOICE_CREATED_STATUS => [ + self::LABEL => 'Invoice Created', // _('Invoice Created') self::TYPE => self::TYPE_KEY_FIELD, self::NAME => Sales_Config::DOCUMENT_FOLLOWUP_STATUS, + self::SHY => true, self::UI_CONFIG => [ self::READ_ONLY => true, ], ], self::FLD_FOLLOWUP_INVOICE_BOOKED_STATUS => [ - self::LABEL => 'Followup Invoice Booked Status', // _('Followup Invoice Booked Status') + self::LABEL => 'Invoice Booked', // _('Invoice Booked') self::TYPE => self::TYPE_KEY_FIELD, self::NAME => Sales_Config::DOCUMENT_FOLLOWUP_STATUS, + self::SHY => true, self::UI_CONFIG => [ self::READ_ONLY => true, ], @@ -114,6 +118,7 @@ public static function inheritModelConfigHook(array &$_definition) self::TYPE => self::TYPE_RECORD, self::LABEL => 'Invoice Recipient', //_('Invoice Recipient') self::NULLABLE => true, + self::SHY => true, self::UI_CONFIG => [ self::TYPE => Sales_Model_Document_Address::TYPE_BILLING, ], @@ -133,6 +138,7 @@ public static function inheritModelConfigHook(array &$_definition) self::TYPE => self::TYPE_RECORD, self::LABEL => 'Delivery Recipient', //_('Delivery Recipient') self::NULLABLE => true, + self::SHY => true, self::UI_CONFIG => [ self::TYPE => Sales_Model_Document_Address::TYPE_DELIVERY, ], @@ -151,12 +157,16 @@ public static function inheritModelConfigHook(array &$_definition) self::FLD_SHARED_DELIVERY => [ self::TYPE => self::TYPE_BOOLEAN, self::LABEL => 'Shared Delivery', //_('Shared Delivery') + self::BOX_LABEL => 'include in shared delivery', self::DEFAULT_VAL => false, + self::SHY => true, ], self::FLD_SHARED_INVOICE => [ self::TYPE => self::TYPE_BOOLEAN, self::LABEL => 'Shared Invoice', //_('Shared Invoice') + self::BOX_LABEL => 'include in shared invoice', self::DEFAULT_VAL => false, + self::SHY => true, ], ]); diff --git a/tine20/Sales/js/Document/AbstractEditDialog.js b/tine20/Sales/js/Document/AbstractEditDialog.js index 0dcf1579aeb..48b530be44e 100644 --- a/tine20/Sales/js/Document/AbstractEditDialog.js +++ b/tine20/Sales/js/Document/AbstractEditDialog.js @@ -87,7 +87,9 @@ Tine.Sales.Document_AbstractEditDialog = Ext.extend(Tine.widgets.dialog.EditDial const statusField = this.fields[this.statusFieldName] const booked = statusField.store.getById(statusField.getValue())?.json.booked this.getForm().items.each((field) => { - if ([this.statusFieldName, 'cost_center_id', 'cost_bearer_id', 'description', 'tags', 'attachments', 'relations'].indexOf(field.name) < 0) { + if (_.get(field, 'initialConfig.readOnly')) return; + if ([this.statusFieldName, 'cost_center_id', 'cost_bearer_id', 'description', 'tags', 'attachments', 'relations'].indexOf(field.name) < 0 + || field.name?.match(/^shared_.*/)) { field.setReadOnly(booked); } }); diff --git a/tine20/Sales/js/Document/CreateFollowUpAction.js b/tine20/Sales/js/Document/CreateFollowUpAction.js index 3a947ac65ca..6cd5e600e35 100644 --- a/tine20/Sales/js/Document/CreateFollowUpAction.js +++ b/tine20/Sales/js/Document/CreateFollowUpAction.js @@ -35,6 +35,8 @@ Promise.all([Tine.Tinebase.appMgr.isInitialised('Sales'), const targetRecordClass = Tine.Tinebase.data.RecordMgr.get(`Sales.Document_${targetType}`) const targetRecordName = isReversal ? app.i18n._('Reversal') : targetRecordClass.getRecordName() const targetRecordsName = isReversal ? app.i18n._('Reversals') : targetRecordClass.getRecordsName() + const sharedTransitionFlag = `shared_${targetRecordClass.getMeta('recordName').toLowerCase()}` + const supportsSharedTransition = sourceRecordClass.hasField(sharedTransitionFlag) return new Ext.Action(Object.assign({ text: config.text || app.formatMessage('Create { targetRecordName }', { targetRecordName }), iconCls: `SalesDocument_${targetType} ${isReversal ? 'SalesDocument_Reversal' : ''}`, @@ -70,7 +72,7 @@ Promise.all([Tine.Tinebase.appMgr.isInitialised('Sales'), if (unbooked.length) { if (await Ext.MessageBox.confirm( app.formatMessage('Book unbooked { sourceRecordsName }', { sourceRecordsName }), - app.formatMessage('Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?', { sourceRecordsName, targetRecordsName }) + app.formatMessage('Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?', { sourceRecordsName, targetRecordsName }) ) !== 'yes') { return false } // @TODO: maybe we should define default booked state somehow? e.g. offer should be accepted (not only send) or let the user select? @@ -99,19 +101,62 @@ Promise.all([Tine.Tinebase.appMgr.isInitialised('Sales'), } const followUpDocuments = []; + let processedSourceIds = []; // @TODO: have all docs into one followUp vs. each doc gets an individual followUp + // allow 'ad-hoc' shared followups? -> no :-) + // check if document is 'shared' -> getSharedOrderDocumentTransition + // NOTE: the selection might contain other documents which are part of the shared followup + // those docs must not be processed individually + // unbooked documents are not included -> inform user about this? (are they included in getSharedOrderDocumentTransition?) await selections.asyncForEach(async (record) => { try { - const followUpDocumentData = await Tine.Sales.createFollowupDocument({ - sourceDocuments: [{sourceDocumentModel: sourceRecordClass.getPhpClassName(), sourceDocument: record.id, isReversal}], - targetDocumentType: targetRecordClass.getPhpClassName() - }) - window.postal.publish({ - channel: "recordchange", - topic: [app.appName, targetRecordClass.getMeta('modelName'), 'create'].join('.'), - data: followUpDocumentData - }) - followUpDocuments.push(Tine.Tinebase.data.Record.setFromJson(followUpDocumentData, targetRecordClass)) + if (processedSourceIds.indexOf(record.id) < 0) { + let transition = { + sourceDocuments: [{ + sourceDocumentModel: sourceRecordClass.getPhpClassName(), + sourceDocument: record.id, + isReversal + }], + targetDocumentType: targetRecordClass.getPhpClassName() + } + + if (supportsSharedTransition && !!+record.get(sharedTransitionFlag)) { + const customerId = _.get(record, 'data.customer_id.original_id') + transition = await Tine.Sales.getSharedOrderDocumentTransition(customerId, transition.targetDocumentType) + + if (! transition?.sourceDocuments?.length) { + return await Ext.MessageBox.show({ + buttons: Ext.Msg.OK, + icon: Ext.MessageBox.WARNING, + title: app.formatMessage('Nothing to do'), + msg: app.formatMessage('{ document } has no open positions left.', { document: record.getTitle() }) + }); + } + } + + if (transition.sourceDocuments.length > 1) { + transition.sourceDocuments = _.map(await Tine.widgets.dialog.MultiOptionsDialog.getOption({ + title: app.formatMessage('Choose { sourceRecordsName }', { sourceRecordsName }), + questionText: app.formatMessage('Please choose which { sourceRecordsName } should be included in shared { targetRecordName }', { sourceRecordsName, targetRecordName}), + allowMultiple: true, + allowCancel: false, + height: transition.sourceDocuments.length * 30 + 100, + options: transition.sourceDocuments.map((source) => { + const sourceDocument = Tine.Tinebase.data.Record.setFromJson(source.sourceDocument, sourceRecordClass) + return { text: sourceDocument.getTitle(), name: sourceDocument.id, checked: true, source } + }) + }), 'source'); + } + + const followUpDocumentData = await Tine.Sales.createFollowupDocument(transition) + window.postal.publish({ + channel: "recordchange", + topic: [app.appName, targetRecordClass.getMeta('modelName'), 'create'].join('.'), + data: followUpDocumentData + }) + followUpDocuments.push(Tine.Tinebase.data.Record.setFromJson(followUpDocumentData, targetRecordClass)) + processedSourceIds = processedSourceIds.concat(_.map(transition.sourceDocuments, 'sourceDocument.id')) + } } catch (e) { errorMsgs.push(app.formatMessage('Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }', { sourceDocument: record.getTitle(), targetType: targetRecordClass.getRecordName(), e })) } diff --git a/tine20/Sales/js/Document/OfferEditDialog.js b/tine20/Sales/js/Document/OfferEditDialog.js index 33728ce883a..cb8a4785d47 100644 --- a/tine20/Sales/js/Document/OfferEditDialog.js +++ b/tine20/Sales/js/Document/OfferEditDialog.js @@ -16,6 +16,18 @@ Tine.Sales.Document_OfferEditDialog = Ext.extend(Tine.Sales.Document_AbstractEdi initComponent () { this.supr().initComponent.call(this) + }, + + getRecordFormItems() { + const rtnVal = this.supr().getRecordFormItems.call(this) + const items = rtnVal[0].items + const placeholder = {xtype: 'label', html: ' ', columnWidth: 1/5} + + const statusLine = [this.fields.reversal_status, this.fields.followup_order_created_status, this.fields.followup_order_booked_status, {... placeholder}, {... placeholder}] + statusLine.cls = 'status-fields' + items.splice(0, 0, statusLine) + + return rtnVal } }) diff --git a/tine20/Sales/js/Document/OrderEditDialog.js b/tine20/Sales/js/Document/OrderEditDialog.js index a968c26a53b..55be25f071e 100644 --- a/tine20/Sales/js/Document/OrderEditDialog.js +++ b/tine20/Sales/js/Document/OrderEditDialog.js @@ -22,7 +22,11 @@ Tine.Sales.Document_OrderEditDialog = Ext.extend(Tine.Sales.Document_AbstractEdi const items = rtnVal[0].items const placeholder = {xtype: 'label', html: ' ', columnWidth: 1/5} - const followUpLine = [{... placeholder}, this.fields.invoice_recipient_id, this.fields.delivery_recipient_id, {... placeholder}, {... placeholder}] + const statusLine = [this.fields.reversal_status, this.fields.followup_delivery_created_status, this.fields.followup_delivery_booked_status, this.fields.followup_invoice_created_status, this.fields.followup_invoice_booked_status] + statusLine.cls = 'status-fields' + items.splice(0, 0, statusLine) + + const followUpLine = [{... placeholder}, this.fields.delivery_recipient_id, this.fields.shared_delivery, this.fields.invoice_recipient_id, this.fields.shared_invoice] const rIdx = _.indexOf(items, _.find(items, {line: 'recipient'})) items.splice(rIdx+1, 0, followUpLine) diff --git a/tine20/Sales/translations/bg.po b/tine20/Sales/translations/bg.po index a2bd8d3e7ec..45c04fca390 100644 --- a/tine20/Sales/translations/bg.po +++ b/tine20/Sales/translations/bg.po @@ -16,953 +16,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Име" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Описание" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Договор" +msgstr[1] "Договора" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" -msgstr "" - -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 msgid "Web" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Описание" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" +msgstr "" + +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" +msgstr "" + +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Договор" -msgstr[1] "Договора" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Име" - -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" -msgstr "" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Моля эадайте описание..." -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1018,7 +946,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1061,816 +989,997 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Моля эадайте описание..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/ca.po b/tine20/Sales/translations/ca.po index 1998f30c469..1d0a4b9e173 100644 --- a/tine20/Sales/translations/ca.po +++ b/tine20/Sales/translations/ca.po @@ -16,953 +16,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Títol" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Descripció" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Contracte" +msgstr[1] "Contractes" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Nom" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Nom" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Descripció" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" - -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Contracte" -msgstr[1] "Contractes" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Títol" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Producte" -msgstr[1] "Productes" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Introduïu una descripció..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Producte" +msgstr[1] "Productes" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Categoria" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Fabricant" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1018,7 +946,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1061,818 +989,999 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Categoria" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Fabricant" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Introduïu una descripció..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "manage products" diff --git a/tine20/Sales/translations/cs.po b/tine20/Sales/translations/cs.po index 8735a2b30a3..c9f98901144 100644 --- a/tine20/Sales/translations/cs.po +++ b/tine20/Sales/translations/cs.po @@ -16,438 +16,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Název" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Popis" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Kontrakt" +msgstr[1] "Kontrakty" +msgstr[2] "Kontraktů" +msgstr[3] "Kontraktů" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "Název" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" -msgstr "" - -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 msgid "Web" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Popis" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" +msgstr "" + +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" +msgstr "" + +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Kontrakt" -msgstr[1] "Kontrakty" -msgstr[2] "Kontraktů" -msgstr[3] "Kontraktů" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Název" - -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -455,546 +400,517 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkty" -msgstr[2] "Produktů" -msgstr[3] "Produktů" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" -msgstr "" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Vložte popis..." -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Produkt" +msgstr[1] "Produkty" +msgstr[2] "Produktů" +msgstr[3] "Produktů" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Kategorie" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Výrobce" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" +msgstr "" + +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1050,7 +966,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1081,830 +997,1023 @@ msgstr "" msgid "All Invoices" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Kategorie" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Výrobce" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" +msgstr "" + +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Vložte popis..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "manage products" diff --git a/tine20/Sales/translations/cs_CZ.po b/tine20/Sales/translations/cs_CZ.po index 56b69d9c8e8..192b7c7652f 100644 --- a/tine20/Sales/translations/cs_CZ.po +++ b/tine20/Sales/translations/cs_CZ.po @@ -16,438 +16,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -455,546 +400,517 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1050,7 +966,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1073,836 +989,1029 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/da.po b/tine20/Sales/translations/da.po index 7f5193530a9..6c01adfaa4d 100644 --- a/tine20/Sales/translations/da.po +++ b/tine20/Sales/translations/da.po @@ -16,953 +16,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1018,7 +946,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1061,816 +989,997 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/de.po b/tine20/Sales/translations/de.po index 8812b9b6758..4bdcd67c028 100644 --- a/tine20/Sales/translations/de.po +++ b/tine20/Sales/translations/de.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Tine 2.0\n" "POT-Creation-Date: 2008-05-17 22:12+0100\n" -"PO-Revision-Date: 2022-04-26 12:27+0200\n" +"PO-Revision-Date: 2023-02-16 16:22+0100\n" "Last-Translator: Christian Feitl \n" "Language-Team: German (http://www.transifex.com/tine20/tine20/language/de/)\n" "Language: de\n" @@ -23,959 +23,884 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: utf-8\n" -"X-Generator: Poedit 3.0\n" +"X-Generator: Poedit 3.2.2\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "Rechnung ist bereits gebucht" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "Die Rechnung die Sie löschen wollten, ist bereits gebucht und kann nicht mehr gelöscht werden!" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "Adresse als Rechnungsadresse in Benutzung" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "Die Adresse, die Sie löschen wollten, ist bei einem oder mehreren Verträgen als Rechnungsadresse gesetzt. Bitte weisen Sie den Verträgen eine andere Rechnungsadresse zu oder verändern Sie diese, ohne sie zu löschen." - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "Nachfolgende Rechnungen gefunden" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "Es existiert bereits eine spätere Rechnung für den selben Vertrag. Bitte löschen Sie die spätere(n) Rechnung(en), bevor Sie diese Rechnung löschen!" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "Die Rechnung die Sie bearbeiten wollten, ist bereits gebucht und kann nicht weiter bearbeitet werden!" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "Keine Berechtigung die Nummer zu verändern" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "Die Nummer kann nachträglich nicht mehr geändert werden!" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "Mehrfach vergebene Nummer" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "Die Nummer die Sie für diesen Datensatz verwenden wollten, ist bereits vergeben. Bitte versuchen Sie es mit einer anderen, oder lassen das Feld leer, um die nächst freie Nummer zu verwenden." - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "Unbekannter Währungscode" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "Der Währungscode, den Sie versucht haben, einzugeben, ist nicht gültig. Bitte verwenden Sie einen gültigen Währungscode nach ISO 4217." - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "Produkte Verwalten" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." -msgstr "Hinzufügen, editieren und löschen von Produkten." - -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "Verträge Verwalten" - -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "Verträge hinzufügen, bearbeiten und löschen." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "Sie haben kein Adminrecht in der Sales-Applikation" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" -msgstr "Kostenstellen Verwalten" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "Textbaustein" +msgstr[1] "Textbausteine" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "Kostenstellen hinzufügen, bearbeiten und löschen." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" +msgstr "Bitte legen Sei einen Kunden fest!" -#: Acl/Rights.php:200 -msgid "Manage Customers" -msgstr "Kunden Verwalten" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" +msgstr "Neues Angebot hinzufügen" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "Kunden hinzufügen, bearbeiten und löschen." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Nummer" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" -msgstr "Lieferanten Verwalten" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Titel" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "Lieferanten hinzufügen, editieren oder entfernen." +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "Kunde" +msgstr[1] "Kunden" -#: Acl/Rights.php:208 -msgid "manage invoices" -msgstr "Rechungen verwalten" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Beschreibung" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." -msgstr "Rechnungen hinzufügen, bearbeiten und löschen." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" +msgstr "Bitte geben Sie eine Beschreibung an" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" -msgstr "Auftragsbestätigungen Verwalten" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" +msgstr "Genehmigt von" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "Auftragsbestätigungen hinzufügen, bearbeiten und löschen." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" +msgstr "nicht genehmigt" -#: Acl/Rights.php:216 -msgid "Manage Offers" -msgstr "Angebote Verwalten" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" +msgstr "Rechnung auswählen" -msgid "Send by E-Mail" -msgstr "Als E-Mail senden" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "Rechnung" +msgstr[1] "Rechnungen" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "Angebote hinzufügen, bearbeiten und löschen." +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" +msgstr "Rechnungsnummer" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "Eingangsrechnungen Verwalten" +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" +msgstr "Datum" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "Eingangsrechnungen hinzufügen, editieren oder entfernen." +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" +msgstr "Typ" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "Nummer einer Auftragsbestätigung ändern" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "Lieferant" +msgstr[1] "Lieferanten" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." -msgstr "Änderung der Nummer einer Auftragsbestätigung beim Update erlauben." +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" +msgstr "Rechnungsanschrift" -#: Acl/Rights.php:228 -msgid "Set number of invoices" -msgstr "Rechnungsnummer manuell vergeben" +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" +msgstr "Sonstiges" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." -msgstr "Erlaubt, die Rechnungsnummer manuell zu vergeben." +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" +msgstr "Zahlungsziel in Tagen" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" -msgstr "CSV Alle Daten" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "Gebucht" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" -msgstr "Rechnungs Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" +msgstr "Nettopreis" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" -msgstr "GEBUCHT" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" +msgstr "MwSt" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" -msgstr "RECHNUNG" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" +msgstr "Gesamtpreis" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "Sie haben kein Adminrecht in der Sales-Applikation" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" +msgstr "Neue Auftragsbestätigung hinzufügen" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "Textbaustein" -msgstr[1] "Textbausteine" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Vertrag" +msgstr[1] "Verträge" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "Diese Nummer ist bereits vergeben!" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "Angebot" +msgstr[1] "Angebote" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" -msgstr "Bitte legen Sei einen Kunden fest!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" +msgstr "Adresse in die Zwischenablage kopieren" -#: Model/Customer.php:38 -msgid "GENDER_Customer" -msgstr "male" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" +msgstr "Lieferant auswählen" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "Kunde" -msgstr[1] "Kunden" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" +msgstr "Stammdaten" -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" -msgstr "Kundennummer" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" +msgstr "Lieferantennummer" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "Name" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" -msgstr "Kunden Kürzel" - -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 msgid "Web" msgstr "Internet" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Beschreibung" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 msgid "Contact Person (external)" msgstr "Kontaktperson (extern)" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 msgid "Contact Person (internal)" msgstr "Kontaktperson (intern)" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" +msgstr "Abrechnung" + +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" +msgstr "IBAN" + +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" +msgstr "BIC" + +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 msgid "VAT ID" msgstr "USt.-ID" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" -msgstr "Zahlungsziel in Tagen" - -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "Währung" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "Wechselkurs" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" -msgstr "Rabatt in Prozent" - -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" -msgstr "Lieferanschriften" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" +msgstr "Bitte geben Sie entweder eine Postleitzahl oder ein Postfach an!" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" -msgstr "Rechnungsanschriften" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" +msgstr "Lieferant kopieren" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" -msgstr "male" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" +msgstr "Neuen Lieferant hinzufügen" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "Lieferant" -msgstr[1] "Lieferanten" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" +msgstr "Lieferant \"{0}\" bearbeiten" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" -msgstr "Lieferantennummer" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" +msgstr "Zahlungsziel in Tagen" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" -msgstr "Zusatz" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" +msgstr "Postanschrift" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" -msgstr "Weiterer Zusatz" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" +msgstr "E-Mail" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "Straße" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "Postfach" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "Postleitzahl" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "Ort" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "Region" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "Land" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "Postfach" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" +msgstr "Zusatz" -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "male" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" +msgstr "Weiterer Zusatz" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Vertrag" -msgstr[1] "Verträge" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Abbrechen" + +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" +msgstr "Ok" + +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" +msgstr "{0} ausgewählt" + +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" +msgstr "Rechnungsanschriften" + +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" +msgstr "Bruttopreis" + +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" +msgstr "Exportiere Einträge dieser Positionen" + +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" +msgstr "Kunden auswählen" + +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" +msgstr "Kundennummer" + +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "Auftragsbestätigung" +msgstr[1] "Auftragsbestätigungen" + +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" +msgstr "ohne Auftragsbestätigung" + +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" +msgstr "Vertrag abrechnen" + +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." +msgstr "Rechne Vertrag ab..." + +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" +msgstr "Vertrag \"{0} - {1}\" abrechnen" + +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" +msgstr "Bitte wählen Sie das Datum, zu dem Sie die Rechnung erzeugen möchten" -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "Produkte" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" +msgstr "Als verantwortlich festlegen" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Nummer" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" +msgstr "Wählen Sie das Produkt für verantwortlich" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Titel" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Bitte benutzen Sie eine Dezimalzahl!" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" -msgstr "Rechnungsanschrift" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" +msgstr "Positionen" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 msgid "Start Date" msgstr "Anfang" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 msgid "End Date" msgstr "Ende" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 msgid "Lead Cost Center" msgstr "Hauptkostenstelle" -#: Model/Contract.php:229 -msgid "Merge" -msgstr "Zusammenführen" - -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Verantwortlicher" - -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Partner" - -#: Model/Contract.php:277 -msgid "Time Account" -msgstr "Zeitkonto" - -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" -msgstr "other" - -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "Angebot" -msgstr[1] "Angebote" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "Auftragsbestätigung" -msgstr[1] "Auftragsbestätigungen" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "Position" -msgstr[1] "Positionen" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" -msgstr "female" - -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" -msgstr "Typ" - -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." -msgstr "Pos." - -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkte" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Bitte geben Sie eine Beschreibung ein..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" -msgstr "Gruppierung" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" +msgstr "Statusübergang Bestätigen" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" -msgstr "Sortierung" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" +msgstr "Die Änderung des Status im Arbeitsablauf ist ggf. nicht umkehrbar. Trotzdem fortfahren?" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" -msgstr "Produkt / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" +msgstr "Weitere Textbausteine" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" -msgstr "Anzahl" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" +msgstr "Textbaustein auswählen" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" -msgstr "Tatsächliche Anzahl nutzen" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" +msgstr "Bitte wählen sie aus welcher Textbaustein soll als { name } genutzt werden soll" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" -msgstr "Einheit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" +msgstr "Aktuell:" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" -msgstr "Einzelpreis" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" +msgstr "Anwendbar:" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" -msgstr "Preis" +#: js/Document/TracAction.js:18 +msgid "Track Document" +msgstr "Belegverfolgung" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" -msgstr "Positionsrabatt Typ" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "Belegdruck" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" -msgstr "Positionsrabatt Prozentsatz" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" +msgstr "Erzeuge Papier-{type}" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" -msgstr "Positionsrabatt Summe" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "Diese Fehler sind aufgetreten:" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" -msgstr "Nettopreis" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +msgstr "Konnte Papier-{ type } nicht erzeugen: ({e.code}) { e.message })" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" -msgstr "Mehrwertsteuersatz" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" +msgstr "Als E-Mail senden" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" -msgstr "Mehrwertsteuer" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" +msgstr "Belegverfolgung zu { title }" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" -msgstr "Bruttopreis" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" +msgstr "Positionen ausklappen" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" -msgstr "Kostenträger" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" +msgstr "Storno" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" -msgstr "Kostenstelle" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" +msgstr "Stornos" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" -msgstr "female" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" +msgstr "Erstelle { targetRecordName }" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "Rechnung" -msgstr[1] "Rechnungen" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" +msgstr "{ targetRecordsName } wird erzeugt" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" -msgstr "Rechnungsnummer" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "Ungebuchte { sourceRecordsName } buchen" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "Anschrift" -msgstr[1] "Anschriften" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" +msgstr "Die Erstellung von Folge-{ targetRecordsName } ist nur für gebuchte { sourceRecordsName } erlaubt. Ausgewählte { sourceRecordsName } jetzt buchen?" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" -msgstr "Datum" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +msgstr "Konnte { sourceDocument } nicht buchen: ({e.code}) { e.message })" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" -msgstr "Buchungszeitraum Beginn" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" +msgstr "Nichts zu tun" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" -msgstr "Buchungszeitraum Ende" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." +msgstr "{ document } hat keine übrigen offenen Positionen." -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" -msgstr "Zahlungsziel in Tagen" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" +msgstr "{ sourceRecordsName } auswählen" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" -msgstr "Kostenstelle" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" +msgstr "Bitte wählen sie welche { sourceRecordsName } in der Sammel-{ targetRecordName } inkludiert werden sollen" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "Gebucht" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +msgstr "Konnte { targetType } nicht erzeugen: ({e.code}) { e.message })" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" -msgstr "Nettopreis" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" +msgstr "Erzeugte Dokumente:" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" -msgstr "MwSt" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" +msgstr "ohne Kunde" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" -msgstr "Bruttopreis" +#: js/ContractFilterModel.js:32 +msgid "without contract" +msgstr "ohne Vertrag" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" -msgstr "Bestandsänderung" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" +msgstr "Kunden kopieren" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" -msgstr "Positionen" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" +msgstr "Neuen Kunden hinzufügen" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" -msgstr "Storno-Rechnung" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" +msgstr "Kunden \"{0}\" bearbeiten" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" -msgstr "Rechnungsposten" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" +msgstr "Rabatt in Prozent" -#: Model/Address.php:62 -msgid "GENDER_Address" -msgstr "female" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" +msgstr "Kunden Kürzel" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 msgid "Language" msgstr "Sprache" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" -msgstr "E-Mail" - -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "Zusatz 1" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "Zusatz 2" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "Zusatz 3" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "Debitorennummer" - -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" -msgstr "Mtl. Abrechnungsintervall (variabel)" - -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" -msgstr "Abrechnungszeitpunkt" - -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" -msgstr "Stück" - -#: Model/Boilerplate.php:74 -msgid "Model" -msgstr "Belegart" - -#: Model/Boilerplate.php:95 -msgid "From" -msgstr "Von" - -#: Model/Boilerplate.php:110 -msgid "Until" -msgstr "Bis" - -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" -msgstr "Beleg Kategorie" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Produkt" +msgstr[1] "Produkte" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" -msgstr "other" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" +msgstr "Anzahl" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "Subprodukt" -msgstr[1] "Subprodukte" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" +msgstr "Intervall" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" -msgstr "Kürzel" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" +msgstr "Abrechnungszeitpunkt" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" -msgstr "Position ist variabel" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" +msgstr "Anfang des Intervalls" -#: Model/SubProductMapping.php:141 -msgid "Amount" -msgstr "Anzahl" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" +msgstr "Ende des Intervalls" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" -msgstr "female" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" +msgstr "Attribute" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "Eingangsrechnung" -msgstr[1] "Eingangsrechnungen" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" +msgstr "Zuletzt Abgerechnet" -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" -msgstr "Genehmigt von" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" +msgstr "Angelegt am" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" -msgstr "Rechnungsdatum" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" +msgstr "Angelegt von" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "Fällig in" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" +msgstr "Letztes Modifikationsdatum" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" -msgstr "Fällig am" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" +msgstr "Zuletzt geändert von" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" -msgstr "Gezahlt am" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" +msgstr "Attribute bearbeiten" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "Zahlungsart" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" +msgstr "Attribute" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "Skonto bis" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" +msgstr "Wert" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" -msgstr "Zusätzlicher Bruttopreis" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." +msgstr "Neuen Wert hinzufügen ..." -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" -msgstr "Gesamtpreis" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "OK" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Kategorie" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" +msgstr "Postanschrift anwenden" -#: Model/Product.php:136 -msgid "GTIN" -msgstr "GTIN" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" +msgstr "Debitorennummer" -#: Model/Product.php:174 -msgid "Default Grouping" -msgstr "Standard Gruppierung" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "Anschrift" +msgstr[1] "Anschriften" -#: Model/Product.php:180 -msgid "Default Sorting" -msgstr "Standard Sortierung" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" +msgstr "Eingangsrechnung kopieren" -#: Model/Product.php:200 -msgid "Purchaseprice" -msgstr "Einkaufspreis" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" +msgstr "Neue Eingangsrechnung hinzufügen" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "Verkaufspreis" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" +msgstr "Eingangsrechnung \"{0}\" bearbeiten" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Hersteller" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" +msgstr "Rechnungsdatum" -#: Model/Product.php:239 -msgid "Subproducts" -msgstr "Subprodukte" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" +msgstr "Fällig in" -#: Model/Product.php:256 -msgid "Is Sales Product" -msgstr "Ist ein Verkaufsprodukt" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" +msgstr "Fälligkeitsdatum" -#: Model/Product.php:262 -msgid "Is active" -msgstr "Ist aktiv" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" +msgstr "Zusätzlicher Bruttopreis" -#: Model/Product.php:273 -msgid "Accountable" -msgstr "Rechnet ab" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" +msgstr "MwSt. in Prozent" -#: Model/Product.php:282 -msgid "Lifespan start" -msgstr "Laufzeit Beginn" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "Eingangsrechnung" +msgstr[1] "Eingangsrechnungen" -#: Model/Product.php:290 -msgid "Lifespan end" -msgstr "Laufzeit Ende" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." +msgstr "automatisch ausgefüllt..." -#: Model/Document/Order.php:43 -msgid "GENDER_Order" -msgstr "male" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" +msgstr "Überfälligkeits Datum" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "Auftrag" -msgstr[1] "Aufträge" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" +msgstr "Skonto bis" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" -msgstr "Status" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" +msgstr "Mahnungsdatum" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" -msgstr "Rechnungsemfänger" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" +msgstr "Gezahlt am" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" -msgstr "Lieferungsemfänger" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "Zahlungsart" -#: Model/Document/Order.php:134 -msgid "OR-" -msgstr "AU-" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" +msgstr "ohne Lieferant" -#: Model/Document/Offer.php:114 -msgid "OF-" -msgstr "AN-" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" +msgstr "Zwischenablage" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "Beleg" -msgstr[1] "" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" +msgstr "Produkte" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" -msgstr "male" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" +msgstr "Lieferanschrift" -#: Model/Document/Abstract.php:134 -msgid "Document Number" -msgstr "Belegnummer" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" +msgstr "Lieferanschriften" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" -msgstr "Textbausteine" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" +msgstr "Generell" -#: Model/Document/Abstract.php:195 -msgid "Document Date" -msgstr "Belegdatum" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" +msgstr "Preis" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" -msgstr "Kundenreferenz" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" +msgstr "Rabatt" -#: Model/Document/Abstract.php:223 -msgid "Recipient" -msgstr "Empfänger" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" +msgstr "Gesamt" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" -msgstr "Ansprechpartner" +#: js/InvoiceEditDialog.js:76 +msgid "total" +msgstr "Gesamtsumme" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" -msgstr "Zwischensumme" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" +msgstr "Inklusive" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" -msgstr "Positionsrabatt Summe" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" +msgstr "Überschreitet" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" -msgstr "Rechnungsrabatt Typ" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" +msgstr "Timesheet erstellen" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" -msgstr "Rechnungsrabatt Prozentsatz" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" +msgstr "Storno-Rechnung erstellen" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" -msgstr "Rechnungsrabatt Summe" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" +msgstr "Rechnung kopieren" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" -msgstr "Netto" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" +msgstr "Neue Rechnung hinzufügen" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" -msgstr "MwSt nach Satz" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" +msgstr "Rechnung \"{0}\" bearbeiten" + +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" +msgstr "Position ({0})" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" -msgstr "Endbetrag" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" +msgstr "Kein Kunde zugeordnet" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" -msgstr "Interne Notiz" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +msgstr "Dem ausgewählten Vertrag ist bisher kein Kunde zugeordnet worden. Bitte verknüpfen Sie den Vertrag mit einem Kunden." -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" -msgstr "Proforma Nummer" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "Keine Kostenstelle zugeordnet" -#: Model/Document/Invoice.php:86 -msgid "PI-" -msgstr "PR-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +msgstr "Dem ausgewählten Vertrag ist bisher keine Kostenstelle zugeordnet worden. Bitte verknüpfen Sie den Vertrag mit einer Kostenstelle." -#: Model/Document/Invoice.php:104 -msgid "IN-" -msgstr "RE-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" +msgstr "Bestandsänderung" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" -msgstr "male" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "Buchungszeitraum Beginn" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "Lieferung" -msgstr[1] "Lieferungen" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "Buchungszeitraum Ende" -#: Model/Document/Delivery.php:83 -msgid "PD-" -msgstr "PL-" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "Erzeuge Rechnung neu..." -#: Model/Document/Delivery.php:108 -msgid "DN-" -msgstr "LS-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "Rechnung neu erzeugen" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "Rechnungsposition" -msgstr[1] "Rechnungspositionen" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "Rechnungen zusammenführen" -#: Model/InvoicePosition.php:90 -msgid "Month" -msgstr "Monat" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" +msgstr "Arial" #: Setup/Initialize.php:34 msgid "My Products" @@ -1030,8 +955,8 @@ msgid "All Suppliers" msgstr "Alle Lieferanten" #: Setup/Initialize.php:160 -msgid "All supllier records" -msgstr "Alle Lieferantendatensätze" +msgid "All supplier records" +msgstr "Alle Lieferanten Datensätze" #: Setup/Initialize.php:183 msgid "All Purchase Imvoices" @@ -1073,819 +998,1006 @@ msgstr "Alle Auftragsbestätigungen" msgid "All order confirmation records" msgstr "Alle Auftragsbestätigungsdatensätze" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "Vertragsintervall automatisch abrechnen" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "Setze das größte Intervall, zu dem Verträge gebucht werden." -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "Folgestatus" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "Mögliche Folgestatus" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "Keine" + +#: Config.php:257 +msgid "Partially" +msgstr "Teilweise" + +#: Config.php:263 +msgid "Completed" +msgstr "Vollständig" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "Storno-Status" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "Mögliche Storno-Status" + +#: Config.php:285 +msgid "Not reversed" +msgstr "Nicht storniert" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "Teilweise storniert" + +#: Config.php:297 +msgid "Reversed" +msgstr "Storniert" + +#: Config.php:307 msgid "Offer Status" msgstr "Angebotsstatus" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "Mögliche Angebotsstatus" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "Entwurf (ungebucht, offen)" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "Verschickt (gebucht, offen)" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "Beauftragt (gebucht, geschlossen)" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "Abgelehnt (gebucht, geschlossen)" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "Angebotsstatus-Übergängne" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "Mögliche Angebotsstatus-Übergängne" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "Auftragsstatus" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "Mögliche Auftragsstatus" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "Eingegangen (ungebucht, offen)" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "Angenommen (gebucht, offen)" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "Erledigt (gebucht, geschlossen)" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "Auftragsstatus-Übergänge" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "Mögliche Auftragsstatus-Übergänge" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "Lieferstatus" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "Mögliche Lieferstatus" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "Erstellt (ungebucht, offen)" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "Lieferstatus-Übergänge" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "Mögliche Lieferstatus-Übergänge" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "Rechnungsstatus" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "Mögliche Rechnungsstatus" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "Proforma (ungebucht, offen)" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "Gebucht (gebucht, offen)" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "Verschickt (gebucht, geschlossen)" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "Bezahlt (gebucht, geschlossen)" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "Rechnungsstatus-Übergänge" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "Mögliche Rechnungsstatus-Übergänge" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "Abrechenbares vor Datum ignorieren" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "Setze Datum, bis zu dem Abrechnbares ignoriert wird." -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Vertragsnummer-Erstellung" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "Soll die Vertragsnummer manuell gesetzt oder autmatisch erstellt werden?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automatisch" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "manuell" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Vertragsnummer-Validierung" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "Die Vertragsnummer kann als Text oder Nummer validiert werden." -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Text" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "Eigene Währung" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "Die hier definierte Währung wird als standard Währung für den Kunden bearbeiten Dialog verwendet." -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "Verfügbare Sprachen" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." -msgstr "Liste der verfügbaren Sprachen in der Sales Anwendung" +msgstr "Liste der verfügbaren Sprachen in der Sales Anwendung." -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "Rechnungstyp" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "Mögliche Rechnungstypen." -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" -msgstr "Storno" - -#: Config.php:604 Config.php:780 +#: Config.php:694 Config.php:870 msgid "Credit" msgstr "Gutschrift" -#: Config.php:619 +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" +msgstr "Rechnungsrabatt Typ" + +#: Config.php:709 msgid "Percentage" msgstr "Prozentsatz" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "Summe" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "Belegpositionstyp" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "Überschrift" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "Seitenumbruch" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "Alternative" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "Option" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "Beleg Kategorie" + +#: Config.php:745 msgid "Standard" msgstr "Standard" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "Produktkategorie" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "Mögliche Produktkategorien." -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "Default" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "Produkt Entfaltungsmodus" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "Gemeinsam" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "Eigen" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "Produkt Einheit" -#: Config.php:705 +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" +msgstr "Stück" + +#: Config.php:795 msgid "Sub-Product Variable Position Flag" msgstr "Sub-Product Variable Position Flag" -#: Config.php:706 +#: Config.php:796 msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." -#: Config.php:714 -msgid "None" -msgstr "Keine" - -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "Produktnummern Erstellung" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "Soll die Produktnummer manuell oder automatisch erstellt werden?" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "Produktnummern Validation" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "Produktnummern Präfix" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "Das Präfix der Produktnummer." -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "Nummer mit führender Null auffüllen" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "Nummer mit führender Null auffüllen" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "Zahlungsart" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "Mögliche Zahlungsarten." -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "Banküberweisung" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "Lastschrifteinzug" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "Stornierung" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "Kreditkarte" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "EC Karte" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "Paypal" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "Guthaben" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "Rechnung gebucht" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "Mögliche Werte für Buchungsstatus." -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "zu buchen" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "gebucht" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "Feature aktivieren" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "Feature in der Sales Applikation aktivieren." -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "Rechnungsmodul" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "Angebotsmodul" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "Auftragsbestätigung Modul" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "Lieferantenmodul" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "Eingangsrechnungsmodul" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" -msgstr "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" +msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" -msgstr "ohne Kunde" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "Diese Nummer ist bereits vergeben!" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" -msgstr "Intervall" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" +msgstr "female" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" -msgstr "Anfang des Intervalls" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "Rechnungsposition" +msgstr[1] "Rechnungspositionen" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" -msgstr "Ende des Intervalls" +#: Model/InvoicePosition.php:90 +msgid "Month" +msgstr "Monat" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" -msgstr "Attribute" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" +msgstr "Einheit" + +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" +msgstr "other" + +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Kategorie" + +#: Model/Product.php:149 +msgid "GTIN" +msgstr "GTIN" + +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" +msgstr "Kürzel" + +#: Model/Product.php:187 +msgid "Default Grouping" +msgstr "Standard Gruppierung" + +#: Model/Product.php:193 +msgid "Default Sorting" +msgstr "Standard Sortierung" + +#: Model/Product.php:213 +msgid "Purchaseprice" +msgstr "Einkaufspreis" + +#: Model/Product.php:223 +msgid "Salesprice" +msgstr "Verkaufspreis" + +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" +msgstr "Mehrwertsteuersatz" + +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Hersteller" + +#: Model/Product.php:252 +msgid "Subproducts" +msgstr "Subprodukte" + +#: Model/Product.php:272 +msgid "Is Sales Product" +msgstr "Ist ein Verkaufsprodukt" + +#: Model/Product.php:278 +msgid "Is active" +msgstr "Ist aktiv" + +#: Model/Product.php:289 +msgid "Accountable" +msgstr "Rechnet ab" + +#: Model/Product.php:298 +msgid "Lifespan start" +msgstr "Laufzeit Beginn" + +#: Model/Product.php:309 +msgid "Lifespan end" +msgstr "Laufzeit Ende" + +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" +msgstr "Kostenstelle" + +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" +msgstr "Kostenträger" + +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" +msgstr "other" + +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "Subprodukt" +msgstr[1] "Subprodukte" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" +msgstr "Position ist variabel" + +#: Model/SubProductMapping.php:141 +msgid "Amount" +msgstr "Anzahl" + +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" +msgstr "Sortierung" + +#: Model/Address.php:62 +msgid "GENDER_Address" +msgstr "female" + +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" +msgstr "Rechnungsposten" + +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" +msgstr "Mtl. Abrechnungsintervall (variabel)" + +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" +msgstr "Status" + +#: Model/Document/Offer.php:108 +msgid "Order Created" +msgstr "Auftrag erstellt" + +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "Auftrag gebucht" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "AN-" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "male" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "Auftrag" +msgstr[1] "Aufträge" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" -msgstr "Zuletzt Abgerechnet" +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "Lieferung erstellt" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" -msgstr "Angelegt am" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "Lieferung gebucht" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" -msgstr "Angelegt von" +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "Rechnung erstellt" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" -msgstr "Letztes Modifikationsdatum" +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "Rechnung gebucht" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" -msgstr "Zuletzt geändert von" +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "Rechnungsemfänger" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" -msgstr "Attribute bearbeiten" +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "Lieferungsemfänger" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" -msgstr "Attribute" +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "Sammellieferung" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" -msgstr "Wert" +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "Sammelrechnung" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." -msgstr "Neuen Wert hinzufügen ..." +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "AU-" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Abbrechen" +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "Beleg" +msgstr[1] "Belege" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "OK" +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "male" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" -msgstr "Vertrag abrechnen" +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "Belegnummer" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." -msgstr "Rechne Vertrag ab..." +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "Textbausteine" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" -msgstr "Vertrag \"{0} - {1}\" abrechnen" +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "Belegdatum" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" -msgstr "Bitte wählen Sie das Datum, zu dem Sie die Rechnung erzeugen möchten" +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "Kundenreferenz" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" -msgstr "Bitte geben Sie entweder eine Postleitzahl oder ein Postfach an!" +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "Empfänger" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" -msgstr "Lieferant kopieren" +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "Ansprechpartner" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" -msgstr "Neuen Lieferant hinzufügen" +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "Zwischensumme" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" -msgstr "Lieferant \"{0}\" bearbeiten" +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "Positionsrabatt Summe" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" -msgstr "Adresse in die Zwischenablage kopieren" +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "Rechnungsrabatt Prozentsatz" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" -msgstr "Stammdaten" +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "Rechnungsrabatt Summe" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" -msgstr "Abrechnung" +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "Netto" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" -msgstr "IBAN" +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "Mehrwertsteuer" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" -msgstr "BIC" +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "MwSt nach Satz" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" -msgstr "Postanschrift" +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "Endbetrag" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" -msgstr "Sonstiges" +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "Kostenstelle" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" -msgstr "Bitte geben Sie eine Beschreibung an" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" +msgstr "Interne Notiz" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" -msgstr "Eingangsrechnung kopieren" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" +msgstr "male" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" -msgstr "Neue Eingangsrechnung hinzufügen" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "Lieferung" +msgstr[1] "Lieferungen" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "Eingangsrechnung \"{0}\" bearbeiten" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" +msgstr "Proforma Nummer" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" -msgstr "Fälligkeitsdatum" +#: Model/Document/Delivery.php:87 +msgid "PD-" +msgstr "PL-" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" -msgstr "MwSt. in Prozent" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" +msgstr "Sammelbeleg" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." -msgstr "automatisch ausgefüllt..." +#: Model/Document/Delivery.php:119 +msgid "DN-" +msgstr "LS-" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" -msgstr "Überfälligkeits Datum" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" +msgstr "female" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" -msgstr "Mahnungsdatum" +#: Model/Document/Invoice.php:90 +msgid "PI-" +msgstr "PR-" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" -msgstr "Zahlungsart" +#: Model/Document/Invoice.php:115 +msgid "IN-" +msgstr "RE-" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" -msgstr "ohne Auftragsbestätigung" +#: Model/Customer.php:38 +msgid "GENDER_Customer" +msgstr "male" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" -msgstr "Neues Angebot hinzufügen" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" +msgstr "Storno-Rechnung" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" -msgstr "Lieferant auswählen" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" +msgstr "male" -#: js/InvoiceEditDialog.js:76 -msgid "total" -msgstr "Gesamtsumme" +#: Model/Boilerplate.php:74 +msgid "Model" +msgstr "Belegart" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" -msgstr "Inklusive" +#: Model/Boilerplate.php:95 +msgid "From" +msgstr "Von" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" -msgstr "Überschreitet" +#: Model/Boilerplate.php:110 +msgid "Until" +msgstr "Bis" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" -msgstr "Timesheet erstellen" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" +msgstr "Fällig am" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" -msgstr "Storno-Rechnung erstellen" +#: Model/Contract.php:45 +msgid "GENDER_Contract" +msgstr "male" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" -msgstr "Rechnung kopieren" +#: Model/Contract.php:235 +msgid "Merge" +msgstr "Zusammenführen" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" -msgstr "Neue Rechnung hinzufügen" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Verantwortlicher" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" -msgstr "Rechnung \"{0}\" bearbeiten" +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Partner" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" -msgstr "Position ({0})" +#: Model/Contract.php:283 +msgid "Time Account" +msgstr "Zeitkonto" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" -msgstr "Kein Kunde zugeordnet" +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "Position" +msgstr[1] "Positionen" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." -msgstr "Dem ausgewählten Vertrag ist bisher kein Kunde zugeordnet worden. Bitte verknüpfen Sie den Vertrag mit einem Kunden." +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" +msgstr "female" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" -msgstr "Keine Kostenstelle zugeordnet" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." +msgstr "Pos." -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." -msgstr "Dem ausgewählten Vertrag ist bisher keine Kostenstelle zugeordnet worden. Bitte verknüpfen Sie den Vertrag mit einer Kostenstelle." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" +msgstr "Gruppierung" + +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" +msgstr "Produkt / Service" + +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" +msgstr "Tatsächliche Anzahl nutzen" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" -msgstr "Generell" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" +msgstr "Einzelpreis" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" -msgstr "Rabatt" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" +msgstr "Positionsrabatt Typ" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" -msgstr "Gesamt" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" +msgstr "Positionsrabatt Prozentsatz" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" -msgstr "Kunden auswählen" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" +msgstr "Positionsrabatt Summe" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" -msgstr "Neue Auftragsbestätigung hinzufügen" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" +msgstr "Nettopreis" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" -msgstr "ohne Lieferant" +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" +msgstr "Bruttopreis" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" -msgstr "Lieferanschrift" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" +msgstr "GEBUCHT" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." -msgstr "Erzeuge Rechnung neu..." +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" +msgstr "RECHNUNG" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" -msgstr "Rechnung neu erzeugen" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" +msgstr "Excel alle Daten" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" -msgstr "Rechnungen zusammenführen" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" +msgstr "Rechnungs Timesheet" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" -msgstr "Rechnung auswählen" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" +msgstr "CSV Alle Daten" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" -msgstr "{0} ausgewählt" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" +msgstr "Keine Berechtigung die Nummer zu verändern" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" -msgstr "Als verantwortlich festlegen" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" +msgstr "Die Nummer kann nachträglich nicht mehr geändert werden!" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" -msgstr "Wählen Sie das Produkt für verantwortlich" +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "Rechnung ist bereits gebucht" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Bitte benutzen Sie eine Dezimalzahl!" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" +msgstr "Die Rechnung die Sie löschen wollten, ist bereits gebucht und kann nicht mehr gelöscht werden!" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Bitte geben Sie eine Beschreibung ein..." +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +msgstr "Die Rechnung die Sie bearbeiten wollten, ist bereits gebucht und kann nicht weiter bearbeitet werden!" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" -msgstr "Exportiere Einträge dieser Positionen" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" +msgstr "Nachfolgende Rechnungen gefunden" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" -msgstr "Zwischenablage" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +msgstr "Es existiert bereits eine spätere Rechnung für den selben Vertrag. Bitte löschen Sie die spätere(n) Rechnung(en), bevor Sie diese Rechnung löschen!" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" -msgstr "Belegdruck" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" +msgstr "Mehrfach vergebene Nummer" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" -msgstr "Erzeuge Papier-{type}" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +msgstr "Die Nummer die Sie für diesen Datensatz verwenden wollten, ist bereits vergeben. Bitte versuchen Sie es mit einer anderen, oder lassen das Feld leer, um die nächst freie Nummer zu verwenden." -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" -msgstr "Diese Fehler sind aufgetreten:" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" +msgstr "Unbekannter Währungscode" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" -msgstr "Konnte Papier-{type} nicht erzeugen: ({e.code}) { e.message })" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +msgstr "Der Währungscode, den Sie versucht haben, einzugeben, ist nicht gültig. Bitte verwenden Sie einen gültigen Währungscode nach ISO 4217." -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" -msgstr "Belegverfolgung zu { title }" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" +msgstr "Adresse als Rechnungsadresse in Benutzung" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" -msgstr "Positionen ausklappen" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." +msgstr "Die Adresse, die Sie löschen wollten, ist bei einem oder mehreren Verträgen als Rechnungsadresse gesetzt. Bitte weisen Sie den Verträgen eine andere Rechnungsadresse zu oder verändern Sie diese, ohne sie zu löschen." -#: js/Document/TracAction.js:18 -msgid "Track Document" -msgstr "Belegverfolgung" +#: Acl/Rights.php:188 +msgid "Manage Products" +msgstr "Produkte Verwalten" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" -msgstr "Stornos" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." +msgstr "Hinzufügen, editieren und löschen von Produkten." -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" -msgstr "Erstelle { targetRecordName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" +msgstr "Verträge Verwalten" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" -msgstr "{ targetRecordsName } wird erzeugt" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." +msgstr "Verträge hinzufügen, bearbeiten und löschen." -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" -msgstr "Ungebuchte { sourceRecordsName } buchen" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" +msgstr "Kostenstellen Verwalten" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" -msgstr "Die Erstellung von Folge-{ targetRecordsName } ist nur für gebuchte { sourceRecordsName } erlaubt. Ausgewählte { sourceTypes } jetzt buchen?" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." +msgstr "Kostenstellen hinzufügen, bearbeiten und löschen." -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" -msgstr "Konnte { sourceDocument } nicht buchen: ({e.code}) { e.message })" +#: Acl/Rights.php:200 +msgid "Manage Customers" +msgstr "Kunden Verwalten" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" -msgstr "Konnte { targetType } nicht erzeugen: ({e.code}) { e.message })" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." +msgstr "Kunden hinzufügen, bearbeiten und löschen." -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" -msgstr "Erzeugte Dokumente:" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" +msgstr "Lieferanten Verwalten" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" -msgstr "Statusübergang Bestätigen" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." +msgstr "Lieferanten hinzufügen, editieren oder entfernen." -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" -msgstr "Die Änderung des Status im Arbeitsablauf ist ggf. nicht umkehrbar. Trotzdem fortfahren?" +#: Acl/Rights.php:208 +msgid "manage invoices" +msgstr "Rechungen verwalten" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" -msgstr "Weitere Textbausteine" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." +msgstr "Rechnungen hinzufügen, bearbeiten und löschen." -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" -msgstr "Textbaustein auswählen" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" +msgstr "Auftragsbestätigungen Verwalten" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" -msgstr "Bitte wählen sie aus welcher Textbaustein soll als { name } genutzt werden soll" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." +msgstr "Auftragsbestätigungen hinzufügen, bearbeiten und löschen." -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" -msgstr "Aktuell:" +#: Acl/Rights.php:216 +msgid "Manage Offers" +msgstr "Angebote Verwalten" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" -msgstr "Anwendbar" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." +msgstr "Angebote hinzufügen, bearbeiten und löschen." -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" -msgstr "Postanschrift anwenden" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" +msgstr "Eingangsrechnungen Verwalten" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" -msgstr "Bitte geben Sie entweder eine Straße oder ein Postfach an!" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." +msgstr "Eingangsrechnungen hinzufügen, editieren oder entfernen." -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" -msgstr "Kunden kopieren" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" +msgstr "Nummer einer Auftragsbestätigung ändern" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" -msgstr "Neuen Kunden hinzufügen" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." +msgstr "Änderung der Nummer einer Auftragsbestätigung beim Update erlauben." -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" -msgstr "Kunden \"{0}\" bearbeiten" +#: Acl/Rights.php:228 +msgid "Set number of invoices" +msgstr "Rechnungsnummer manuell vergeben" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" -msgstr "Ok" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." +msgstr "Erlaubt, die Rechnungsnummer manuell zu vergeben." -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" -msgstr "nicht genehmigt" +#~ msgid "All supllier records" +#~ msgstr "Alle Lieferantendatensätze" -#: js/ContractFilterModel.js:32 -msgid "without contract" -msgstr "ohne Vertrag" +#~ msgid "Either street or postbox is required!" +#~ msgstr "Bitte geben Sie entweder eine Straße oder ein Postfach an!" #~ msgid "Manage Divisions" #~ msgstr "Abteilungen Verwalten" diff --git a/tine20/Sales/translations/el_GR.po b/tine20/Sales/translations/el_GR.po index 28928dbb60f..f0d0a5510d0 100644 --- a/tine20/Sales/translations/el_GR.po +++ b/tine20/Sales/translations/el_GR.po @@ -17,953 +17,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Αριθμός" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Τίτλος" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Περιγραφή" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Όνομα" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Όνομα" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Περιγραφή" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Ακύρωση" + +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Αριθμός" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Τίτλος" - -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Συνεργάτης" - -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Προϊόντα" -msgstr[1] "Προϊόντα" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "" - -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" -msgstr "" - -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Προϊόντα" +msgstr[1] "Προϊόντα" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "ΟΚ" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1019,7 +947,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1034,844 +962,1025 @@ msgstr "" msgid "All Products" msgstr "" -#: Setup/Initialize.php:208 -msgid "All product records" +#: Setup/Initialize.php:208 +msgid "All product records" +msgstr "" + +#: Setup/Initialize.php:218 +msgid "All Contracts" +msgstr "" + +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" msgstr "" -#: Setup/Initialize.php:218 -msgid "All Contracts" +#: Config.php:251 Config.php:804 +msgid "None" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Κείμενο" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Ακύρωση" +#: Model/Product.php:252 +msgid "Subproducts" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "ΟΚ" +#: Model/Product.php:272 +msgid "Is Sales Product" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Συνεργάτης" + +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/en.po b/tine20/Sales/translations/en.po index e59868ef93f..2e66bf906c4 100644 --- a/tine20/Sales/translations/en.po +++ b/tine20/Sales/translations/en.po @@ -14,954 +14,882 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "Invoice is cleared already" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "Address as Billing Address in Use" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "Following Invoices Found" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "No Right to alter the Number" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "You are not allowed to alter the number afterwards!" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "Number duplicate" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "Unknown Currency Code" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "Manage Products" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." -msgstr "Add, edit and delete products." - -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "Manage Contracts" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "You do not have admin rights on Sales" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "Add, edit and delete contracts." +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "Boilerplate" +msgstr[1] "Boilerplates" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" -msgstr "Manage Cost Centers" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" +msgstr "You have to set a customer!" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" +msgstr "Add New Offer" -#: Acl/Rights.php:200 -msgid "Manage Customers" -msgstr "Manage Customers" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Number" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "Add, edit and delete customers." +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Title" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" -msgstr "Manage Suppliers" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "Customer" +msgstr[1] "Customers" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Description" -#: Acl/Rights.php:208 -msgid "manage invoices" -msgstr "manage invoices" +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" +msgstr "Enter description" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." -msgstr "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" +msgstr "Approver" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" -msgstr "Manage Order Confirmations" +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" +msgstr "without approver" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" +msgstr "Select invoice" -#: Acl/Rights.php:216 -msgid "Manage Offers" -msgstr "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "Invoice" +msgstr[1] "Invoices" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" +msgstr "Invoice Number" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" +msgstr "Date" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "Add, edit and delete purchase invoices." +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" +msgstr "Type" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "Supplier" +msgstr[1] "Suppliers" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." -msgstr "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" +msgstr "Billing Address" -#: Acl/Rights.php:228 -msgid "Set number of invoices" -msgstr "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" +msgstr "Miscellaneous" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." -msgstr "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" +msgstr "Credit Term" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" -msgstr "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "Cleared" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" -msgstr "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" +msgstr "Price Net" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" -msgstr "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" +msgstr "Taxes (VAT)" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" -msgstr "INVOICE" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" +msgstr "Total Price" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "You do not have admin rights on Sales" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" +msgstr "Add New Order Confirmation" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "Boilerplate" -msgstr[1] "Boilerplates" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Contract" +msgstr[1] "Contracts" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "The number you have tried to set is already in use!" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "Offer" +msgstr[1] "Offers" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" -msgstr "You have to set a customer!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" +msgstr "Copy address to the clipboard" -#: Model/Customer.php:38 -msgid "GENDER_Customer" -msgstr "GENDER_Customer" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" +msgstr "Select supplier" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "Customer" -msgstr[1] "Customers" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" +msgstr "Core Data" -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" -msgstr "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" +msgstr "Supplier Number" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "Name" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" -msgstr "Name shorthand" - -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 msgid "Web" msgstr "Web" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Description" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 msgid "Contact Person (external)" msgstr "Contact Person (external)" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 msgid "Contact Person (internal)" msgstr "Contact Person (internal)" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" +msgstr "Accounting" + +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" +msgstr "IBAN" + +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" +msgstr "BIC" + +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 msgid "VAT ID" msgstr "VAT ID" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" -msgstr "Credit Term (days)" - -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "Currency" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "Currency Translation Rate" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" -msgstr "Discount (%)" - -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" -msgstr "Delivery Addresses" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" +msgstr "Either postalcode or postbox is required!" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" -msgstr "Billing Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" +msgstr "Copy Supplier" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" -msgstr "GENDER_Supplier" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" +msgstr "Add New Supplier" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "Supplier" -msgstr[1] "Suppliers" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" +msgstr "Edit Supplier \"{0}\"" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" -msgstr "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" +msgstr "Credit Term (days)" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" -msgstr "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" +msgstr "Postal Address" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" -msgstr "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" +msgstr "Email" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "Street" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "Postbox" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "Postalcode" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "Locality" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "Region" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "Country" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "Postbox" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" +msgstr "Prefix" -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "GENDER_Contract" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" +msgstr "Additional Prefix" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Contract" -msgstr[1] "Contracts" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Cancel" -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "Products" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" +msgstr "Ok" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Number" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" +msgstr "Selected {0}" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Title" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" +msgstr "Billing Addresses" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" -msgstr "Billing Address" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" +msgstr "Price Gross" + +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" +msgstr "Export Records from these Positions" + +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" +msgstr "Select customer" + +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" +msgstr "Customer Number" + +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "Order Confirmation" +msgstr[1] "Order Confirmations" + +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" +msgstr "without order confirmation" + +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" +msgstr "Bill Contract" + +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." +msgstr "Billing Contract..." + +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" +msgstr "Bill Contract \"{0} - {1}\"" + +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" +msgstr "Select the date to generate the bill for" + +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" +msgstr "Set as accountable" + +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" +msgstr "Choose product for accountable" + +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Please use a decimal number here!" + +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" +msgstr "Positions" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 msgid "Start Date" msgstr "Start Date" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 msgid "End Date" msgstr "End Date" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 msgid "Lead Cost Center" msgstr "Lead Cost Center" -#: Model/Contract.php:229 -msgid "Merge" -msgstr "Merge" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Enter description..." -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Responsible" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" +msgstr "Confirm Status Change" -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Partner" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" +msgstr "Changing this workflow status might not be revertible. Proceed anyway?" -#: Model/Contract.php:277 -msgid "Time Account" -msgstr "Time Account" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" +msgstr "More Boilerplates" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" -msgstr "GENDER_Offer" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" +msgstr "Choose Boilerplate" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "Offer" -msgstr[1] "Offers" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" +msgstr "Please choose which boilerplate you want to use as { name }" -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "Order Confirmation" -msgstr[1] "Order Confirmations" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" +msgstr "Existing:" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "Position" -msgstr[1] "Positions" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" +msgstr "Applicable:" -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" -msgstr "GENDER_Position" +#: js/Document/TracAction.js:18 +msgid "Track Document" +msgstr "Track Document" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" -msgstr "Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "Print Paper Slip" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." -msgstr "Pos." +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" +msgstr "Creating {type} Paper Slip" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Product" -msgstr[1] "Products" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "There where Errors:" -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" -msgstr "Grouping" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +msgstr "Cannot create { type } paper slip: ({e.code}) { e.message }" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" -msgstr "Sorting" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" +msgstr "Send by E-Mail" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" -msgstr "Product / Service" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" +msgstr "Trac Document { title }" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" -msgstr "Quantity" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" +msgstr "Expand Positions" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" -msgstr "Use Actual Quantity" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" +msgstr "Reversal" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" -msgstr "Unit" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" +msgstr "Reversals" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" -msgstr "Unit Price" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" +msgstr "Create { targetRecordName }" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" -msgstr "Price" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" +msgstr "Creating { targetRecordsName }" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" -msgstr "Position Discount Type" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "Book unbooked { sourceRecordsName }" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" -msgstr "Position Discount Percentage" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" +msgstr "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" -msgstr "Position Discount Sum" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +msgstr "Cannot book { sourceDocument }: ({e.code}) { e.message }" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" -msgstr "Net price" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" +msgstr "Nothing to do" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" -msgstr "Sales Tax Rate" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." +msgstr "{ document } has no open positions left." -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" -msgstr "Sales Tax" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" +msgstr "Choose { sourceRecordsName }" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" -msgstr "Gross Price" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" +msgstr "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" -msgstr "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +msgstr "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" -msgstr "Costcenter" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" +msgstr "Documents Created:" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" -msgstr "GENDER_Invoice" - -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "Invoice" -msgstr[1] "Invoices" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" -msgstr "Invoice Number" - -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "Address" -msgstr[1] "Addresss" - -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" -msgstr "Date" - -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" -msgstr "Interval Begins" - -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" -msgstr "Interval Ends" - -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" -msgstr "Credit Term" - -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" -msgstr "Cost Center" - -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "Cleared" - -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" -msgstr "Price Net" - -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" -msgstr "Taxes (VAT)" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" +msgstr "without customer" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" -msgstr "Price Gross" +#: js/ContractFilterModel.js:32 +msgid "without contract" +msgstr "without contract" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" -msgstr "Inventory Change" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" +msgstr "Copy Customer" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" -msgstr "Positions" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" +msgstr "Add New Customer" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" -msgstr "Reversal Invoice" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" +msgstr "Edit Customer \"{0}\"" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" -msgstr "Invoice Item" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" +msgstr "Discount (%)" -#: Model/Address.php:62 -msgid "GENDER_Address" -msgstr "GENDER_Address" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" +msgstr "Name shorthand" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 msgid "Language" msgstr "Language" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" -msgstr "Email" - -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "Prefix 1" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "Prefix 2" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "Prefix 3" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Product" +msgstr[1] "Products" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" -msgstr "Billing Interval" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" +msgstr "Quantity" + +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" +msgstr "Interval" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "Billing Point" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" -msgstr "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" +msgstr "begin" -#: Model/Boilerplate.php:74 -msgid "Model" -msgstr "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" +msgstr "end" -#: Model/Boilerplate.php:95 -msgid "From" -msgstr "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" +msgstr "Attributes" -#: Model/Boilerplate.php:110 -msgid "Until" -msgstr "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" +msgstr "Last Autobill" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" -msgstr "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" +msgstr "Creation Time" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" -msgstr "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" +msgstr "Created By" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "Subproduct" -msgstr[1] "Subproducts" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" +msgstr "Last Modified Time" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" -msgstr "Shortcut" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" +msgstr "Last Modified By" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" -msgstr "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" +msgstr "Edit Attributes" -#: Model/SubProductMapping.php:141 -msgid "Amount" -msgstr "Amount" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" +msgstr "Attribute" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" -msgstr "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" +msgstr "Value" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "Purchase Invoice" -msgstr[1] "Purchase Invoices" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." +msgstr "Add a New Value..." -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" -msgstr "Approver" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "OK" + +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" +msgstr "Apply postal address" + +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" +msgstr "Number Debit" + +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "Address" +msgstr[1] "Addresss" + +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" +msgstr "Copy Purchase Invoice" + +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" +msgstr "Add New Purchase Invoice" + +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" +msgstr "Edit Purchase Invoice \"{0}\"" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 msgid "Date of invoice" msgstr "Date of invoice" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 msgid "Due in" msgstr "Due in" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" -msgstr "Due at" - -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" -msgstr "Payed at" - -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "Payment Method" - -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "Discount until" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" +msgstr "Due date" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 msgid "Additional Price Gross" msgstr "Additional Price Gross" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" -msgstr "Total Price" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" +msgstr "Sales Tax (percent)" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Category" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "Purchase Invoice" +msgstr[1] "Purchase Invoices" -#: Model/Product.php:136 -msgid "GTIN" -msgstr "GTIN" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." +msgstr "automatically set..." -#: Model/Product.php:174 -msgid "Default Grouping" -msgstr "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" +msgstr "Overdue date" -#: Model/Product.php:180 -msgid "Default Sorting" -msgstr "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" +msgstr "Discount until" -#: Model/Product.php:200 -msgid "Purchaseprice" -msgstr "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" +msgstr "Dun date" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" +msgstr "Payed at" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "Method of payment" -#: Model/Product.php:239 -msgid "Subproducts" -msgstr "Subproducts" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" +msgstr "without supplier" -#: Model/Product.php:256 -msgid "Is Sales Product" -msgstr "Is Sales Product" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" +msgstr "Clipboard" -#: Model/Product.php:262 -msgid "Is active" -msgstr "Is active" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" +msgstr "Products" -#: Model/Product.php:273 -msgid "Accountable" -msgstr "Accountable" - -#: Model/Product.php:282 -msgid "Lifespan start" -msgstr "Lifespan start" - -#: Model/Product.php:290 -msgid "Lifespan end" -msgstr "Lifespan end" - -#: Model/Document/Order.php:43 -msgid "GENDER_Order" -msgstr "GENDER_Order" - -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "Order" -msgstr[1] "Orders" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" -msgstr "Status" - -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" -msgstr "Invoice Recipient" - -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" -msgstr "Delivery Recipient" - -#: Model/Document/Order.php:134 -msgid "OR-" -msgstr "OR-" - -#: Model/Document/Offer.php:114 -msgid "OF-" -msgstr "OF-" - -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "Document" -msgstr[1] "Documents" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" +msgstr "Delivery Address" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" -msgstr "GENDER_Document" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" +msgstr "Delivery Addresses" -#: Model/Document/Abstract.php:134 -msgid "Document Number" -msgstr "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" +msgstr "Generic" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" -msgstr "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" +msgstr "Price" -#: Model/Document/Abstract.php:195 -msgid "Document Date" -msgstr "Document Date" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" +msgstr "Discount" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" -msgstr "Customer Reference" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" +msgstr "Total" -#: Model/Document/Abstract.php:223 -msgid "Recipient" -msgstr "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "total" +msgstr "total" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" -msgstr "Reference Person" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" +msgstr "inclusive" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" -msgstr "Positions Net Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" +msgstr "exceeding" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" -msgstr "Positions Discount Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" +msgstr "Create timesheet" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" -msgstr "Invoice Discount Type" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" +msgstr "Create Reversal Invoice" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" -msgstr "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" +msgstr "Copy Invoice" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" -msgstr "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" +msgstr "Add New Invoice" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" -msgstr "Net Sum" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" +msgstr "Edit Invoice \"{0}\"" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" -msgstr "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" +msgstr "Positions ({0})" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" -msgstr "Gross Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" +msgstr "No customer assigned" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" -msgstr "Internal Note" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +msgstr "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" -msgstr "Proforma Number" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "No cost center assigned" -#: Model/Document/Invoice.php:86 -msgid "PI-" -msgstr "PI-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +msgstr "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." -#: Model/Document/Invoice.php:104 -msgid "IN-" -msgstr "IN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" +msgstr "Inventory Change" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" -msgstr "GENDER_Delivery" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "Interval Begins" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "Delivery" -msgstr[1] "Deliveries" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "Interval Ends" -#: Model/Document/Delivery.php:83 -msgid "PD-" -msgstr "PD-" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "Rebilling Invoice..." -#: Model/Document/Delivery.php:108 -msgid "DN-" -msgstr "DN-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "Rebill Invoice" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "Invoice Position" -msgstr[1] "Invoice Positions" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "Merge Invoices" -#: Model/InvoicePosition.php:90 -msgid "Month" -msgstr "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" +msgstr "Arial" #: Setup/Initialize.php:34 msgid "My Products" @@ -1016,8 +944,8 @@ msgid "All Suppliers" msgstr "All Suppliers" #: Setup/Initialize.php:160 -msgid "All supllier records" -msgstr "All supllier records" +msgid "All supplier records" +msgstr "All supplier records" #: Setup/Initialize.php:183 msgid "All Purchase Imvoices" @@ -1059,816 +987,997 @@ msgstr "All Order Confirmations" msgid "All order confirmation records" msgstr "All order confirmation records" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "Auto Invoice Contract Interval" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "Sets the biggest interval, contracts will be billed." -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "Followup Status" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "Possible Followup Status" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "None" + +#: Config.php:257 +msgid "Partially" +msgstr "Partially" + +#: Config.php:263 +msgid "Completed" +msgstr "Completed" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "Reversal Status" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "Possible Reversal Status" + +#: Config.php:285 +msgid "Not reversed" +msgstr "Not reversed" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "Partially reversed" + +#: Config.php:297 +msgid "Reversed" +msgstr "Reversed" + +#: Config.php:307 msgid "Offer Status" msgstr "Offer Status" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "Possible Offer Status" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "Draft (unbooked, open)" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "Released (booked, open)" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "Ordered (booked, closed)" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "Rejected (booked, closed)" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "Offer Status Transitions" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "Possible Offer Status Transitions" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "Order Status" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "Possible Order Status" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "Received (unbooked, open)" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "Accepted (booked, open)" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "Done (booked, closed)" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "Order Status Transitions" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "Possible Order Status Transitions" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "Delivery Status" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "Possible Delivery Status" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "Created (unbooked, open)" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "Delivery Status Transitions" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "Possible Delivery Status Transitions" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "Invoice Status" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "Possible Invoice Status" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "Proforma (unbooked, open)" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "Booked (booked, open)" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "Shipped (booked, closed)" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "Paid (booked, closed)" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "Invoice Status Transitions" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "Possible Invoice Status Transitions" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "Ignore Billables Before Date" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "Sets the date billables will be ignored before." -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Contract Number Creation" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "Should the contract number be set manually or be auto-created?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automatically" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "manually" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Contract Number Validation" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "The Number can be validated as text or number." -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Text" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "Own Currency" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "The currency defined here is used as default currency in the customerd edit dialog." -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "Languages Available" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "List of languages available in the sales modules." -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "Invoice Type" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "Possible Invoice Types." -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" -msgstr "Reversal" - -#: Config.php:604 Config.php:780 +#: Config.php:694 Config.php:870 msgid "Credit" msgstr "Credit" -#: Config.php:619 +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" +msgstr "Invoice Discount Type" + +#: Config.php:709 msgid "Percentage" msgstr "Percentage" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "Sum" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "Document Position Type" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "Heading" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "Page Break" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "Alternative" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "Optional" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "Document Category" + +#: Config.php:745 msgid "Standard" msgstr "Standard" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "Product Category" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "Possible Product Categories." -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "Default" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "Product Unfold Type" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "Shared" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "Own" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "Product Unit" -#: Config.php:705 +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" +msgstr "Piece" + +#: Config.php:795 msgid "Sub-Product Variable Position Flag" msgstr "Sub-Product Variable Position Flag" -#: Config.php:706 +#: Config.php:796 msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." -#: Config.php:714 -msgid "None" -msgstr "None" - -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "Product Number Creation" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "Should the product number be set manually or be auto-created?" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "Product Number Validation" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "Product Number Prefix" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "The prefix of the product number." -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "Product Number Zero Fill" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "Fill the number with leading zero" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "Payment Method" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "Possible Payment Methods." -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "Bank transfer" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "Direct debit" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "Cancellation" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "Credit card" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "EC card" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "Paypal" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "Assets" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "Invoice Cleared" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "Possible Invoice Cleared States." -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "to clear" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "cleared" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "Enabled Features" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "Enabled Features in Sales Application." -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "Invoices Module" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "Offers Module" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "Legacy Offers" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "Order Confirmations Module" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "Suppliers Module" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "Purchase Invoice Module" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" -msgstr "Arial" - -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" -msgstr "without customer" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" +msgstr "Legacy (non-document) Offers)" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" -msgstr "Interval" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "The number you have tried to set is already in use!" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" -msgstr "begin" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" +msgstr "GENDER_Order Confirmation" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" -msgstr "end" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "Invoice Position" +msgstr[1] "Invoice Positions" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" -msgstr "Attributes" +#: Model/InvoicePosition.php:90 +msgid "Month" +msgstr "Month" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" -msgstr "Last Autobill" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" +msgstr "Unit" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" -msgstr "Creation Time" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" +msgstr "GENDER_Offer" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" -msgstr "Created By" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Category" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" -msgstr "Last Modified Time" +#: Model/Product.php:149 +msgid "GTIN" +msgstr "GTIN" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" -msgstr "Last Modified By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" +msgstr "Shortcut" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" -msgstr "Edit Attributes" +#: Model/Product.php:187 +msgid "Default Grouping" +msgstr "Default Grouping" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" -msgstr "Attribute" +#: Model/Product.php:193 +msgid "Default Sorting" +msgstr "Default Sorting" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" -msgstr "Value" +#: Model/Product.php:213 +msgid "Purchaseprice" +msgstr "Purchaseprice" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." -msgstr "Add a New Value..." +#: Model/Product.php:223 +msgid "Salesprice" +msgstr "Salesprice" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Cancel" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" +msgstr "Sales Tax Rate" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "OK" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Manufacturer" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" -msgstr "Bill Contract" +#: Model/Product.php:252 +msgid "Subproducts" +msgstr "Subproducts" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." -msgstr "Billing Contract..." +#: Model/Product.php:272 +msgid "Is Sales Product" +msgstr "Is Sales Product" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" -msgstr "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:278 +msgid "Is active" +msgstr "Is active" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" -msgstr "Select the date to generate the bill for" +#: Model/Product.php:289 +msgid "Accountable" +msgstr "Accountable" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" -msgstr "Either postalcode or postbox is required!" +#: Model/Product.php:298 +msgid "Lifespan start" +msgstr "Lifespan start" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" -msgstr "Copy Supplier" +#: Model/Product.php:309 +msgid "Lifespan end" +msgstr "Lifespan end" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" -msgstr "Add New Supplier" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" +msgstr "Costcenter" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" -msgstr "Edit Supplier \"{0}\"" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" +msgstr "Cost Bearer" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" -msgstr "Copy address to the clipboard" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" +msgstr "GENDER_Subproduct" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" -msgstr "Core Data" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "Subproduct" +msgstr[1] "Subproducts" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" -msgstr "Accounting" +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" +msgstr "Variable Position Flag" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" -msgstr "IBAN" +#: Model/SubProductMapping.php:141 +msgid "Amount" +msgstr "Amount" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" -msgstr "BIC" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" +msgstr "Sorting" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" -msgstr "Postal Address" +#: Model/Address.php:62 +msgid "GENDER_Address" +msgstr "GENDER_Address" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" -msgstr "Miscellaneous" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" +msgstr "Invoice Item" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" -msgstr "Enter description" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" +msgstr "Billing Interval" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" -msgstr "Copy Purchase Invoice" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" +msgstr "Status" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" -msgstr "Add New Purchase Invoice" +#: Model/Document/Offer.php:108 +msgid "Order Created" +msgstr "Order Created" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "Order Booked" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" -msgstr "Due date" +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "OF-" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" -msgstr "Sales Tax (percent)" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "GENDER_Order" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." -msgstr "automatically set..." +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "Order" +msgstr[1] "Orders" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" -msgstr "Overdue date" +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "Delivery Created" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" -msgstr "Dun date" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "Delivery Booked" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" -msgstr "Method of payment" +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "Invoice Created" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" -msgstr "without order confirmation" +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "Invoice Booked" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" -msgstr "Add New Offer" +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "Invoice Recipient" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" -msgstr "Select supplier" +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "Delivery Recipient" -#: js/InvoiceEditDialog.js:76 -msgid "total" -msgstr "total" +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "Shared Delivery" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" -msgstr "inclusive" +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "Shared Invoice" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" -msgstr "exceeding" +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "OR-" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" -msgstr "Create timesheet" +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "Document" +msgstr[1] "Documents" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" -msgstr "Create Reversal Invoice" +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "GENDER_Document" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" -msgstr "Copy Invoice" +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "Document Number" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" -msgstr "Add New Invoice" +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "Boilerplates" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" -msgstr "Edit Invoice \"{0}\"" +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "Document Date" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" -msgstr "Positions ({0})" +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "Customer Reference" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" -msgstr "No customer assigned" +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "Recipient" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." -msgstr "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "Reference Person" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" -msgstr "No cost center assigned" +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "Positions Net Sum" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." -msgstr "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "Positions Discount Sum" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" -msgstr "Generic" +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "Invoice Discount Percentage" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" -msgstr "Discount" +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "Invoice Discount Sum" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" -msgstr "Total" +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "Net Sum" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" -msgstr "Select customer" +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "Sales Tax" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" -msgstr "Add New Order Confirmation" +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "Sales Tax by Rate" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" -msgstr "without supplier" +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "Gross Sum" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" -msgstr "Delivery Address" +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "Cost Center" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." -msgstr "Rebilling Invoice..." +#: Model/Document/Abstract.php:381 +msgid "Internal Note" +msgstr "Internal Note" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" -msgstr "Rebill Invoice" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" +msgstr "GENDER_Delivery" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" -msgstr "Merge Invoices" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "Delivery" +msgstr[1] "Deliveries" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" -msgstr "Select invoice" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" +msgstr "Proforma Number" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" -msgstr "Selected {0}" +#: Model/Document/Delivery.php:87 +msgid "PD-" +msgstr "PD-" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" -msgstr "Set as accountable" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" +msgstr "Shared Document" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" -msgstr "Choose product for accountable" +#: Model/Document/Delivery.php:119 +msgid "DN-" +msgstr "DN-" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Please use a decimal number here!" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" +msgstr "GENDER_Invoice" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Enter description..." +#: Model/Document/Invoice.php:90 +msgid "PI-" +msgstr "PI-" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" -msgstr "Export Records from these Positions" +#: Model/Document/Invoice.php:115 +msgid "IN-" +msgstr "IN-" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" -msgstr "Clipboard" +#: Model/Customer.php:38 +msgid "GENDER_Customer" +msgstr "GENDER_Customer" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" -msgstr "Print Paper Slip" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" +msgstr "Reversal Invoice" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" -msgstr "Creating {type} Paper Slip" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" +msgstr "GENDER_Supplier" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" -msgstr "There where Errors:" +#: Model/Boilerplate.php:74 +msgid "Model" +msgstr "Model" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" -msgstr "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Model/Boilerplate.php:95 +msgid "From" +msgstr "From" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" -msgstr "Trac Document { title }" +#: Model/Boilerplate.php:110 +msgid "Until" +msgstr "Until" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" -msgstr "Expand Positions" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" +msgstr "Due at" -#: js/Document/TracAction.js:18 -msgid "Track Document" -msgstr "Track Document" +#: Model/Contract.php:45 +msgid "GENDER_Contract" +msgstr "GENDER_Contract" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" -msgstr "Reversals" +#: Model/Contract.php:235 +msgid "Merge" +msgstr "Merge" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" -msgstr "Create { targetRecordName }" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Responsible" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" -msgstr "Creating { targetRecordsName }" +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Partner" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" -msgstr "Book unbooked { sourceRecordsName }" +#: Model/Contract.php:283 +msgid "Time Account" +msgstr "Time Account" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" -msgstr "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "Position" +msgstr[1] "Positions" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" -msgstr "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" +msgstr "GENDER_Position" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" -msgstr "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." +msgstr "Pos." -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" -msgstr "Documents Created:" +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" +msgstr "Grouping" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" -msgstr "Confirm Status Change" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" +msgstr "Product / Service" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" -msgstr "Changing this workflow status might not be revertible. Proceed anyway?" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" +msgstr "Use Actual Quantity" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" -msgstr "More Boilerplates" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" +msgstr "Unit Price" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" -msgstr "Choose Boilerplate" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" +msgstr "Position Discount Type" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" -msgstr "Please choose which boilerplate you want to use as { name }" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" +msgstr "Position Discount Percentage" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" -msgstr "Existing:" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" +msgstr "Position Discount Sum" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" -msgstr "Applicable:" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" +msgstr "Net price" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" -msgstr "Apply postal address" +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" +msgstr "Gross Price" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" -msgstr "Either street or postbox is required!" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" +msgstr "CLEARED" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" -msgstr "Copy Customer" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" +msgstr "INVOICE" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" -msgstr "Add New Customer" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" +msgstr "Excel all data" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" -msgstr "Edit Customer \"{0}\"" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" +msgstr "Invoice Timesheet" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" -msgstr "Ok" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" +msgstr "CSV all data" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" -msgstr "without approver" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" +msgstr "No Right to alter the Number" -#: js/ContractFilterModel.js:32 -msgid "without contract" -msgstr "without contract" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" +msgstr "You are not allowed to alter the number afterwards!" + +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "Invoice is cleared already" + +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" +msgstr "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" + +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +msgstr "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" + +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" +msgstr "Following Invoices Found" + +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +msgstr "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" + +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" +msgstr "Number duplicate" + +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +msgstr "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." + +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" +msgstr "Unknown Currency Code" + +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +msgstr "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." + +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" +msgstr "Address as Billing Address in Use" + +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." +msgstr "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." + +#: Acl/Rights.php:188 +msgid "Manage Products" +msgstr "Manage Products" + +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." +msgstr "Add, edit and delete products." + +#: Acl/Rights.php:192 +msgid "Manage Contracts" +msgstr "Manage Contracts" + +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." +msgstr "Add, edit and delete contracts." + +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" +msgstr "Manage Cost Centers" + +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." +msgstr "Add, edit and delete cost centers." + +#: Acl/Rights.php:200 +msgid "Manage Customers" +msgstr "Manage Customers" + +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." +msgstr "Add, edit and delete customers." + +#: Acl/Rights.php:204 +msgid "Manage Suppliers" +msgstr "Manage Suppliers" + +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." +msgstr "Add, edit and delete suppliers." + +#: Acl/Rights.php:208 +msgid "manage invoices" +msgstr "manage invoices" + +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." +msgstr "Add, edit and delete invoices." + +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" +msgstr "Manage Order Confirmations" + +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." +msgstr "Add, edit and delete order confirmations." + +#: Acl/Rights.php:216 +msgid "Manage Offers" +msgstr "Manage Offers" + +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." +msgstr "Add, edit and delete offers." + +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" +msgstr "Manage Purchase Invoices" + +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." +msgstr "Add, edit and delete purchase invoices." + +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" +msgstr "Change number of an order confirmations" + +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." +msgstr "Allow changing the number of an order confirmation during the update." + +#: Acl/Rights.php:228 +msgid "Set number of invoices" +msgstr "Set number of invoices" + +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." +msgstr "Allow to set the number of an invoice." diff --git a/tine20/Sales/translations/en_AU.po b/tine20/Sales/translations/en_AU.po index 12704f3ebca..770af95afcf 100644 --- a/tine20/Sales/translations/en_AU.po +++ b/tine20/Sales/translations/en_AU.po @@ -16,953 +16,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1018,7 +946,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1061,816 +989,997 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/en_NZ.po b/tine20/Sales/translations/en_NZ.po index 84da671d54b..3dc71674d8b 100644 --- a/tine20/Sales/translations/en_NZ.po +++ b/tine20/Sales/translations/en_NZ.po @@ -16,953 +16,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1018,7 +946,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1061,816 +989,997 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/es.po b/tine20/Sales/translations/es.po index aba2178cef2..ae6ba3deb00 100644 --- a/tine20/Sales/translations/es.po +++ b/tine20/Sales/translations/es.po @@ -17,953 +17,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "No tienes derechos de administrador en Ventas" -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Número" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Título" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Descripción" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "Autorizado" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Contrato" +msgstr[1] "Contratos" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Nombre" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "No tienes derechos de administrador en Ventas" - -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Nombre" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Descripción" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Cancelar" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Contrato" -msgstr[1] "Contratos" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Número" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Título" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Responsable" - -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Socio" - -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Por favor utilice un número decimal aquí!" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" +msgstr "" -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Producto" -msgstr[1] "Productos" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Escribir Descripción..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "Autorizado" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" +msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Producto" +msgstr[1] "Productos" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "OK" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Categoría" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Manufacturero" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1019,7 +947,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1042,838 +970,1019 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automaticamente" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "manual" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Texto" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Categoría" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Manufacturero" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Cancelar" +#: Model/Product.php:278 +msgid "Is active" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "OK" +#: Model/Product.php:289 +msgid "Accountable" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Responsable" + +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Socio" + +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Por favor utilice un número decimal aquí!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" +msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Escribir Descripción..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "Division" diff --git a/tine20/Sales/translations/es_MX.po b/tine20/Sales/translations/es_MX.po index d2198730b6b..7ab5277036c 100644 --- a/tine20/Sales/translations/es_MX.po +++ b/tine20/Sales/translations/es_MX.po @@ -17,953 +17,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Título" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Descripción" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Contrato" +msgstr[1] "Contratos" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Nombre" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Nombre" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Descripción" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" - -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Contrato" -msgstr[1] "Contratos" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Título" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Producto" -msgstr[1] "Productos" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Ingresar Descripción..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Producto" +msgstr[1] "Productos" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Categoría" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Fabricante" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1019,7 +947,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1062,818 +990,999 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Categoría" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Fabricante" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Ingresar Descripción..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "manage products" diff --git a/tine20/Sales/translations/et.po b/tine20/Sales/translations/et.po index 64f531da873..39e65d8e8f2 100644 --- a/tine20/Sales/translations/et.po +++ b/tine20/Sales/translations/et.po @@ -16,953 +16,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1018,7 +946,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1061,816 +989,997 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/fa_IR.po b/tine20/Sales/translations/fa_IR.po index c103aac6863..8ae49567a67 100644 --- a/tine20/Sales/translations/fa_IR.po +++ b/tine20/Sales/translations/fa_IR.po @@ -16,953 +16,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1018,7 +946,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1061,816 +989,997 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/fi.po b/tine20/Sales/translations/fi.po index 17977d2e795..ed0f7c4d814 100644 --- a/tine20/Sales/translations/fi.po +++ b/tine20/Sales/translations/fi.po @@ -18,953 +18,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "Sinulla ei ole ylläpitäjän oikeuksia myyntiin" -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Numero" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Otsikko" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Kuvaus" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Sopimus" +msgstr[1] "Sopimukset" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Nimi" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "Sinulla ei ole ylläpitäjän oikeuksia myyntiin" - -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "Numero jota koitit lisätä on jo käytössä" - -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Nimi" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Kuvaus" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Peruuta" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Sopimus" -msgstr[1] "Sopimukset" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Numero" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Otsikko" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" -msgstr "" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Käytä desimaalinumeroita tässä!." -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Tuote" -msgstr[1] "Tuotteet" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Lisää kuvaus..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "" - -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" -msgstr "" - -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Tuote" +msgstr[1] "Tuotteet" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "Ok" + +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" + +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Kategoria" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" +msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Valmistaja" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1020,7 +948,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1039,842 +967,1023 @@ msgstr "" msgid "All product records" msgstr "" -#: Setup/Initialize.php:218 -msgid "All Contracts" +#: Setup/Initialize.php:218 +msgid "All Contracts" +msgstr "" + +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Sopimusnumero" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "Luodaanko sopimusnumero automaattisesti?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automaattisesti" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "käsin" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Sopimusnumeron vahvistaminen" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "Numero voi olla tekstiä tai numeroita" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Teksti" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "Numero jota koitit lisätä on jo käytössä" + +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Kategoria" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Valmistaja" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Peruuta" +#: Model/Product.php:289 +msgid "Accountable" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "Ok" +#: Model/Product.php:298 +msgid "Lifespan start" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Käytä desimaalinumeroita tässä!." +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" +msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Lisää kuvaus..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "Division" diff --git a/tine20/Sales/translations/fr.po b/tine20/Sales/translations/fr.po index aff86272141..2b716b0a795 100644 --- a/tine20/Sales/translations/fr.po +++ b/tine20/Sales/translations/fr.po @@ -18,953 +18,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Numéro" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Titre" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Description" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Contrat" +msgstr[1] "Contrats" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Nom" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Nom" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Description" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Annuler" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Contrat" -msgstr[1] "Contrats" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Numéro" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Titre" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Responsable" - -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Partenaire" - -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Un nombre décimal est requis" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" +msgstr "" -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produit" -msgstr[1] "Produits" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Saisissez une description..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Produit" +msgstr[1] "Produits" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "Ok" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Categorie" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Fabricant" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1020,7 +948,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1043,838 +971,1019 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automatique" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "manuel" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Texte" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Categorie" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Fabricant" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Annuler" +#: Model/Product.php:278 +msgid "Is active" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "Ok" +#: Model/Product.php:289 +msgid "Accountable" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Responsable" + +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Partenaire" + +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Un nombre décimal est requis" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" +msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Saisissez une description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "Division" diff --git a/tine20/Sales/translations/he.po b/tine20/Sales/translations/he.po index 52191ed607c..2e9646e7a8d 100644 --- a/tine20/Sales/translations/he.po +++ b/tine20/Sales/translations/he.po @@ -16,438 +16,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -455,546 +400,517 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1050,7 +966,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1073,836 +989,1029 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/he_IL.po b/tine20/Sales/translations/he_IL.po index 9d79e25f8d9..9a0b1445cdc 100644 --- a/tine20/Sales/translations/he_IL.po +++ b/tine20/Sales/translations/he_IL.po @@ -16,438 +16,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -455,546 +400,517 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1050,7 +966,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1073,836 +989,1029 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/hr_HR.po b/tine20/Sales/translations/hr_HR.po index 6bfdb55c037..e4235cc1048 100644 --- a/tine20/Sales/translations/hr_HR.po +++ b/tine20/Sales/translations/hr_HR.po @@ -22,969 +22,891 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "Nemate admin prava na Prodaju." -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Broj" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Naslov" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Opis" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "Izvršeno" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Ugovor" +msgstr[1] "Ugovora" +msgstr[2] "Ugovora" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Naziv" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "Nemate admin prava na Prodaju." - -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "Broj koji želite postaviti je upotrijebljen." - -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Naziv" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Opis" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Odustani" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Ugovor" -msgstr[1] "Ugovora" -msgstr[2] "Ugovora" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Broj" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Naslov" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Zadužen" - -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Partner" - -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Potrebno koristiti decimalni broj." -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" +msgstr "" -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Proizvod" -msgstr[1] "Proizvoda" -msgstr[2] "Proizvoda" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Unesite opis.." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "Izvršeno" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" +msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Proizvod" +msgstr[1] "Proizvoda" +msgstr[2] "Proizvoda" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "Potvrdi" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Kategorija" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Proizvođač" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1040,7 +962,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1083,818 +1005,1005 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Kreiranje broja ugovora" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "Potrebno broj ugovora kreirati ručno ili automatski?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automatski" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "ručno" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Validacija broja ugovora" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "Broj ugovora može biti validiran kao tekst ili kao broj." -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Tekst" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "Broj koji želite postaviti je upotrijebljen." + +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Kategorija" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Proizvođač" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Odustani" +#: Model/Product.php:289 +msgid "Accountable" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "Potvrdi" +#: Model/Product.php:298 +msgid "Lifespan start" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" +msgstr "" + +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" -msgstr "" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Zadužen" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" -msgstr "" +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Partner" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" -msgstr "" +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Potrebno koristiti decimalni broj." - -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Unesite opis.." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "Division" diff --git a/tine20/Sales/translations/hu.po b/tine20/Sales/translations/hu.po index 756ce4ab500..7ac619f4e84 100644 --- a/tine20/Sales/translations/hu.po +++ b/tine20/Sales/translations/hu.po @@ -17,953 +17,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "Nincs rendszergazda jogosultságod a Salesban" -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Szám" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Cím" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Leírás" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "Lezárva" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Szerződés" +msgstr[1] "Szerződések" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Név" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "Nincs rendszergazda jogosultságod a Salesban" - -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "A beállítani próbált szám használatban van!" - -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Név" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Leírás" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Mégse" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Szerződés" -msgstr[1] "Szerződések" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Szám" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Cím" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Felelős" - -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Partner" - -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Kérlek itt egész számot használj!" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" +msgstr "" -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Termék" -msgstr[1] "Termékek" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Leírás bevitele..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "Lezárva" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" +msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Termék" +msgstr[1] "Termékek" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "OK" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Kategória" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Gyártó" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1019,7 +947,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1042,838 +970,1019 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Szerződés szám készítés" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "A szerződés szám kézzel vagy automatikusan készíthető?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automatikusan" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "kézzel" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Szerződés szám érvényesítés" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "A szám érvényesíthető szövegként vagy számként." -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Szöveg" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "A beállítani próbált szám használatban van!" + +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Kategória" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Gyártó" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Mégse" +#: Model/Product.php:289 +msgid "Accountable" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "OK" +#: Model/Product.php:298 +msgid "Lifespan start" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:88 +msgid "Invoice Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Felelős" + +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Partner" + +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Kérlek itt egész számot használj!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" +msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Leírás bevitele..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "Division" diff --git a/tine20/Sales/translations/it.po b/tine20/Sales/translations/it.po index 99373b166ef..f636cffea86 100644 --- a/tine20/Sales/translations/it.po +++ b/tine20/Sales/translations/it.po @@ -17,953 +17,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "Non si dispone dei permessi amministrativi per le Vendite" -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Numero" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Titolo" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Descrizione" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "Approvato" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Contratto" +msgstr[1] "Contratti" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Nome" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "Non si dispone dei permessi amministrativi per le Vendite" - -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "Il numero che avete cercato di impostare è già in uso!" - -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Nome" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Descrizione" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Cancella" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Contratto" -msgstr[1] "Contratti" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Numero" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Titolo" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Responsabile" - -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Partner" - -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Si prega di utilizzare un numero decimale !" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" +msgstr "" -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Prodotto" -msgstr[1] "Prodotti" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Inserisci descrizione..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "Approvato" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" +msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Prodotto" +msgstr[1] "Prodotti" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "OK" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Categoria" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Produttore" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1019,7 +947,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1042,838 +970,1019 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Numero di creazione del contratto" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "il numero del contratto deve essere impostato manualmente oppure essere autogenerato?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automaticamente" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "manualmente" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Numero di convalida del contratto" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "Il numero può essere convalidato come testo o numero." -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Testo" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "Il numero che avete cercato di impostare è già in uso!" + +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Categoria" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Produttore" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Cancella" +#: Model/Product.php:289 +msgid "Accountable" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "OK" +#: Model/Product.php:298 +msgid "Lifespan start" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:88 +msgid "Invoice Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Responsabile" + +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Partner" + +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Si prega di utilizzare un numero decimale !" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" +msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Inserisci descrizione..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "Division" diff --git a/tine20/Sales/translations/ja.po b/tine20/Sales/translations/ja.po index 5e278d8c846..778103b796e 100644 --- a/tine20/Sales/translations/ja.po +++ b/tine20/Sales/translations/ja.po @@ -16,937 +16,871 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" - -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1002,7 +936,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1045,816 +979,991 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/ja_JP.po b/tine20/Sales/translations/ja_JP.po index 935ba2ee5fb..3277176d3c7 100644 --- a/tine20/Sales/translations/ja_JP.po +++ b/tine20/Sales/translations/ja_JP.po @@ -16,937 +16,871 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" - -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1002,7 +936,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1045,816 +979,991 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/ko.po b/tine20/Sales/translations/ko.po index 4276c55bbce..346a4a937b4 100644 --- a/tine20/Sales/translations/ko.po +++ b/tine20/Sales/translations/ko.po @@ -16,937 +16,871 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" - -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1002,7 +936,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1045,816 +979,991 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/ko_KR.po b/tine20/Sales/translations/ko_KR.po index d1aeead19e0..591b02a2919 100644 --- a/tine20/Sales/translations/ko_KR.po +++ b/tine20/Sales/translations/ko_KR.po @@ -16,937 +16,871 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" - -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1002,7 +936,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1045,816 +979,991 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/lt.po b/tine20/Sales/translations/lt.po index 4cbaf0a2c48..c8b25ff602c 100644 --- a/tine20/Sales/translations/lt.po +++ b/tine20/Sales/translations/lt.po @@ -16,438 +16,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -455,546 +400,517 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1050,7 +966,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1073,836 +989,1029 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/lt_LT.po b/tine20/Sales/translations/lt_LT.po index 3e6c9138380..0cd6a1d44db 100644 --- a/tine20/Sales/translations/lt_LT.po +++ b/tine20/Sales/translations/lt_LT.po @@ -16,438 +16,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -455,546 +400,517 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1050,7 +966,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1073,836 +989,1029 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/nb.po b/tine20/Sales/translations/nb.po index 736e9da4d02..d12dbc030b8 100644 --- a/tine20/Sales/translations/nb.po +++ b/tine20/Sales/translations/nb.po @@ -16,953 +16,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Tittel" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Beskrivelse" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Kontrakt" +msgstr[1] "Kontrakter" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Navn" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Navn" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Beskrivelse" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" - -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Kontrakt" -msgstr[1] "Kontrakter" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Tittel" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkter" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Tast inn beskrivelse..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Produkt" +msgstr[1] "Produkter" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Kategori" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Produsent" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1018,7 +946,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1061,818 +989,999 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Kategori" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Produsent" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Tast inn beskrivelse..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "manage products" diff --git a/tine20/Sales/translations/nl_NL.po b/tine20/Sales/translations/nl_NL.po index a25f02f2e5a..34cb3735a3f 100644 --- a/tine20/Sales/translations/nl_NL.po +++ b/tine20/Sales/translations/nl_NL.po @@ -16,953 +16,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1018,7 +946,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1061,816 +989,997 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/pl.po b/tine20/Sales/translations/pl.po index 07b6ac11a73..136ee4bddf4 100644 --- a/tine20/Sales/translations/pl.po +++ b/tine20/Sales/translations/pl.po @@ -17,438 +17,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "Faktura została już rozliczona" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "Faktura, którą próbowano usunąć, została już rozliczona, dlatego usunięcie jej jest już niemożliwe!" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "Adres używany jako adres fakturowania " - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "Adres, który próbowano usunąć jest używany przez jedną lub więcej umów jako adres fakturowania. Proszę przypisać inny adres fakturowania niniejszej umowy albo zmienić obecny i nie usuwać." - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "Znaleziono następujące faktury" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "Istnieje już faktura do tej samej umowy. Proszę usunąć następującą fakturę(y) przed usunięciem tej!" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "Faktura, którą próbowano wyedytować, jest już rozliczona, dlatego edycja jej nie jest już możliwa!" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "Brak uprawnień do zmiany numeru" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "Nie masz uprawnień, by zmienić numer w późniejszym czasie!" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "Numer duplikatu" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "Numer, który próbowano użyć, jest już zajęty. Proszę użyć innego albo pozostawić puste pole, aby wybrać następny, wolny numer." - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "Nieznany kod waluty" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "Kod waluty, którego próbowano użyć, jest nieważny. Proszę skorzystać z ważnego kodu waluty zgodnego z ISO 4217." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "Nie masz uprawnień administratora do Działu Sprzedaży" -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" +msgstr "Dodaj nową ofertę" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Liczba" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Tytuł" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Opis" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" +msgstr "Dodaj opis" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" -msgstr "zarządzanie fakturami" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" +msgstr "Wybierz rachunek" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" +msgstr "Numer faktury" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" +msgstr "Data" -#: Acl/Rights.php:216 -msgid "Manage Offers" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" +msgstr "Typ" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" +msgstr "Adres fakturowania" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" +msgstr "Różne" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" +msgstr "Warunek kredytu" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "Wyczyszczone" -#: Acl/Rights.php:228 -msgid "Set number of invoices" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" +msgstr "Cena netto" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" -msgstr "ROZLICZONE" - -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" -msgstr "FAKTURA" - -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "Nie masz uprawnień administratora do Działu Sprzedaży" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Kontrakt" +msgstr[1] "kontrakty" +msgstr[2] "kontrakty" +msgstr[3] "kontrakty" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "Wprowadzona liczba jest już używana!" - -#: Frontend/Json.php:571 -msgid "You have to set a customer!" -msgstr "" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" +msgstr "Kopiuj adres do schowka" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" +msgstr "Dane podstawowe" -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" -msgstr "Numer klienta" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" +msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "Nazwa" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" -msgstr "" - -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 msgid "Web" msgstr "WWW" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Opis" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 msgid "Contact Person (external)" msgstr "Osoba kontaktowa (na zewnątrz)" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 msgid "Contact Person (internal)" msgstr "Osoba kontaktowa (wewnątrz)" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" +msgstr "Księgowość" + +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" +msgstr "IBAN" + +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" +msgstr "BIC" + +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 msgid "VAT ID" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" -msgstr "Warunek kredytu (dni)" - -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "Waluta" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "Przelicznik kursu walut" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" -msgstr "Zniżka (%)" - -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" -msgstr "Adresy dostawy" - -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" -msgstr "Adresy fakturowania" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" +msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" -msgstr "Przedrostek" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" +msgstr "Warunek kredytu (dni)" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" -msgstr "Dodatkowy przedrostek" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" +msgstr "Adres pocztowy" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" +msgstr "" + +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "Ulica" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "Skrzynka pocztowa" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "Kod pocztowy" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "Miejscowość" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "Region" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "Kraj" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "Skrzynka pocztowa" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Kontrakt" -msgstr[1] "kontrakty" -msgstr[2] "kontrakty" -msgstr[3] "kontrakty" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "Produkty" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Liczba" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Tytuł" - -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" -msgstr "Adres fakturowania" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" +msgstr "Przedrostek" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" -msgstr "Data początkowa" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" +msgstr "Dodatkowy przedrostek" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" -msgstr "Data końcowa" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Anuluj" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" -msgstr "Główne centrum kostów" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" +msgstr "ok" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Osoba odpowiedzialna" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" +msgstr "Adresy fakturowania" -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Wspólnik" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" +msgstr "Cena brutto" -#: Model/Contract.php:277 -msgid "Time Account" -msgstr "Konto terminowe" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" +msgstr "Eksportuj wiersze od tego miejsca" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" -msgstr "" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" +msgstr "Wybierz klienta" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" +msgstr "Numer klienta" -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -456,547 +401,518 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" +msgstr "bez potwierdzenia zamówienia" -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" -msgstr "" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" +msgstr "Umowa fakturowania" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" -msgstr "Typ" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." +msgstr "Fakturowanie umowy..." -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." -msgstr "" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" +msgstr "Umowa fakturowania \"{0} - {1}\"" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "produkty" -msgstr[2] "produkty" -msgstr[3] "produkty" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" +msgstr "Wybierz datę, aby wygenerować fakturę dla" -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" -msgstr "" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Proszę użyć liczby dziesiętnej!" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" -msgstr "Ilość" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" +msgstr "Pozycje" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" -msgstr "" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" +msgstr "Data początkowa" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" -msgstr "Jednostka" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" +msgstr "Data końcowa" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" -msgstr "" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" +msgstr "Główne centrum kostów" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" -msgstr "" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Proszę wprowadzić opis..." -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" -msgstr "Podatek obrotowy" - -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" -msgstr "Numer faktury" - -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" -msgstr "Data" - -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" -msgstr "Początek przerwy" - -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" -msgstr "Koniec przerwy" - -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" -msgstr "Warunek kredytu" - -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "Wyczyszczone" - -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" -msgstr "Cena netto" - -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" -msgstr "Cena brutto" - -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" -msgstr "Pozycje" - -#: Model/Invoice.php:284 -msgid "Reversal Invoice" -msgstr "Odwrócona faktura" - -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" -msgstr "Pozycja z faktury" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" +msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "Numer zapłaty" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" -msgstr "Częstotliwość rozliczeń" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" +msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" -msgstr "Punkt rozliczeniowy" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" -msgstr "Kawałek" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" +msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" +msgstr "bez klienta" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" -msgstr "" +#: js/ContractFilterModel.js:32 +msgid "without contract" +msgstr "bez umowy" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" -msgstr "" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" +msgstr "Skopiuj klienta" -#: Model/SubProductMapping.php:141 -msgid "Amount" -msgstr "" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" +msgstr "Dodaj nowego klienta" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" -msgstr "" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" +msgstr "Edytuj klienta \"{0}\"" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" +msgstr "Zniżka (%)" -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Produkt" +msgstr[1] "produkty" +msgstr[2] "produkty" +msgstr[3] "produkty" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" +msgstr "Ilość" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" -msgstr "" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" +msgstr "przerwa" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" -msgstr "" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" +msgstr "Punkt rozliczeniowy" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Kategoria" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" +msgstr "początek" -#: Model/Product.php:136 -msgid "GTIN" -msgstr "" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" +msgstr "koniec" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" -msgstr "" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" +msgstr "Ostatnia faktura automatyczna" -#: Model/Product.php:200 -msgid "Purchaseprice" -msgstr "" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" +msgstr "Czas utworzenia" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" +msgstr "Utworzone przez" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Producent" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" +msgstr "Czas ostatniej zmiany" -#: Model/Product.php:239 -msgid "Subproducts" -msgstr "" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" +msgstr "Ostatnio zmienione przez" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" -msgstr "Odpowiedzialny" - -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "OK" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" +msgstr "Zatwierdź adres pocztowy" + +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" +msgstr "Numer zapłaty" + +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" +msgstr "" + +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" +msgstr "" + +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" +msgstr "Podatek obrotowy (procent)" + +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." +msgstr "automatycznie ustaw..." -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" -msgstr "" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" +msgstr "Schowek" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" -msgstr "" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" +msgstr "Produkty" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" -msgstr "" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" +msgstr "Adres doręczenia" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" -msgstr "" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" +msgstr "Adresy dostawy" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" -msgstr "" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" +msgstr "Utwórz odwróconą fakturę" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" +msgstr "Kopiuj fakturę" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" +msgstr "Dodaj nową fakturę" + +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" +msgstr "Edytuj fakturę \"{0}\"" + +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" +msgstr "Brak przypisanego klienta" + +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +msgstr "Wybranej umowie nie przypisano jeszcze klienta. Należy dodać klienta do umowy za pomocą okna dialogowego umowy." + +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "Brak przypisanego centrum kosztów" + +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +msgstr "Wybranej umowie nie przypisango jeszcze centrum kosztów. Należy dodać centrum kosztów do umowy za pomocą okna dialogowego umowy." + +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "Początek przerwy" + +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "Koniec przerwy" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "Przeliczanie faktury..." + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "Przelicz fakturę" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" -msgstr "Miesiąc" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" +msgstr "" #: Setup/Initialize.php:34 msgid "My Products" @@ -1051,7 +967,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1094,819 +1010,1015 @@ msgstr "Wszystkie potwierdzenia zamówień" msgid "All order confirmation records" msgstr "Wiersze wszystkich potwierdzeń zamówień" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "Przerwa w umowie na automatycznym wystawianiu faktur" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "Ustawia największą przerwę w fakturowaniu umów." -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "Ignoruj możliwość rozliczenia przed datą" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "Ustawia datę, przed którą faktury będą ignorowane." -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Utworzenie numeru umowy" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "Czy numer umowy ma zostać utworzony ręcznie czy automatycznie?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automatycznie" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "ręcznie" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Walidacja numeru umowy" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "Numer może być walidowany jako tekst albo liczba." -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Text" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "Własna waluta" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "Waluta zdefiniowana tutaj jest używana jako domyślna w oknie edycji ustawień użytkownika" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "Typ faktury" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "Możliwe rodzaje faktury" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" +msgstr "Kawałek" + +#: Config.php:795 msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:706 +#: Config.php:796 msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:812 +msgid "Product Number Creation" msgstr "" -#: Config.php:722 -msgid "Product Number Creation" +#: Config.php:814 +msgid "Should the product number be set manually or be auto-created?" +msgstr "" + +#: Config.php:825 +msgid "Product Number Validation" +msgstr "" + +#: Config.php:838 +msgid "Product Number Prefix" +msgstr "" + +#: Config.php:840 +msgid "The prefix of the product number." +msgstr "" + +#: Config.php:848 +msgid "Product Number Zero Fill" +msgstr "" + +#: Config.php:850 +msgid "Fill the number with leading zero" +msgstr "" + +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 +msgid "Possible Payment Methods." +msgstr "" + +#: Config.php:867 +msgid "Bank transfer" +msgstr "" + +#: Config.php:868 +msgid "Direct debit" +msgstr "" + +#: Config.php:869 +msgid "Cancellation" +msgstr "" + +#: Config.php:871 +msgid "Credit card" +msgstr "" + +#: Config.php:872 +msgid "EC card" +msgstr "" + +#: Config.php:873 +msgid "Paypal" +msgstr "" + +#: Config.php:874 +msgid "Assets" +msgstr "" + +#: Config.php:880 +msgid "Invoice Cleared" +msgstr "Faktura rozliczona" + +#: Config.php:882 +msgid "Possible Invoice Cleared States." +msgstr "Możliwe stany rozliczenia faktury" + +#: Config.php:889 +msgid "to clear" +msgstr "do rozliczenia" + +#: Config.php:890 +msgid "cleared" +msgstr "rozliczone" + +#: Config.php:911 +msgid "Enabled Features" +msgstr "Aktywne funkcje" + +#: Config.php:913 +msgid "Enabled Features in Sales Application." +msgstr "" + +#: Config.php:922 +msgid "Invoices Module" +msgstr "" + +#: Config.php:929 +msgid "Offers Module" +msgstr "" + +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 +msgid "Order Confirmations Module" +msgstr "" + +#: Config.php:952 +msgid "Suppliers Module" +msgstr "" + +#: Config.php:959 +msgid "Purchase Invoice Module" +msgstr "" + +#: Config.php:939 +msgid "Legacy (non-document) Offers)" +msgstr "" + +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "Wprowadzona liczba jest już używana!" + +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" +msgstr "" + +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" +msgstr "Miesiąc" + +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" +msgstr "Jednostka" + +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" +msgstr "" + +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Kategoria" + +#: Model/Product.php:149 +msgid "GTIN" +msgstr "" + +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" +msgstr "" + +#: Model/Product.php:187 +msgid "Default Grouping" +msgstr "" + +#: Model/Product.php:193 +msgid "Default Sorting" +msgstr "" + +#: Model/Product.php:213 +msgid "Purchaseprice" +msgstr "" + +#: Model/Product.php:223 +msgid "Salesprice" +msgstr "" + +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" +msgstr "" + +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Producent" + +#: Model/Product.php:252 +msgid "Subproducts" +msgstr "" + +#: Model/Product.php:272 +msgid "Is Sales Product" +msgstr "" + +#: Model/Product.php:278 +msgid "Is active" +msgstr "" + +#: Model/Product.php:289 +msgid "Accountable" +msgstr "Odpowiedzialny" + +#: Model/Product.php:298 +msgid "Lifespan start" +msgstr "" + +#: Model/Product.php:309 +msgid "Lifespan end" +msgstr "" + +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" +msgstr "" + +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" +msgstr "" + +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" +msgstr "" + +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" +msgstr "" + +#: Model/SubProductMapping.php:141 +msgid "Amount" +msgstr "" + +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" +msgstr "" + +#: Model/Address.php:62 +msgid "GENDER_Address" +msgstr "" + +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" +msgstr "Pozycja z faktury" + +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" +msgstr "Częstotliwość rozliczeń" + +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: Config.php:724 -msgid "Should the product number be set manually or be auto-created?" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: Config.php:735 -msgid "Product Number Validation" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: Config.php:748 -msgid "Product Number Prefix" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: Config.php:750 -msgid "The prefix of the product number." +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: Config.php:758 -msgid "Product Number Zero Fill" -msgstr "" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Config.php:760 -msgid "Fill the number with leading zero" +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: Config.php:770 -msgid "Possible Payment Methods." +#: Model/Document/Order.php:79 +msgid "Delivery Booked" msgstr "" -#: Config.php:777 -msgid "Bank transfer" +#: Model/Document/Order.php:88 +msgid "Invoice Created" msgstr "" -#: Config.php:778 -msgid "Direct debit" +#: Model/Document/Order.php:97 +msgid "Invoice Booked" msgstr "" -#: Config.php:779 -msgid "Cancellation" +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" msgstr "" -#: Config.php:781 -msgid "Credit card" +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" msgstr "" -#: Config.php:782 -msgid "EC card" +#: Model/Document/Order.php:159 +msgid "Shared Delivery" msgstr "" -#: Config.php:783 -msgid "Paypal" +#: Model/Document/Order.php:166 +msgid "Shared Invoice" msgstr "" -#: Config.php:784 -msgid "Assets" +#: Model/Document/Order.php:193 +msgid "OR-" msgstr "" -#: Config.php:790 -msgid "Invoice Cleared" -msgstr "Faktura rozliczona" - -#: Config.php:792 -msgid "Possible Invoice Cleared States." -msgstr "Możliwe stany rozliczenia faktury" - -#: Config.php:799 -msgid "to clear" -msgstr "do rozliczenia" - -#: Config.php:800 -msgid "cleared" -msgstr "rozliczone" - -#: Config.php:821 -msgid "Enabled Features" -msgstr "Aktywne funkcje" +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Config.php:823 -msgid "Enabled Features in Sales Application." +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" msgstr "" -#: Config.php:832 -msgid "Invoices Module" +#: Model/Document/Abstract.php:138 +msgid "Document Number" msgstr "" -#: Config.php:839 -msgid "Offers Module" +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" msgstr "" -#: Config.php:846 -msgid "Order Confirmations Module" +#: Model/Document/Abstract.php:209 +msgid "Document Date" msgstr "" -#: Config.php:853 -msgid "Suppliers Module" +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" msgstr "" -#: Config.php:860 -msgid "Purchase Invoice Module" +#: Model/Document/Abstract.php:241 +msgid "Recipient" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Model/Document/Abstract.php:252 +msgid "Reference Person" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" -msgstr "bez klienta" - -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" -msgstr "przerwa" - -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" -msgstr "początek" - -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" -msgstr "koniec" - -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" -msgstr "Ostatnia faktura automatyczna" +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" -msgstr "Czas utworzenia" +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" -msgstr "Utworzone przez" +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" -msgstr "Czas ostatniej zmiany" +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" -msgstr "Ostatnio zmienione przez" +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "Podatek obrotowy" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Anuluj" - -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "OK" - -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" -msgstr "Umowa fakturowania" - -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." -msgstr "Fakturowanie umowy..." - -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" -msgstr "Umowa fakturowania \"{0} - {1}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" +msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" -msgstr "Wybierz datę, aby wygenerować fakturę dla" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" -msgstr "Kopiuj adres do schowka" - -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" -msgstr "Dane podstawowe" - -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" -msgstr "Księgowość" - -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" -msgstr "IBAN" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" +msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" -msgstr "BIC" +#: Model/Document/Invoice.php:90 +msgid "PI-" +msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" -msgstr "Adres pocztowy" +#: Model/Document/Invoice.php:115 +msgid "IN-" +msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" -msgstr "Różne" +#: Model/Customer.php:38 +msgid "GENDER_Customer" +msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" -msgstr "Dodaj opis" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" +msgstr "Odwrócona faktura" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" -msgstr "Podatek obrotowy (procent)" - -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." -msgstr "automatycznie ustaw..." - -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" -msgstr "bez potwierdzenia zamówienia" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Osoba odpowiedzialna" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" -msgstr "Dodaj nową ofertę" +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Wspólnik" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" -msgstr "" +#: Model/Contract.php:283 +msgid "Time Account" +msgstr "Konto terminowe" -#: js/InvoiceEditDialog.js:76 -msgid "total" -msgstr "" +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" -msgstr "Utwórz odwróconą fakturę" - -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" -msgstr "Kopiuj fakturę" - -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" -msgstr "Dodaj nową fakturę" - -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" -msgstr "Edytuj fakturę \"{0}\"" - -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" -msgstr "Brak przypisanego klienta" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" +msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." -msgstr "Wybranej umowie nie przypisano jeszcze klienta. Należy dodać klienta do umowy za pomocą okna dialogowego umowy." +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" +msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" -msgstr "Brak przypisanego centrum kosztów" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" +msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." -msgstr "Wybranej umowie nie przypisango jeszcze centrum kosztów. Należy dodać centrum kosztów do umowy za pomocą okna dialogowego umowy." +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" +msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" -msgstr "Wybierz klienta" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" +msgstr "ROZLICZONE" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" +msgstr "FAKTURA" + +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" -msgstr "Adres doręczenia" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" +msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." -msgstr "Przeliczanie faktury..." +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" +msgstr "Brak uprawnień do zmiany numeru" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" -msgstr "Przelicz fakturę" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" +msgstr "Nie masz uprawnień, by zmienić numer w późniejszym czasie!" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" -msgstr "" +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "Faktura została już rozliczona" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" -msgstr "Wybierz rachunek" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" +msgstr "Faktura, którą próbowano usunąć, została już rozliczona, dlatego usunięcie jej jest już niemożliwe!" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" -msgstr "" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +msgstr "Faktura, którą próbowano wyedytować, jest już rozliczona, dlatego edycja jej nie jest już możliwa!" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" -msgstr "" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" +msgstr "Znaleziono następujące faktury" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" -msgstr "" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +msgstr "Istnieje już faktura do tej samej umowy. Proszę usunąć następującą fakturę(y) przed usunięciem tej!" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Proszę użyć liczby dziesiętnej!" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" +msgstr "Numer duplikatu" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Proszę wprowadzić opis..." +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +msgstr "Numer, który próbowano użyć, jest już zajęty. Proszę użyć innego albo pozostawić puste pole, aby wybrać następny, wolny numer." -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" -msgstr "Eksportuj wiersze od tego miejsca" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" +msgstr "Nieznany kod waluty" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" -msgstr "Schowek" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +msgstr "Kod waluty, którego próbowano użyć, jest nieważny. Proszę skorzystać z ważnego kodu waluty zgodnego z ISO 4217." -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" -msgstr "" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" +msgstr "Adres używany jako adres fakturowania " -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" -msgstr "" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." +msgstr "Adres, który próbowano usunąć jest używany przez jedną lub więcej umów jako adres fakturowania. Proszę przypisać inny adres fakturowania niniejszej umowy albo zmienić obecny i nie usuwać." -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" -msgstr "" +#: Acl/Rights.php:208 +msgid "manage invoices" +msgstr "zarządzanie fakturami" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" -msgstr "Zatwierdź adres pocztowy" - -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" -msgstr "Należy podać albo ulicę albo skrzynkę pocztową!" - -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" -msgstr "Skopiuj klienta" - -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" -msgstr "Dodaj nowego klienta" - -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" -msgstr "Edytuj klienta \"{0}\"" - -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" -msgstr "ok" +#: Acl/Rights.php:228 +msgid "Set number of invoices" +msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" -msgstr "bez umowy" +#~ msgid "Either street or postbox is required!" +#~ msgstr "Należy podać albo ulicę albo skrzynkę pocztową!" #~ msgid "Division" #~ msgid_plural "Divisions" diff --git a/tine20/Sales/translations/pl_PL.po b/tine20/Sales/translations/pl_PL.po index b09c59c78ca..58688d5cf31 100644 --- a/tine20/Sales/translations/pl_PL.po +++ b/tine20/Sales/translations/pl_PL.po @@ -16,438 +16,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -455,546 +400,517 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1050,7 +966,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1073,836 +989,1029 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/pt_BR.po b/tine20/Sales/translations/pt_BR.po index 3adc48eb850..68e06e5079e 100644 --- a/tine20/Sales/translations/pt_BR.po +++ b/tine20/Sales/translations/pt_BR.po @@ -17,954 +17,882 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "Você não tem privilégios de administrador em Vendas" -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Número" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Título" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Descrição" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "Autorizado" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Contrato" +msgstr[1] "Contratos" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Nome" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "Você não tem privilégios de administrador em Vendas" - -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "O número que você tentou atribuir já está em uso!" - -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Nome" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Descrição" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Cancelar" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" -msgstr "" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" +msgstr "OK" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Contrato" -msgstr[1] "Contratos" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Número" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Título" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Responsável" - -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Sócio" - -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Favor usar número decimal aqui!" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" +msgstr "" -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produto" -msgstr[1] "Produtos" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Digite a descrição..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "Autorizado" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" +msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Produto" +msgstr[1] "Produtos" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" +msgstr "" + +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "OK" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Categoria" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Fabricante" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" -msgstr "Mês" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" +msgstr "" #: Setup/Initialize.php:34 msgid "My Products" @@ -1019,7 +947,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1058,822 +986,1003 @@ msgstr "" msgid "All Order Confirmations" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Criação do Número do Contrato" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "O número do contrato pode ser atribuído manualmente ou ser auto-criado?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automaticamente" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "manualmente" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Validaçãod do Número do Contrato" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "O número pode ser alidade como texto ou numérico." -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Texto" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "O número que você tentou atribuir já está em uso!" + +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" +msgstr "Mês" + +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Categoria" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Fabricante" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Cancelar" +#: Model/Product.php:298 +msgid "Lifespan start" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "OK" +#: Model/Product.php:309 +msgid "Lifespan end" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" +msgstr "" + +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" +msgstr "" + +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" -msgstr "" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Responsável" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" -msgstr "" +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Sócio" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" -msgstr "" +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Favor usar número decimal aqui!" - -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Digite a descrição..." - -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" -msgstr "OK" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." +msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "Division" diff --git a/tine20/Sales/translations/ro_RO.po b/tine20/Sales/translations/ro_RO.po index d055fa55518..995d0ce6844 100644 --- a/tine20/Sales/translations/ro_RO.po +++ b/tine20/Sales/translations/ro_RO.po @@ -18,969 +18,891 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Număr" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Titlu" -#: Acl/Rights.php:200 -msgid "Manage Customers" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Descriere" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" +msgstr "Date" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" +msgstr "Tip" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" -msgstr "FACTURA" - -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Contract" +msgstr[1] "Contracte" +msgstr[2] "Contracte" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "Nume" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" -msgstr "" - -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 msgid "Web" msgstr "Web" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Descriere" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" -msgstr "" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" +msgstr "Contabilitate" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" +msgstr "IBAN" + +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" +msgstr "BIC" + +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" -msgstr "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" +msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "Strada" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "CodPoştal" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "Localitatea" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "Regiune" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "Ţara" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" +msgstr "Prefix" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Contract" -msgstr[1] "Contracte" -msgstr[2] "Contracte" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "Produse" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Număr" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Titlu" - -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" -msgstr "" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" +msgstr "Ok" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Partener" - -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" -msgstr "" - -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" -msgstr "Tip" - -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" -msgstr "Cantitate" - -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" -msgstr "Date" - -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" +msgstr "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" +msgstr "" + +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" +msgstr "Cantitate" + +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "OK" + +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" +msgstr "" + +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" +msgstr "Produse" + +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1036,7 +958,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1071,824 +993,1011 @@ msgstr "" msgid "All invoice records" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Text" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" -msgstr "Contabilitate" +#: Model/Address.php:62 +msgid "GENDER_Address" +msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" -msgstr "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" +msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" -msgstr "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" +msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Partener" + +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" +msgstr "FACTURA" + +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" -msgstr "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." +msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/ru.po b/tine20/Sales/translations/ru.po index 27497eb0e75..78d02c96f40 100644 --- a/tine20/Sales/translations/ru.po +++ b/tine20/Sales/translations/ru.po @@ -20,438 +20,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "У вас нет административных прав на Продажи" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" +msgstr "Добавить новое предложение" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Число" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Заголовок" -#: Acl/Rights.php:200 -msgid "Manage Customers" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "Клиент" +msgstr[1] "Клиента" +msgstr[2] "Клиентов" +msgstr[3] "Клиенты" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Описание" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" -msgstr "" +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" +msgstr "Введите описание" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" -msgstr "управление счетами" - -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" +msgstr "Выберите счёт" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" +msgstr "Номер счёта" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" +msgstr "Дата" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" +msgstr "Тип" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" +msgstr "Адрес для выставления счетов" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" +msgstr "Срок оплаты" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "Просчитано" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" +msgstr "Итоговая цена" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "У вас нет административных прав на Продажи" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Договор" +msgstr[1] "Договора" +msgstr[2] "Договоров" +msgstr[3] "Договоров" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "Число, которое вы пытались установить, уже используется!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" +msgstr "Скопировать адрес в буфер обмена" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" -msgstr "" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" +msgstr "Выбрать поставщика" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "Клиент" -msgstr[1] "Клиента" -msgstr[2] "Клиентов" -msgstr[3] "Клиенты" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" -msgstr "Номер клиента" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" +msgstr "Номер поставщика" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "Название" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" -msgstr "" - -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 msgid "Web" msgstr "Сайт" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Описание" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 msgid "Contact Person (external)" msgstr "Контактное лицо (внешнее)" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 msgid "Contact Person (internal)" msgstr "Контактное лицо (внутреннее)" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" -msgstr "Срок оплаты (дней)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" +msgstr "IBAN" + +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" +msgstr "BIC" + +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" +msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "Валюта" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "Курс валюты" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" -msgstr "Скидка (%)" - -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" -msgstr "Адреса доставки" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" +msgstr "Необходимо указать почтовый индекс или почтовый ящик!" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" -msgstr "Адреса для выставления счетов" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" +msgstr "Копировать поставщика" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" -msgstr "" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" +msgstr "Добавить нового поставщика" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" +msgstr "Редактировать поставщика \"{0}\"" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" -msgstr "Номер поставщика" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" +msgstr "Срок оплаты (дней)" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" -msgstr "" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" +msgstr "Почтовый адрес" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "Улица" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "Почтовый индекс" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "Местонахождение" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "Область" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "Страна" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Договор" -msgstr[1] "Договора" -msgstr[2] "Договоров" -msgstr[3] "Договоров" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Число" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Заголовок" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Отмена" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" -msgstr "Адрес для выставления счетов" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" +msgstr "Ok" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" -msgstr "Дата начала" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" +msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" -msgstr "Дата окончания" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" +msgstr "Адреса для выставления счетов" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Ответственный" - -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Партнёр" - -#: Model/Contract.php:277 -msgid "Time Account" -msgstr "Временный счет" - -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" +msgstr "Номер клиента" -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -459,547 +404,518 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" -msgstr "Тип" - -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Продукт" -msgstr[1] "Продукты" -msgstr[2] "Продукты" -msgstr[3] "Продукты" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" -msgstr "Количество" - -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" -msgstr "" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Пожалуйста, используйте десятичные цифры!" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" -msgstr "" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" +msgstr "Дата начала" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" -msgstr "" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" +msgstr "Дата окончания" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" -msgstr "" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Ввести описание..." -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" -msgstr "Номер счёта" - -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "Адрес" -msgstr[1] "Адреса" -msgstr[2] "Адресов" -msgstr[3] "Адреса" - -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" -msgstr "Дата" - -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" -msgstr "Период начинается" - -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" -msgstr "Период заканчивается" - -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" -msgstr "Срок оплаты" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" +msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "Просчитано" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" +msgstr "без клиента" + +#: js/ContractFilterModel.js:32 +msgid "without contract" +msgstr "без контракта" + +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" +msgstr "Скидка (%)" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" -msgstr "Дата счёта" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Продукт" +msgstr[1] "Продукты" +msgstr[2] "Продукты" +msgstr[3] "Продукты" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "Оплата через " +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" +msgstr "Количество" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" +msgstr "Интервал" + +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" -msgstr "Оплачено" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" +msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "Скидка до" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" +msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" -msgstr "Итоговая цена" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" +msgstr "Дата создания" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Категория" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" +msgstr "Создано" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" +msgstr "Дата последнего изменения" + +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Производитель" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "OK" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "Адрес" +msgstr[1] "Адреса" +msgstr[2] "Адресов" +msgstr[3] "Адреса" + +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" +msgstr "Дата счёта" + +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" +msgstr "Оплата через " + +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" +msgstr "Дата оплаты" + +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." +msgstr "автоматически установлено..." -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" +msgstr "Дата просрочки" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" +msgstr "Скидка до" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" +msgstr "Оплачено" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "Способ оплаты" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" -msgstr "" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" +msgstr "без поставщика" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" +msgstr "Буфер обмена" + +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" +msgstr "Адрес доставки" + +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" +msgstr "Адреса доставки" + +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" -msgstr "" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" +msgstr "Копировать счёт" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" -msgstr "" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" +msgstr "Добавить новый счёт" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" -msgstr "" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" +msgstr "Не указан клиент" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "Период начинается" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "Период заканчивается" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" -msgstr "Месяц" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" +msgstr "" #: Setup/Initialize.php:34 msgid "My Products" @@ -1054,7 +970,7 @@ msgid "All Suppliers" msgstr "Все поставщики" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1097,819 +1013,1012 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Создание номера контракта" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "Задать номер контракта в ручную или создать автоматически?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "автоматически" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "в ручную" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Проверка номера контракта" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "Номер должен быть проверен как текст или число" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Текст" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" -msgstr "" - -#: Config.php:604 Config.php:780 +#: Config.php:694 Config.php:870 msgid "Credit" msgstr "Кредит" -#: Config.php:619 +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" +msgstr "" + +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "По-умолчанию" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 -msgid "Product Unit" +#: Config.php:781 Config.php:782 +msgid "Product Unit" +msgstr "" + +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" +msgstr "" + +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" +msgstr "" + +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +msgstr "" + +#: Config.php:812 +msgid "Product Number Creation" +msgstr "" + +#: Config.php:814 +msgid "Should the product number be set manually or be auto-created?" +msgstr "" + +#: Config.php:825 +msgid "Product Number Validation" +msgstr "" + +#: Config.php:838 +msgid "Product Number Prefix" +msgstr "" + +#: Config.php:840 +msgid "The prefix of the product number." +msgstr "" + +#: Config.php:848 +msgid "Product Number Zero Fill" +msgstr "" + +#: Config.php:850 +msgid "Fill the number with leading zero" +msgstr "" + +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 +msgid "Possible Payment Methods." +msgstr "" + +#: Config.php:867 +msgid "Bank transfer" +msgstr "" + +#: Config.php:868 +msgid "Direct debit" +msgstr "" + +#: Config.php:869 +msgid "Cancellation" +msgstr "" + +#: Config.php:871 +msgid "Credit card" +msgstr "Кредитная карта" + +#: Config.php:872 +msgid "EC card" +msgstr "" + +#: Config.php:873 +msgid "Paypal" +msgstr "Paypal" + +#: Config.php:874 +msgid "Assets" +msgstr "" + +#: Config.php:880 +msgid "Invoice Cleared" +msgstr "" + +#: Config.php:882 +msgid "Possible Invoice Cleared States." +msgstr "" + +#: Config.php:889 +msgid "to clear" +msgstr "очистить" + +#: Config.php:890 +msgid "cleared" +msgstr "очищено" + +#: Config.php:911 +msgid "Enabled Features" +msgstr "" + +#: Config.php:913 +msgid "Enabled Features in Sales Application." +msgstr "" + +#: Config.php:922 +msgid "Invoices Module" +msgstr "" + +#: Config.php:929 +msgid "Offers Module" +msgstr "" + +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 +msgid "Order Confirmations Module" +msgstr "" + +#: Config.php:952 +msgid "Suppliers Module" +msgstr "Модуль управления поставщиками" + +#: Config.php:959 +msgid "Purchase Invoice Module" +msgstr "" + +#: Config.php:939 +msgid "Legacy (non-document) Offers)" +msgstr "" + +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "Число, которое вы пытались установить, уже используется!" + +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" +msgstr "" + +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" +msgstr "Месяц" + +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" +msgstr "" + +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Категория" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: Config.php:714 -msgid "None" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: Config.php:722 -msgid "Product Number Creation" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: Config.php:724 -msgid "Should the product number be set manually or be auto-created?" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: Config.php:735 -msgid "Product Number Validation" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: Config.php:748 -msgid "Product Number Prefix" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: Config.php:750 -msgid "The prefix of the product number." +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Производитель" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: Config.php:758 -msgid "Product Number Zero Fill" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: Config.php:760 -msgid "Fill the number with leading zero" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: Config.php:770 -msgid "Possible Payment Methods." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: Config.php:777 -msgid "Bank transfer" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: Config.php:778 -msgid "Direct debit" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: Config.php:779 -msgid "Cancellation" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: Config.php:781 -msgid "Credit card" -msgstr "Кредитная карта" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" +msgstr "" -#: Config.php:782 -msgid "EC card" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: Config.php:783 -msgid "Paypal" -msgstr "Paypal" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Config.php:784 -msgid "Assets" +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: Config.php:790 -msgid "Invoice Cleared" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: Config.php:792 -msgid "Possible Invoice Cleared States." +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: Config.php:799 -msgid "to clear" -msgstr "очистить" - -#: Config.php:800 -msgid "cleared" -msgstr "очищено" - -#: Config.php:821 -msgid "Enabled Features" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: Config.php:823 -msgid "Enabled Features in Sales Application." +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: Config.php:832 -msgid "Invoices Module" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: Config.php:839 -msgid "Offers Module" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: Config.php:846 -msgid "Order Confirmations Module" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: Config.php:853 -msgid "Suppliers Module" -msgstr "Модуль управления поставщиками" - -#: Config.php:860 -msgid "Purchase Invoice Module" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" -msgstr "без клиента" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" -msgstr "Интервал" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Document/Order.php:88 +msgid "Invoice Created" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Document/Order.php:97 +msgid "Invoice Booked" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" -msgstr "Дата создания" - -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" -msgstr "Создано" - -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" -msgstr "Дата последнего изменения" - -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Document/Order.php:159 +msgid "Shared Delivery" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Document/Order.php:166 +msgid "Shared Invoice" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Document/Order.php:193 +msgid "OR-" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Отмена" - -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "OK" +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Document/Abstract.php:138 +msgid "Document Number" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Document/Abstract.php:209 +msgid "Document Date" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" -msgstr "Необходимо указать почтовый индекс или почтовый ящик!" - -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" -msgstr "Копировать поставщика" - -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" -msgstr "Добавить нового поставщика" - -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" -msgstr "Редактировать поставщика \"{0}\"" - -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" -msgstr "Скопировать адрес в буфер обмена" +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/Document/Abstract.php:241 +msgid "Recipient" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Document/Abstract.php:252 +msgid "Reference Person" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" -msgstr "IBAN" +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" -msgstr "BIC" +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" -msgstr "Почтовый адрес" +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" -msgstr "Введите описание" +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" -msgstr "Дата оплаты" +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." -msgstr "автоматически установлено..." +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" +msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" -msgstr "Дата просрочки" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" -msgstr "Способ оплаты" +#: Model/Document/Delivery.php:87 +msgid "PD-" +msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" -msgstr "Добавить новое предложение" +#: Model/Document/Delivery.php:119 +msgid "DN-" +msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" -msgstr "Выбрать поставщика" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" +msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" -msgstr "Копировать счёт" +#: Model/Boilerplate.php:74 +msgid "Model" +msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" -msgstr "Добавить новый счёт" +#: Model/Boilerplate.php:95 +msgid "From" +msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" -msgstr "Не указан клиент" +#: Model/Contract.php:45 +msgid "GENDER_Contract" +msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Ответственный" + +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Партнёр" + +#: Model/Contract.php:283 +msgid "Time Account" +msgstr "Временный счет" + +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" -msgstr "без поставщика" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" +msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" -msgstr "Адрес доставки" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" +msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" -msgstr "Выберите счёт" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" +msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Пожалуйста, используйте десятичные цифры!" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" +msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Ввести описание..." +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" -msgstr "Буфер обмена" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" +msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:208 +msgid "manage invoices" +msgstr "управление счетами" + +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" -msgstr "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." +msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" -msgstr "без контракта" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." +msgstr "" #~ msgid "Division" #~ msgid_plural "Divisions" diff --git a/tine20/Sales/translations/sk.po b/tine20/Sales/translations/sk.po index b5a58fedc0a..7a8325c9618 100644 --- a/tine20/Sales/translations/sk.po +++ b/tine20/Sales/translations/sk.po @@ -16,438 +16,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -455,546 +400,517 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1050,7 +966,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1073,836 +989,1029 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/sl.po b/tine20/Sales/translations/sl.po index 35e9503523c..65e357bd152 100644 --- a/tine20/Sales/translations/sl.po +++ b/tine20/Sales/translations/sl.po @@ -16,438 +16,383 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" @@ -455,546 +400,517 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1050,7 +966,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1073,836 +989,1029 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/sq.po b/tine20/Sales/translations/sq.po index d4229350158..62e31c15b35 100644 --- a/tine20/Sales/translations/sq.po +++ b/tine20/Sales/translations/sq.po @@ -17,953 +17,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "Ju nuk keni të drejta administratori në Shitje" -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Numër" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Titull" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Përshkrimi" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "E Pastër" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Kontratë" +msgstr[1] "Kontrata" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Emër" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "Ju nuk keni të drejta administratori në Shitje" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" +msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" +msgstr "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "Nr. që ju doni të vendosni është në përdorim!" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" +msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" +msgstr "" -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Emër" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" +msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Përshkrimi" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Anullo" + +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Kontratë" -msgstr[1] "Kontrata" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Numër" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Titull" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Ju lutem përdorni këtu një numër dhjetor!" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 msgid "Start Date" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 msgid "End Date" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 msgid "Lead Cost Center" msgstr "Drejtues qëndrës së kostove" -#: Model/Contract.php:229 -msgid "Merge" -msgstr "" - -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Përgjegjës" - -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Partner" - -#: Model/Contract.php:277 -msgid "Time Account" -msgstr "Llogari Kohore" - -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" -msgstr "" - -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Vendosni përshkrimin..." -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkte" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "E Pastër" - -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 msgid "Language" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" -msgstr "" - -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Produkt" +msgstr[1] "Produkte" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "Ok" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Kategori" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Prodhues" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1019,7 +947,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1058,822 +986,1003 @@ msgstr "" msgid "All Order Confirmations" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Krijimi Nr.të Kontratës" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "Duhet që Nr. i kontrates të krijohet manualisht apo të vetëkrijohet?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "automatikisht" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "manualisht" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Miratim i Nr. të Kontratës" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "Numëri mund të miratohet si tekst ose numër." -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Tekst" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "Nr. që ju doni të vendosni është në përdorim!" + +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Kategori" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Prodhues" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Anullo" +#: Model/Product.php:289 +msgid "Accountable" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "Ok" +#: Model/Product.php:298 +msgid "Lifespan start" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" +msgstr "" + +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" +msgstr "" + +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" -msgstr "" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Përgjegjës" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" -msgstr "" +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Partner" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" -msgstr "" +#: Model/Contract.php:283 +msgid "Time Account" +msgstr "Llogari Kohore" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" -msgstr "" +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Ju lutem përdorni këtu një numër dhjetor!" - -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Vendosni përshkrimin..." - -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "Division" diff --git a/tine20/Sales/translations/sr.po b/tine20/Sales/translations/sr.po index 675fff52f95..4d4b72a20b7 100644 --- a/tine20/Sales/translations/sr.po +++ b/tine20/Sales/translations/sr.po @@ -16,969 +16,891 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" +msgstr "" + +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1034,7 +956,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1049,844 +971,1031 @@ msgstr "" msgid "All Products" msgstr "" -#: Setup/Initialize.php:208 -msgid "All product records" +#: Setup/Initialize.php:208 +msgid "All product records" +msgstr "" + +#: Setup/Initialize.php:218 +msgid "All Contracts" +msgstr "" + +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" msgstr "" -#: Setup/Initialize.php:218 -msgid "All Contracts" +#: Config.php:251 Config.php:804 +msgid "None" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/sv_SE.po b/tine20/Sales/translations/sv_SE.po index 6d8ea4bbb1b..7b8992ed0fb 100644 --- a/tine20/Sales/translations/sv_SE.po +++ b/tine20/Sales/translations/sv_SE.po @@ -18,953 +18,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Titel" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Beskrivning" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "Kontrakt" +msgstr[1] "kontrakt" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Namn" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" -msgstr[1] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Namn" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Beskrivning" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" - -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "Kontrakt" -msgstr[1] "kontrakt" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Titel" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" +msgstr[1] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "Produkt" -msgstr[1] "Produkter" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Ange beskrivning" -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "Produkt" +msgstr[1] "Produkter" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" -msgstr[1] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Kategori" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Tillverkare" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1020,7 +948,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1063,818 +991,999 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Kategori" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Tillverkare" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Ange beskrivning" +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "manage products" diff --git a/tine20/Sales/translations/template.pot b/tine20/Sales/translations/template.pot index dd3a0935756..2fd184c7608 100644 --- a/tine20/Sales/translations/template.pot +++ b/tine20/Sales/translations/template.pot @@ -13,966 +13,891 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "" -"The Invoice you tried to delete is cleared already, so deleting is not " -"possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "" -"The Address you tried to delete is used in one or more contract(s) as " -"Billing Address. Please assign another Billing Address to these contracts or " -"change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "" -"There is an invoice for the same contract after this one. Please delete the " -"following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "" -"The Invoice you tried to edit is cleared already, so no editing is possible " -"anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "" -"The number you tried to use has been taken already. Please use another one " -"leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "" -"The Currency Code you tried to use is not valid. Please use a valid Currency " -"Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "" +"Creating followup { targetRecordsName } is allowed for booked " +"{ sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "" +"Please choose which { sourceRecordsName } should be included in shared " +"{ targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "" +"Cannot create { targetType } from { sourceDocument }: ({e.code}) { e." +"message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "" +"The selected contract doesn't have a customer assigned, yet. Add a customer " +"to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "" +"The selected contract doesn't have a cost center assigned, yet. Add a cost " +"center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1028,7 +953,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1071,828 +996,1014 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "" "The currency defined here is used as default currency in the customerd edit " "dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" +msgstr "" + +#: Config.php:795 msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:706 +#: Config.php:796 msgid "" "Accounting for the sub-product is variable and each same sub-product gets on " "own or a common shared position in a document." msgstr "" -#: Config.php:714 -msgid "None" -msgstr "" - -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Order.php:88 +msgid "Invoice Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" +msgstr "" + +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" +msgstr "" + +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" +msgstr "" + +#: Model/Document/Delivery.php:87 +msgid "PD-" +msgstr "" + +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" +msgstr "" + +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" -msgstr "" +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" -#: js/InvoiceEditDialog.js:333 -msgid "" -"The selected contract doesn't have a customer assigned, yet. Add a customer " -"to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "" -"The selected contract doesn't have a cost center assigned, yet. Add a cost " -"center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "" +"The Invoice you tried to delete is cleared already, so deleting is not " +"possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "" +"The Invoice you tried to edit is cleared already, so no editing is possible " +"anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "" +"There is an invoice for the same contract after this one. Please delete the " +"following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "" +"The number you tried to use has been taken already. Please use another one " +"leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "" +"The Currency Code you tried to use is not valid. Please use a valid Currency " +"Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "" +"The Address you tried to delete is used in one or more contract(s) as " +"Billing Address. Please assign another Billing Address to these contracts or " +"change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "" -"Creating followup { targetRecordsName } is allowed for booked " -"{ sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "" -"Cannot create { targetType } from { sourceDocument }: ({e.code}) { e." -"message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/th.po b/tine20/Sales/translations/th.po index 9e426d17d44..f994ee8976f 100644 --- a/tine20/Sales/translations/th.po +++ b/tine20/Sales/translations/th.po @@ -18,937 +18,871 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "คุณไม่มีสิทธิ์ของผู้ดูแลระบบใน Sales" -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "หมายเลข" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "คำนำหน้าชื่อ" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "การอธิบาย" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "เคลียร์แล้ว" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "สัญญา" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "ชื่อ" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "คุณไม่มีสิทธิ์ของผู้ดูแลระบบใน Sales" - -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "ชื่อ" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "การอธิบาย" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "ยกเลิก" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "สัญญา" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "หมายเลข" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "คำนำหน้าชื่อ" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" -msgstr "ศูนย์ต้นทุนนำ" - -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "รับผิดชอบ" - -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" -msgstr "บัญชีเวลา" - -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" +msgstr "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "" -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "สินค้า" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" +msgstr "ศูนย์ต้นทุนนำ" -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" -msgstr "" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "ใส่ คำอธิบาย" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "เคลียร์แล้ว" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" +msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "สินค้า" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "ตกลง" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "ประเภท" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "ผู้ผลิต" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1004,7 +938,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1047,818 +981,993 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "การสร้างหมายเลขสัญญา" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "หมายเลขสัญญาควรจะมีการสร้างโดยอัตโนมัติหรือใส่หมายเลขเอง?" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "โดยอัตโนมัติ" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "ด้วยมือ" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "ความถูกต้องของหมายเลขสัญญา" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "ประเภท" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "ผู้ผลิต" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "ยกเลิก" +#: Model/Product.php:278 +msgid "Is active" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "ตกลง" +#: Model/Product.php:289 +msgid "Accountable" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "รับผิดชอบ" + +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/Contract.php:283 +msgid "Time Account" +msgstr "บัญชีเวลา" + +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "ใส่ คำอธิบาย" +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "Division" diff --git a/tine20/Sales/translations/tr_TR.po b/tine20/Sales/translations/tr_TR.po index 0042ce37d1b..535c76b30f4 100644 --- a/tine20/Sales/translations/tr_TR.po +++ b/tine20/Sales/translations/tr_TR.po @@ -16,953 +16,881 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" - -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" -msgstr "" - -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" -msgstr "" - -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" - -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" - -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" - -#: Acl/Rights.php:188 -msgid "Manage Products" -msgstr "" - -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" +msgstr[1] "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +msgstr[1] "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" msgstr[0] "" msgstr[1] "" -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 #: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 msgid "Name" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 -msgid "Credit Term (days)" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 msgid "Currency" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 +msgid "Credit Term (days)" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 -msgid "Prefix" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 -msgid "Additional Prefix" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 msgid "Street" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" +msgstr "" + +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 msgid "Postalcode" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 msgid "Locality" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 msgid "Region" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 msgid "Country" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" -msgstr "" - -#: Model/Contract.php:45 -msgid "GENDER_Contract" -msgstr "" - -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" -msgstr[1] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" -msgstr "" - -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 +msgid "Prefix" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 +msgid "Additional Prefix" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" -msgstr[1] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 msgid "Order Confirmation" msgid_plural "Order Confirmations" msgstr[0] "" msgstr[1] "" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -msgstr[1] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" -msgstr[1] "" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 -msgid "Prefix 1" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 -msgid "Prefix 2" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 -msgid "Prefix 3" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 +msgid "Prefix 1" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 +msgid "Prefix 2" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 +msgid "Prefix 3" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" msgstr[0] "" msgstr[1] "" -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" -msgstr[1] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" +msgstr[1] "" -#: Model/Product.php:231 -msgid "Manufacturer" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" msgstr[0] "" msgstr[1] "" -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" -msgstr[1] "" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" +msgstr "" -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" +msgstr "" -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" -msgstr[1] "" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" +msgstr "" -#: Model/InvoicePosition.php:90 -msgid "Month" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" +msgstr "" + +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." +msgstr "" + +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" +msgstr "" + +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" +msgstr "" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1018,7 +946,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1061,816 +989,997 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" +msgstr[1] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" +msgstr[1] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" +msgstr[1] "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" +msgstr[1] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/vi.po b/tine20/Sales/translations/vi.po index d78195fc1b0..75ddbaca098 100644 --- a/tine20/Sales/translations/vi.po +++ b/tine20/Sales/translations/vi.po @@ -17,941 +17,875 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" +msgstr "Bạn không có quyền quản trị trên hệ thống Kinh doanh" -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" +msgstr "Số" -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "Tiêu đề" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "Mo tả" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" +msgstr "Đã xóa" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" +"one:Hợp đồng\n" +"other:Hợp đồng" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" +msgstr "Tên" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" -msgstr "ĐÃ XÓA" - -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" -msgstr "HÓA ĐƠN" - -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" -msgstr "Bạn không có quyền quản trị trên hệ thống Kinh doanh" - -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" -msgstr "Số bạn đang đặt đã tồn tại!" - -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" -msgstr "Tên" - -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "Mo tả" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" +msgstr "Hủy" + +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" msgstr[0] "" -"one:Hợp đồng\n" -"other:Hợp đồng" -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "Số" - -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "Tiêu đề" - -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" -msgstr "Trung tâm giá" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" +msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" -msgstr "Chịu trách nhiệm" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" +msgstr "" -#: Model/Contract.php:261 -msgid "Partner" -msgstr "Đối tác" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" +msgstr "Xin sử dụng 1 số thập phân tại đây!" -#: Model/Contract.php:277 -msgid "Time Account" -msgstr "Tài khoản theo thời gian" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" +msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" +msgstr "" -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" +msgstr "Trung tâm giá" -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "Nhập vào mô tả" -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" -"one:Sản phẩm\n" -"other:Sản phẩm" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" - -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" -msgstr "Đã xóa" - -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 msgid "Language" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" -msgstr "" - -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "" +"one:Sản phẩm\n" +"other:Sản phẩm" + +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 msgid "Billing Point" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" -msgstr "" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" +msgstr "OK" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" -msgstr "Danh mục" - -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "Nhà sản xuất" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1007,7 +941,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1030,838 +964,1013 @@ msgstr "" msgid "All Contracts" msgstr "" -#: Setup/Initialize.php:219 -msgid "All contract records" +#: Setup/Initialize.php:219 +msgid "All contract records" +msgstr "" + +#: Setup/Initialize.php:229 +msgid "All Invoices" +msgstr "" + +#: Setup/Initialize.php:230 +msgid "All invoice records" +msgstr "" + +#: Setup/Initialize.php:240 +msgid "All Order Confirmations" +msgstr "" + +#: Setup/Initialize.php:241 +msgid "All order confirmation records" +msgstr "" + +#: Config.php:229 +msgid "Auto Invoice Contract Interval" +msgstr "" + +#: Config.php:231 +msgid "Sets the biggest interval, contracts will be billed." +msgstr "" + +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" msgstr "" -#: Setup/Initialize.php:229 -msgid "All Invoices" +#: Config.php:263 +msgid "Completed" msgstr "" -#: Setup/Initialize.php:230 -msgid "All invoice records" +#: Config.php:273 +msgid "Reversal Status" msgstr "" -#: Setup/Initialize.php:240 -msgid "All Order Confirmations" +#: Config.php:275 +msgid "Possible Reversal Status" msgstr "" -#: Setup/Initialize.php:241 -msgid "All order confirmation records" +#: Config.php:285 +msgid "Not reversed" msgstr "" -#: Config.php:206 -msgid "Auto Invoice Contract Interval" +#: Config.php:291 +msgid "Partially reversed" msgstr "" -#: Config.php:208 -msgid "Sets the biggest interval, contracts will be billed." +#: Config.php:297 +msgid "Reversed" msgstr "" -#: Config.php:216 +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "Tạo số hợp đồng" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "Sẽ tự động hay tự nhập" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "tự động" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "tự nhập" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "Phê chuẩn số hợp đồng" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "Số có thể được phê chuẩn khi là chữ hoặc số" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "Chữ" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" +msgstr "Số bạn đang đặt đã tồn tại!" + +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" +msgstr "Danh mục" + +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:244 +msgid "Manufacturer" +msgstr "Nhà sản xuất" + +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" -msgstr "Hủy" +#: Model/Product.php:289 +msgid "Accountable" +msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" -msgstr "OK" +#: Model/Product.php:298 +msgid "Lifespan start" +msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/Document/Offer.php:117 +msgid "Order Booked" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:137 +msgid "OF-" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Order.php:51 +msgid "GENDER_Order" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Order.php:79 +msgid "Delivery Booked" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Order.php:88 +msgid "Invoice Created" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" +msgstr "" + +#: Model/Document/Abstract.php:381 +msgid "Internal Note" +msgstr "" + +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" +msgstr "" + +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" -msgstr "" +#: Model/Contract.php:265 +msgid "Responsible" +msgstr "Chịu trách nhiệm" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" -msgstr "" +#: Model/Contract.php:267 +msgid "Partner" +msgstr "Đối tác" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" -msgstr "" +#: Model/Contract.php:283 +msgid "Time Account" +msgstr "Tài khoản theo thời gian" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." -msgstr "" +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" -msgstr "" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" +msgstr "ĐÃ XÓA" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" +msgstr "HÓA ĐƠN" + +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" -msgstr "Xin sử dụng 1 số thập phân tại đây!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" +msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "Nhập vào mô tả" +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" #~ msgid "Division" diff --git a/tine20/Sales/translations/vi_VN.po b/tine20/Sales/translations/vi_VN.po index b3123ce21ba..9f676e320b5 100644 --- a/tine20/Sales/translations/vi_VN.po +++ b/tine20/Sales/translations/vi_VN.po @@ -16,937 +16,871 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" -msgstr "" - -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" msgstr "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" -msgstr "" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:324 +msgid "Enter description..." msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" - -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" +msgstr "" -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" - -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" + +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1002,7 +936,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1045,816 +979,991 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" + +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/zh_CN.po b/tine20/Sales/translations/zh_CN.po index c324fd58660..1ea03832b6a 100644 --- a/tine20/Sales/translations/zh_CN.po +++ b/tine20/Sales/translations/zh_CN.po @@ -16,937 +16,871 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "头衔" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "描述" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "联系人" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "描述" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" - -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "联系人" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "头衔" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "输入描述 ..." -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" - -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1002,7 +936,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1045,816 +979,991 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "输入描述 ..." +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Sales/translations/zh_TW.po b/tine20/Sales/translations/zh_TW.po index d89a56e0636..73f81383d49 100644 --- a/tine20/Sales/translations/zh_TW.po +++ b/tine20/Sales/translations/zh_TW.po @@ -16,937 +16,871 @@ msgstr "" "X-Poedit-Language: en\n" "X-Poedit-SourceCharset: utf-8\n" -#: Exception/InvoiceAlreadyClearedDelete.php:26 -#: Exception/InvoiceAlreadyClearedEdit.php:26 -msgid "Invoice is cleared already" -msgstr "" - -#: Exception/InvoiceAlreadyClearedDelete.php:31 -msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:26 -msgid "Address as Billing Address in Use" -msgstr "" - -#: Exception/DeleteUsedBillingAddress.php:31 -msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." -msgstr "" - -#: Exception/DeletePreviousInvoice.php:26 -msgid "Following Invoices Found" -msgstr "" - -#: Exception/DeletePreviousInvoice.php:31 -msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" +#: Controller.php:91 Controller.php:117 +msgid "You do not have admin rights on Sales" msgstr "" -#: Exception/InvoiceAlreadyClearedEdit.php:31 -msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" -msgstr "" +#: Controller.php:153 js/Document/AbstractEditDialog.js:131 +#: js/Document/AbstractEditDialog.js:137 js/Document/BoilerplatePanel.js:65 +#: js/Document/BoilerplatePanel.js:98 Model/Boilerplate.php:52 +#: Model/Boilerplate.php:143 +msgid "Boilerplate" +msgid_plural "Boilerplates" +msgstr[0] "" -#: Exception/AlterOCNumberForbidden.php:26 -msgid "No Right to alter the Number" +#: Frontend/Json.php:570 +msgid "You have to set a customer!" msgstr "" -#: Exception/AlterOCNumberForbidden.php:31 -msgid "You are not allowed to alter the number afterwards!" +#: js/OfferEditDialog.js:54 +msgid "Add New Offer" msgstr "" -#: Exception/DuplicateNumber.php:26 -msgid "Number duplicate" +#: js/OfferEditDialog.js:101 js/OrderConfirmationEditDialog.js:101 +#: js/ContractEditDialog.js:245 js/ExceptionHandler.js:91 Config.php:650 +#: Config.php:830 Model/OrderConfirmation.php:64 Model/Offer.php:77 +#: Model/Product.php:139 Model/Contract.php:115 +msgid "Number" msgstr "" -#: Exception/DuplicateNumber.php:31 -msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." -msgstr "" +#: js/OfferEditDialog.js:106 js/OrderConfirmationEditDialog.js:106 +#: js/ContractEditDialog.js:252 js/ExceptionHandler.js:96 +#: Model/OrderConfirmation.php:69 Model/InvoicePosition.php:81 +#: Model/Offer.php:82 Model/Document/Abstract.php:202 Model/Contract.php:120 +msgid "Title" +msgstr "標題" -#: Exception/UnknownCurrencyCode.php:26 -msgid "Unknown Currency Code" -msgstr "" +#: js/OfferEditDialog.js:111 js/InvoiceDetailsPanel.js:104 +#: js/ContractEditDialog.js:267 js/CustomerFilterModel.js:30 +#: js/CustomerEditDialog.js:179 js/InvoiceEditDialog.js:583 Model/Offer.php:52 +#: Model/Offer.php:96 Model/Address.php:85 Model/Document/Abstract.php:227 +#: Model/Customer.php:39 Model/Customer.php:267 Model/Invoice.php:90 +#: Model/Invoice.php:248 Model/Invoice.php:289 Model/Boilerplate.php:132 +#: Model/Contract.php:167 Model/Contract.php:266 Model/Contract.php:287 +msgid "Customer" +msgid_plural "Customers" +msgstr[0] "" -#: Exception/UnknownCurrencyCode.php:31 -msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." -msgstr "" +#: js/OfferEditDialog.js:136 js/PurchaseInvoiceDetailsPanel.js:103 +#: js/OrderConfirmationEditDialog.js:147 js/SupplierDetailsPanel.js:157 +#: js/SupplierEditDialog.js:368 js/InvoiceDetailsPanel.js:103 +#: js/CustomerDetailsPanel.js:157 js/ContractEditDialog.js:323 +#: js/CustomerEditDialog.js:429 js/PurchaseInvoiceEditDialog.js:548 +#: js/InvoiceEditDialog.js:562 Model/OrderConfirmation.php:74 +#: Model/Offer.php:87 Model/Product.php:181 Model/Customer.php:101 +#: Model/Invoice.php:109 Model/Supplier.php:75 Model/PurchaseInvoice.php:86 +#: Model/Contract.php:125 Model/DocumentPosition/Abstract.php:256 +msgid "Description" +msgstr "說明" -#: Acl/Rights.php:188 -msgid "Manage Products" +#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 +#: js/SupplierEditDialog.js:382 js/CustomerEditDialog.js:443 +#: js/PurchaseInvoiceEditDialog.js:562 +msgid "Enter description" msgstr "" -#: Acl/Rights.php:189 -msgid "Add, edit and delete products." +#: js/PurchaseInvoiceApproverFilterModel.js:30 +#: js/PurchaseInvoiceEditDialog.js:503 Model/PurchaseInvoice.php:67 +#: Model/PurchaseInvoice.php:201 Model/PurchaseInvoice.php:240 +msgid "Approver" msgstr "" -#: Acl/Rights.php:192 -msgid "Manage Contracts" +#: js/PurchaseInvoiceApproverFilterModel.js:32 +msgid "without approver" msgstr "" -#: Acl/Rights.php:193 -msgid "Add, edit and delete contracts." +#: js/PurchaseInvoiceDetailsPanel.js:66 js/InvoiceDetailsPanel.js:66 +msgid "Select invoice" msgstr "" -#: Acl/Rights.php:196 -msgid "Manage Cost Centers" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:98 js/InvoiceDetailsPanel.js:98 +#: js/PurchaseInvoiceEditDialog.js:404 js/InvoiceEditDialog.js:523 +#: js/InvoiceEditDialog.js:536 Config.php:692 Model/Document/Invoice.php:46 +#: Model/Invoice.php:56 +msgid "Invoice" +msgid_plural "Invoices" +msgstr[0] "" -#: Acl/Rights.php:197 -msgid "Add, edit and delete cost centers." +#: js/PurchaseInvoiceDetailsPanel.js:100 js/InvoiceDetailsPanel.js:100 +#: js/PurchaseInvoiceEditDialog.js:412 js/InvoiceEditDialog.js:544 +#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 +msgid "Invoice Number" msgstr "" -#: Acl/Rights.php:200 -msgid "Manage Customers" +#: js/PurchaseInvoiceDetailsPanel.js:101 js/InvoiceDetailsPanel.js:101 +#: js/InvoiceEditDialog.js:551 Model/Invoice.php:131 +msgid "Date" msgstr "" -#: Acl/Rights.php:201 -msgid "Add, edit and delete customers." +#: js/PurchaseInvoiceDetailsPanel.js:102 js/InvoiceDetailsPanel.js:102 +#: js/InvoiceEditDialog.js:557 Model/InvoicePosition.php:53 +#: Model/InvoicePosition.php:57 Model/Invoice.php:172 +#: Model/DocumentPosition/Abstract.php:194 +msgid "Type" msgstr "" -#: Acl/Rights.php:204 -msgid "Manage Suppliers" -msgstr "" +#: js/PurchaseInvoiceDetailsPanel.js:104 js/SupplierEditDialog.js:145 +#: js/PurchaseInvoiceEditDialog.js:418 js/SupplierFilterModel.js:30 +#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 +#: Model/PurchaseInvoice.php:213 Model/PurchaseInvoice.php:232 +msgid "Supplier" +msgid_plural "Suppliers" +msgstr[0] "" -#: Acl/Rights.php:205 -msgid "Add, edit and delete suppliers." +#: js/PurchaseInvoiceDetailsPanel.js:114 js/BillingAddressGridPanel.js:39 +#: js/InvoiceDetailsPanel.js:115 js/ContractEditDialog.js:269 +#: js/InvoiceEditDialog.js:598 Model/Contract.php:140 +msgid "Billing Address" msgstr "" -#: Acl/Rights.php:208 -msgid "manage invoices" +#: js/PurchaseInvoiceDetailsPanel.js:126 js/SupplierEditDialog.js:315 +#: js/InvoiceDetailsPanel.js:127 js/CustomerEditDialog.js:376 +#: js/PurchaseInvoiceEditDialog.js:470 js/InvoiceEditDialog.js:623 +msgid "Miscellaneous" msgstr "" -#: Acl/Rights.php:209 -msgid "Add, edit and delete invoices." +#: js/PurchaseInvoiceDetailsPanel.js:128 js/InvoiceDetailsPanel.js:129 +#: js/InvoiceEditDialog.js:630 Model/Invoice.php:151 +msgid "Credit Term" msgstr "" -#: Acl/Rights.php:212 -msgid "Manage Order Confirmations" +#: js/PurchaseInvoiceDetailsPanel.js:130 js/InvoiceDetailsPanel.js:131 +#: js/PurchaseInvoiceEditDialog.js:525 js/InvoiceEditDialog.js:651 +#: Model/Invoice.php:166 +msgid "Cleared" msgstr "" -#: Acl/Rights.php:213 -msgid "Add, edit and delete order confirmations." +#: js/PurchaseInvoiceDetailsPanel.js:131 js/InvoiceDetailsPanel.js:132 +#: js/PurchaseInvoiceEditDialog.js:293 js/InvoiceEditDialog.js:456 +#: Model/Invoice.php:182 Model/PurchaseInvoice.php:140 +msgid "Price Net" msgstr "" -#: Acl/Rights.php:216 -msgid "Manage Offers" +#: js/PurchaseInvoiceDetailsPanel.js:132 js/InvoiceDetailsPanel.js:133 +#: js/PurchaseInvoiceEditDialog.js:337 js/InvoiceEditDialog.js:468 +#: Model/Invoice.php:189 Model/PurchaseInvoice.php:161 +msgid "Taxes (VAT)" msgstr "" -#: Acl/Rights.php:217 -msgid "Add, edit and delete offers." +#: js/PurchaseInvoiceDetailsPanel.js:133 js/PurchaseInvoiceEditDialog.js:326 +#: Model/PurchaseInvoice.php:179 +msgid "Total Price" msgstr "" -#: Acl/Rights.php:220 -msgid "Manage Purchase Invoices" +#: js/OrderConfirmationEditDialog.js:62 +msgid "Add New Order Confirmation" msgstr "" -#: Acl/Rights.php:221 -msgid "Add, edit and delete purchase invoices." -msgstr "" +#: js/OrderConfirmationEditDialog.js:111 js/InvoiceDetailsPanel.js:105 +#: js/ContractFilterModel.js:30 js/InvoiceEditDialog.js:566 +#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 +#: Model/ProductAggregate.php:81 Model/Invoice.php:78 Model/Invoice.php:236 +#: Model/Invoice.php:285 Model/Contract.php:46 +msgid "Contract" +msgid_plural "Contracts" +msgstr[0] "合約" -#: Acl/Rights.php:224 -msgid "Change number of an order confirmations" -msgstr "" +#: js/OrderConfirmationEditDialog.js:122 Model/Offer.php:33 +#: Model/Document/Offer.php:45 +msgid "Offer" +msgid_plural "Offers" +msgstr[0] "" -#: Acl/Rights.php:225 -msgid "Allow changing the number of an order confirmation during the update." +#: js/Sales.js:79 js/SupplierEditDialog.js:122 js/CustomerEditDialog.js:135 +#: js/AddressGridPanel.js:51 +msgid "Copy address to the clipboard" msgstr "" -#: Acl/Rights.php:228 -msgid "Set number of invoices" +#: js/SupplierDetailsPanel.js:68 +msgid "Select supplier" msgstr "" -#: Acl/Rights.php:229 -msgid "Allow to set the number of an invoice." +#: js/SupplierDetailsPanel.js:123 js/SupplierEditDialog.js:158 +#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:192 +msgid "Core Data" msgstr "" -#: Export/definitions/sales_product_csv.xml:5 -msgid "CSV all data" +#: js/SupplierDetailsPanel.js:125 js/SupplierEditDialog.js:164 +#: Model/Supplier.php:56 +msgid "Supplier Number" msgstr "" -#: Export/definitions/invoice_timesheet_xlsx.xml:15 -msgid "Invoice Timesheet" +#: js/SupplierDetailsPanel.js:126 js/SupplierEditDialog.js:182 +#: js/SupplierEditDialog.js:265 js/CustomerDetailsPanel.js:126 +#: js/CustomerEditDialog.js:216 js/CustomerEditDialog.js:328 +#: js/AddressEditDialog.js:135 Model/Product.php:169 Model/Address.php:116 +#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 +#: Model/Supplier.php:181 Model/Boilerplate.php:87 +msgid "Name" msgstr "" -#: Export/Ods/Invoice.php:125 -msgid "CLEARED" +#: js/SupplierDetailsPanel.js:127 js/SupplierEditDialog.js:323 +#: js/CustomerDetailsPanel.js:127 js/CustomerEditDialog.js:384 +#: Model/Customer.php:94 Model/Supplier.php:69 +msgid "Web" msgstr "" -#: Export/Ods/Invoice.php:128 -msgid "INVOICE" +#: js/SupplierDetailsPanel.js:128 js/SupplierEditDialog.js:191 +#: js/CustomerDetailsPanel.js:128 js/ContractEditDialog.js:289 +#: js/CustomerEditDialog.js:225 Model/Customer.php:109 Model/Supplier.php:82 +#: Model/Contract.php:96 Model/Contract.php:179 +msgid "Contact Person (external)" msgstr "" -#: Controller.php:91 Controller.php:117 -msgid "You do not have admin rights on Sales" +#: js/SupplierDetailsPanel.js:129 js/SupplierEditDialog.js:201 +#: js/CustomerDetailsPanel.js:129 js/ContractEditDialog.js:301 +#: js/CustomerEditDialog.js:235 Model/Customer.php:122 Model/Supplier.php:93 +#: Model/Contract.php:85 Model/Contract.php:191 +msgid "Contact Person (internal)" msgstr "" -#: Controller.php:153 Model/Boilerplate.php:52 Model/Boilerplate.php:143 -#: js/Document/AbstractEditDialog.js:123 js/Document/AbstractEditDialog.js:129 -#: js/Document/BoilerplatePanel.js:65 js/Document/BoilerplatePanel.js:98 -msgid "Boilerplate" -msgid_plural "Boilerplates" -msgstr[0] "" - -#: Controller/NumberableAbstract.php:101 -msgid "The number you have tried to set is already in use!" +#: js/SupplierDetailsPanel.js:141 js/SupplierEditDialog.js:209 +#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:243 +msgid "Accounting" msgstr "" -#: Frontend/Json.php:571 -msgid "You have to set a customer!" +#: js/SupplierDetailsPanel.js:143 js/SupplierEditDialog.js:247 +#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:280 +msgid "IBAN" msgstr "" -#: Model/Customer.php:38 -msgid "GENDER_Customer" +#: js/SupplierDetailsPanel.js:144 js/SupplierEditDialog.js:250 +#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:283 +msgid "BIC" msgstr "" -#: Model/Customer.php:39 Model/Customer.php:267 Model/Contract.php:161 -#: Model/Contract.php:260 Model/Contract.php:281 Model/Offer.php:52 -#: Model/Offer.php:96 Model/Invoice.php:90 Model/Invoice.php:239 -#: Model/Invoice.php:280 Model/Address.php:85 Model/Boilerplate.php:132 -#: Model/Document/Abstract.php:209 js/CustomerFilterModel.js:30 -#: js/OfferEditDialog.js:111 js/InvoiceEditDialog.js:583 -#: js/InvoiceDetailsPanel.js:104 js/ContractEditDialog.js:267 -#: js/CustomerEditDialog.js:197 -msgid "Customer" -msgid_plural "Customers" -msgstr[0] "" - -#: Model/Customer.php:69 js/CustomerDetailsPanel.js:125 -#: js/CustomerEditDialog.js:216 -msgid "Customer Number" +#: js/SupplierDetailsPanel.js:145 js/SupplierEditDialog.js:217 +#: js/CustomerDetailsPanel.js:145 js/CustomerEditDialog.js:251 +#: Model/Customer.php:135 Model/Supplier.php:104 +msgid "VAT ID" msgstr "" -#: Model/Customer.php:79 Model/Supplier.php:62 Model/Supplier.php:173 -#: Model/Supplier.php:181 Model/Address.php:116 Model/Boilerplate.php:87 -#: Model/Product.php:156 js/SupplierEditDialog.js:181 -#: js/SupplierEditDialog.js:264 js/SupplierDetailsPanel.js:126 -#: js/CustomerDetailsPanel.js:126 js/AddressEditDialog.js:135 -#: js/CustomerEditDialog.js:233 js/CustomerEditDialog.js:345 -msgid "Name" +#: js/SupplierDetailsPanel.js:146 js/SupplierEditDialog.js:231 +#: js/CustomerDetailsPanel.js:146 js/CustomerEditDialog.js:265 +#: Model/Customer.php:151 Model/Supplier.php:117 +msgid "Currency" msgstr "" -#: Model/Customer.php:86 Model/Address.php:97 js/AddressEditDialog.js:99 -#: js/CustomerEditDialog.js:330 -msgid "Name shorthand" +#: js/SupplierDetailsPanel.js:147 js/SupplierEditDialog.js:236 +#: js/CustomerDetailsPanel.js:147 js/CustomerEditDialog.js:269 +#: Model/Customer.php:158 Model/Supplier.php:122 +msgid "Currency Translation Rate" msgstr "" -#: Model/Customer.php:94 Model/Supplier.php:69 js/SupplierEditDialog.js:322 -#: js/SupplierDetailsPanel.js:127 js/CustomerDetailsPanel.js:127 -#: js/CustomerEditDialog.js:403 -msgid "Web" +#: js/SupplierEditDialog.js:41 +msgid "Either postalcode or postbox is required!" msgstr "" -#: Model/Customer.php:101 Model/Supplier.php:75 Model/Contract.php:125 -#: Model/Offer.php:87 Model/DocumentPosition/Abstract.php:254 -#: Model/Invoice.php:109 Model/OrderConfirmation.php:74 -#: Model/PurchaseInvoice.php:86 Model/Product.php:168 -#: js/SupplierEditDialog.js:367 js/PurchaseInvoiceEditDialog.js:534 -#: js/OfferEditDialog.js:136 js/SupplierDetailsPanel.js:157 -#: js/InvoiceEditDialog.js:562 js/CustomerDetailsPanel.js:157 -#: js/OrderConfirmationEditDialog.js:147 js/InvoiceDetailsPanel.js:103 -#: js/PurchaseInvoiceDetailsPanel.js:103 js/ContractEditDialog.js:323 -#: js/CustomerEditDialog.js:448 -msgid "Description" -msgstr "說明" - -#: Model/Customer.php:109 Model/Supplier.php:82 Model/Contract.php:96 -#: Model/Contract.php:173 js/SupplierEditDialog.js:190 -#: js/SupplierDetailsPanel.js:128 js/CustomerDetailsPanel.js:128 -#: js/ContractEditDialog.js:289 js/CustomerEditDialog.js:242 -msgid "Contact Person (external)" +#: js/SupplierEditDialog.js:62 +msgid "Copy Supplier" msgstr "" -#: Model/Customer.php:122 Model/Supplier.php:93 Model/Contract.php:85 -#: Model/Contract.php:185 js/SupplierEditDialog.js:200 -#: js/SupplierDetailsPanel.js:129 js/CustomerDetailsPanel.js:129 -#: js/ContractEditDialog.js:301 js/CustomerEditDialog.js:252 -msgid "Contact Person (internal)" +#: js/SupplierEditDialog.js:65 +msgid "Add New Supplier" msgstr "" -#: Model/Customer.php:135 Model/Supplier.php:104 js/SupplierEditDialog.js:216 -#: js/SupplierDetailsPanel.js:145 js/CustomerDetailsPanel.js:145 -#: js/CustomerEditDialog.js:268 -msgid "VAT ID" +#: js/SupplierEditDialog.js:67 +#, python-brace-format +msgid "Edit Supplier \"{0}\"" msgstr "" -#: Model/Customer.php:142 Model/Supplier.php:110 -#: Model/Document/Abstract.php:328 js/SupplierEditDialog.js:219 -#: js/CustomerEditDialog.js:271 +#: js/SupplierEditDialog.js:220 js/CustomerEditDialog.js:254 +#: Model/Document/Abstract.php:353 Model/Customer.php:142 +#: Model/Supplier.php:110 msgid "Credit Term (days)" msgstr "" -#: Model/Customer.php:151 Model/Supplier.php:117 js/SupplierEditDialog.js:230 -#: js/SupplierDetailsPanel.js:146 js/CustomerDetailsPanel.js:146 -#: js/CustomerEditDialog.js:282 -msgid "Currency" +#: js/SupplierEditDialog.js:257 js/CustomerEditDialog.js:304 +msgid "Postal Address" msgstr "" -#: Model/Customer.php:158 Model/Supplier.php:122 js/SupplierEditDialog.js:235 -#: js/SupplierDetailsPanel.js:147 js/CustomerDetailsPanel.js:147 -#: js/CustomerEditDialog.js:286 -msgid "Currency Translation Rate" +#: js/SupplierEditDialog.js:269 js/CustomerEditDialog.js:324 +#: js/AddressEditDialog.js:110 Model/Address.php:109 +msgid "Email" msgstr "" -#: Model/Customer.php:180 Model/PurchaseInvoice.php:118 -#: js/PurchaseInvoiceEditDialog.js:369 js/CustomerEditDialog.js:303 -msgid "Discount (%)" +#: js/SupplierEditDialog.js:273 js/CustomerEditDialog.js:344 +#: js/AddressEditDialog.js:150 Model/Address.php:145 Model/Supplier.php:189 +msgid "Street" msgstr "" -#: Model/Customer.php:189 js/DeliveryAddressGridPanel.js:40 -msgid "Delivery Addresses" +#: js/SupplierEditDialog.js:277 js/CustomerEditDialog.js:348 +#: js/AddressEditDialog.js:153 Model/Address.php:152 Model/Supplier.php:231 +msgid "Postbox" msgstr "" -#: Model/Customer.php:205 js/BillingAddressGridPanel.js:40 -msgid "Billing Addresses" +#: js/SupplierEditDialog.js:283 js/CustomerEditDialog.js:353 +#: js/AddressEditDialog.js:156 Model/Address.php:159 Model/Supplier.php:198 +msgid "Postalcode" msgstr "" -#: Model/Supplier.php:34 -msgid "GENDER_Supplier" +#: js/SupplierEditDialog.js:288 js/CustomerEditDialog.js:357 +#: js/AddressEditDialog.js:159 Model/Address.php:166 Model/Supplier.php:206 +msgid "Locality" msgstr "" -#: Model/Supplier.php:35 Model/Supplier.php:269 Model/PurchaseInvoice.php:55 -#: Model/PurchaseInvoice.php:204 Model/PurchaseInvoice.php:223 -#: js/SupplierEditDialog.js:145 js/PurchaseInvoiceEditDialog.js:408 -#: js/SupplierFilterModel.js:30 js/PurchaseInvoiceDetailsPanel.js:104 -msgid "Supplier" -msgid_plural "Suppliers" -msgstr[0] "" +#: js/SupplierEditDialog.js:292 js/CustomerEditDialog.js:361 +#: js/AddressEditDialog.js:162 Model/Address.php:173 Model/Supplier.php:214 +msgid "Region" +msgstr "" -#: Model/Supplier.php:56 js/SupplierEditDialog.js:164 -#: js/SupplierDetailsPanel.js:125 -msgid "Supplier Number" +#: js/SupplierEditDialog.js:297 js/CustomerEditDialog.js:366 +#: js/AddressEditDialog.js:166 Model/Address.php:180 Model/Supplier.php:222 +msgid "Country" msgstr "" -#: Model/Supplier.php:157 js/SupplierEditDialog.js:301 +#: js/SupplierEditDialog.js:302 Model/Supplier.php:157 msgid "Prefix" msgstr "" -#: Model/Supplier.php:165 js/SupplierEditDialog.js:305 +#: js/SupplierEditDialog.js:306 Model/Supplier.php:165 msgid "Additional Prefix" msgstr "" -#: Model/Supplier.php:189 Model/Address.php:145 js/SupplierEditDialog.js:272 -#: js/AddressEditDialog.js:150 js/CustomerEditDialog.js:361 -msgid "Street" -msgstr "" - -#: Model/Supplier.php:198 Model/Address.php:159 js/SupplierEditDialog.js:282 -#: js/AddressEditDialog.js:156 js/CustomerEditDialog.js:371 -msgid "Postalcode" +#: js/BillingDateDialog.js:127 js/ProductAggregateGridPanel.js:445 +msgid "Cancel" msgstr "" -#: Model/Supplier.php:206 Model/Address.php:166 js/SupplierEditDialog.js:287 -#: js/AddressEditDialog.js:159 js/CustomerEditDialog.js:376 -msgid "Locality" +#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 +msgid "Ok" msgstr "" -#: Model/Supplier.php:214 Model/Address.php:173 js/SupplierEditDialog.js:291 -#: js/AddressEditDialog.js:162 js/CustomerEditDialog.js:380 -msgid "Region" +#: js/ProductAggregateLayerCombo.js:116 +#, python-brace-format +msgid "Selected {0}" msgstr "" -#: Model/Supplier.php:222 Model/Address.php:180 js/SupplierEditDialog.js:296 -#: js/AddressEditDialog.js:166 js/CustomerEditDialog.js:385 -msgid "Country" +#: js/BillingAddressGridPanel.js:40 Model/Customer.php:205 +msgid "Billing Addresses" msgstr "" -#: Model/Supplier.php:231 Model/Address.php:152 js/SupplierEditDialog.js:276 -#: js/AddressEditDialog.js:153 js/CustomerEditDialog.js:365 -msgid "Postbox" +#: js/InvoiceDetailsPanel.js:134 js/PurchaseInvoiceEditDialog.js:304 +#: js/InvoiceEditDialog.js:480 Model/Invoice.php:196 +#: Model/PurchaseInvoice.php:147 +msgid "Price Gross" msgstr "" -#: Model/Contract.php:45 -msgid "GENDER_Contract" +#: js/InvoicePositionGridPanel.js:111 +msgid "Export Records from these Positions" msgstr "" -#: Model/Contract.php:46 Model/Invoice.php:78 Model/Invoice.php:227 -#: Model/Invoice.php:276 Model/ProductAggregate.php:81 -#: Model/OrderConfirmation.php:51 Model/OrderConfirmation.php:83 -#: js/InvoiceEditDialog.js:566 js/OrderConfirmationEditDialog.js:111 -#: js/InvoiceDetailsPanel.js:105 js/ContractFilterModel.js:30 -msgid "Contract" -msgid_plural "Contracts" -msgstr[0] "合約" - -#: Model/Contract.php:108 Model/Contract.php:207 -#: js/ContractProductFilterModel.js:30 -msgid "Products" +#: js/CustomerDetailsPanel.js:68 +msgid "Select customer" msgstr "" -#: Model/Contract.php:115 Model/Offer.php:77 Model/OrderConfirmation.php:64 -#: Model/Product.php:130 Config.php:560 Config.php:740 -#: js/ExceptionHandler.js:91 js/OfferEditDialog.js:101 -#: js/OrderConfirmationEditDialog.js:101 js/ContractEditDialog.js:245 -msgid "Number" +#: js/CustomerDetailsPanel.js:125 js/CustomerEditDialog.js:198 +#: Model/Customer.php:69 +msgid "Customer Number" msgstr "" -#: Model/Contract.php:120 Model/Offer.php:82 Model/OrderConfirmation.php:69 -#: Model/Document/Abstract.php:188 Model/InvoicePosition.php:81 -#: js/ExceptionHandler.js:96 js/OfferEditDialog.js:106 -#: js/OrderConfirmationEditDialog.js:106 js/ContractEditDialog.js:252 -msgid "Title" -msgstr "標題" +#: js/OrderConfirmationFilterModel.js:30 Model/OrderConfirmation.php:33 +#: Model/Offer.php:64 +msgid "Order Confirmation" +msgid_plural "Order Confirmations" +msgstr[0] "" -#: Model/Contract.php:140 js/InvoiceEditDialog.js:598 -#: js/InvoiceDetailsPanel.js:115 js/PurchaseInvoiceDetailsPanel.js:114 -#: js/ContractEditDialog.js:269 js/BillingAddressGridPanel.js:39 -msgid "Billing Address" +#: js/OrderConfirmationFilterModel.js:32 +msgid "without order confirmation" msgstr "" -#: Model/Contract.php:151 Model/ProductAggregate.php:119 -#: js/ProductAggregateGridPanel.js:233 js/ContractEditDialog.js:279 -msgid "Start Date" +#: js/ContractGridPanel.js:55 +msgid "Bill Contract" msgstr "" -#: Model/Contract.php:155 Model/ProductAggregate.php:123 -#: js/ProductAggregateGridPanel.js:234 js/ContractEditDialog.js:284 -msgid "End Date" +#: js/ContractGridPanel.js:88 +msgid "Billing Contract..." msgstr "" -#: Model/Contract.php:197 Model/Contract.php:273 Model/PurchaseInvoice.php:239 -#: js/PurchaseInvoiceEditDialog.js:500 js/ContractEditDialog.js:312 -msgid "Lead Cost Center" +#: js/ContractGridPanel.js:103 +#, python-brace-format +msgid "Bill Contract \"{0} - {1}\"" msgstr "" -#: Model/Contract.php:229 -msgid "Merge" +#: js/ContractGridPanel.js:104 +msgid "Select the date to generate the bill for" msgstr "" -#: Model/Contract.php:259 -msgid "Responsible" +#: js/ContractEditDialog.js:102 +msgid "Set as accountable" msgstr "" -#: Model/Contract.php:261 -msgid "Partner" +#: js/ContractEditDialog.js:121 +msgid "Choose product for accountable" msgstr "" -#: Model/Contract.php:277 -msgid "Time Account" +#: js/ContractEditDialog.js:209 +msgid "Please use a decimal number here!" msgstr "" -#: Model/Offer.php:32 Model/Document/Offer.php:42 -msgid "GENDER_Offer" +#: js/ContractEditDialog.js:239 Model/Invoice.php:222 +msgid "Positions" msgstr "" -#: Model/Offer.php:33 Model/Document/Offer.php:43 -#: js/OrderConfirmationEditDialog.js:122 -msgid "Offer" -msgid_plural "Offers" -msgstr[0] "" - -#: Model/Offer.php:64 Model/OrderConfirmation.php:33 -#: js/OrderConfirmationFilterModel.js:30 -msgid "Order Confirmation" -msgid_plural "Order Confirmations" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:151 -msgid "Position" -msgid_plural "Positions" -msgstr[0] "" - -#: Model/DocumentPosition/Abstract.php:152 -msgid "GENDER_Position" +#: js/ContractEditDialog.js:279 js/ProductAggregateGridPanel.js:233 +#: Model/ProductAggregate.php:119 Model/Contract.php:151 +msgid "Start Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:192 Model/Invoice.php:163 -#: Model/InvoicePosition.php:53 Model/InvoicePosition.php:57 -#: js/InvoiceEditDialog.js:557 js/InvoiceDetailsPanel.js:102 -#: js/PurchaseInvoiceDetailsPanel.js:102 -msgid "Type" +#: js/ContractEditDialog.js:284 js/ProductAggregateGridPanel.js:234 +#: Model/ProductAggregate.php:123 Model/Contract.php:158 +msgid "End Date" msgstr "" -#: Model/DocumentPosition/Abstract.php:197 -msgid "Pos." +#: js/ContractEditDialog.js:312 js/PurchaseInvoiceEditDialog.js:514 +#: Model/PurchaseInvoice.php:248 Model/Contract.php:203 Model/Contract.php:279 +msgid "Lead Cost Center" msgstr "" -#: Model/DocumentPosition/Abstract.php:205 Model/ProductAggregate.php:39 -#: Model/ProductAggregate.php:69 Model/SubProductMapping.php:101 -#: Model/Product.php:64 Config.php:634 js/ProductAggregateGridPanel.js:61 -#: js/ProductAggregateGridPanel.js:226 -msgid "Product" -msgid_plural "Products" -msgstr[0] "" +#: js/ContractEditDialog.js:324 +msgid "Enter description..." +msgstr "輸入說明" -#: Model/DocumentPosition/Abstract.php:215 -msgid "Grouping" +#: js/Document/AbstractEditDialog.js:30 +msgid "Confirm Status Change" msgstr "" -#: Model/DocumentPosition/Abstract.php:222 Model/SubProductMapping.php:150 -msgid "Sorting" +#: js/Document/AbstractEditDialog.js:31 +msgid "Changing this workflow status might not be revertible. Proceed anyway?" msgstr "" -#: Model/DocumentPosition/Abstract.php:244 -msgid "Product / Service" +#: js/Document/BoilerplatePanel.js:28 +msgid "More Boilerplates" msgstr "" -#: Model/DocumentPosition/Abstract.php:264 Model/ProductAggregate.php:93 -#: Model/InvoicePosition.php:98 js/ProductAggregateGridPanel.js:162 -#: js/ProductAggregateGridPanel.js:187 js/ProductAggregateGridPanel.js:230 -msgid "Quantity" +#: js/Document/BoilerplatePanel.js:139 +msgid "Choose Boilerplate" msgstr "" -#: Model/DocumentPosition/Abstract.php:269 -msgid "Use Actual Quantity" +#: js/Document/BoilerplatePanel.js:140 +msgid "Please choose which boilerplate you want to use as { name }" msgstr "" -#: Model/DocumentPosition/Abstract.php:275 Model/Product.php:192 -#: Model/InvoicePosition.php:94 -msgid "Unit" +#: js/Document/BoilerplatePanel.js:144 +msgid "Existing:" msgstr "" -#: Model/DocumentPosition/Abstract.php:281 -msgid "Unit Price" +#: js/Document/BoilerplatePanel.js:145 +msgid "Applicable:" msgstr "" -#: Model/DocumentPosition/Abstract.php:286 -#: js/DocumentPosition/AbstractGridPanel.js:268 -msgid "Price" +#: js/Document/TracAction.js:18 +msgid "Track Document" msgstr "" -#: Model/DocumentPosition/Abstract.php:295 -msgid "Position Discount Type" +#: js/Document/CreatePaperSlipAction.js:21 +msgid "Print Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:303 -msgid "Position Discount Percentage" +#: js/Document/CreatePaperSlipAction.js:33 +#, python-brace-format +msgid "Creating {type} Paper Slip" msgstr "" -#: Model/DocumentPosition/Abstract.php:311 -msgid "Position Discount Sum" +#: js/Document/CreatePaperSlipAction.js:58 +#: js/Document/CreateFollowUpAction.js:170 +msgid "There where Errors:" msgstr "" -#: Model/DocumentPosition/Abstract.php:322 -msgid "Net price" +#: js/Document/CreatePaperSlipAction.js:59 +msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" msgstr "" -#: Model/DocumentPosition/Abstract.php:331 Model/Product.php:219 -msgid "Sales Tax Rate" +#: js/Document/CreatePaperSlipAction.js:73 +msgid "Send by E-Mail" msgstr "" -#: Model/DocumentPosition/Abstract.php:341 Model/Invoice.php:194 -#: Model/PurchaseInvoice.php:159 Model/Document/Abstract.php:302 -msgid "Sales Tax" +#: js/Document/TracDialog.js:28 +msgid "Trac Document { title }" msgstr "" -#: Model/DocumentPosition/Abstract.php:350 -msgid "Gross Price" +#: js/Document/TracDialog.js:40 +msgid "Expand Positions" msgstr "" -#: Model/DocumentPosition/Abstract.php:358 Model/Document/Abstract.php:345 -msgid "Cost Bearer" +#: js/Document/CreateFollowUpAction.js:36 Config.php:693 +#: Model/Document/Abstract.php:154 Model/Document/Abstract.php:572 +#: Model/DocumentPosition/Abstract.php:477 +msgid "Reversal" msgstr "" -#: Model/DocumentPosition/Abstract.php:368 Model/Product.php:297 -msgid "Costcenter" +#: js/Document/CreateFollowUpAction.js:37 +msgid "Reversals" msgstr "" -#: Model/Invoice.php:55 Model/Document/Invoice.php:43 -msgid "GENDER_Invoice" +#: js/Document/CreateFollowUpAction.js:41 +msgid "Create { targetRecordName }" msgstr "" -#: Model/Invoice.php:56 Model/Document/Invoice.php:44 Config.php:602 -#: js/PurchaseInvoiceEditDialog.js:394 js/InvoiceEditDialog.js:523 -#: js/InvoiceEditDialog.js:536 js/InvoiceDetailsPanel.js:98 -#: js/PurchaseInvoiceDetailsPanel.js:98 -msgid "Invoice" -msgid_plural "Invoices" -msgstr[0] "" +#: js/Document/CreateFollowUpAction.js:63 +msgid "Creating { targetRecordsName }" +msgstr "" -#: Model/Invoice.php:104 Model/PurchaseInvoice.php:81 -#: js/PurchaseInvoiceEditDialog.js:402 js/InvoiceEditDialog.js:544 -#: js/InvoiceDetailsPanel.js:100 js/PurchaseInvoiceDetailsPanel.js:100 -msgid "Invoice Number" +#: js/Document/CreateFollowUpAction.js:74 +msgid "Book unbooked { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:114 Model/Invoice.php:125 Model/Address.php:61 -#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 -msgid "Address" -msgid_plural "Addresss" -msgstr[0] "" - -#: Model/Invoice.php:131 js/InvoiceEditDialog.js:551 -#: js/InvoiceDetailsPanel.js:101 js/PurchaseInvoiceDetailsPanel.js:101 -msgid "Date" +#: js/Document/CreateFollowUpAction.js:75 +msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceRecordsName } now?" msgstr "" -#: Model/Invoice.php:135 js/InvoiceEditDialog.js:658 -msgid "Interval Begins" +#: js/Document/CreateFollowUpAction.js:89 +msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:139 js/InvoiceEditDialog.js:663 -msgid "Interval Ends" +#: js/Document/CreateFollowUpAction.js:131 +msgid "Nothing to do" msgstr "" -#: Model/Invoice.php:142 js/InvoiceEditDialog.js:630 -#: js/InvoiceDetailsPanel.js:129 js/PurchaseInvoiceDetailsPanel.js:128 -msgid "Credit Term" +#: js/Document/CreateFollowUpAction.js:132 +msgid "{ document } has no open positions left." msgstr "" -#: Model/Invoice.php:148 Model/PurchaseInvoice.php:179 -#: Model/Document/Abstract.php:336 -msgid "Cost Center" +#: js/Document/CreateFollowUpAction.js:139 +msgid "Choose { sourceRecordsName }" msgstr "" -#: Model/Invoice.php:157 js/PurchaseInvoiceEditDialog.js:511 -#: js/InvoiceEditDialog.js:651 js/InvoiceDetailsPanel.js:131 -#: js/PurchaseInvoiceDetailsPanel.js:130 -msgid "Cleared" +#: js/Document/CreateFollowUpAction.js:140 +msgid "Please choose which { sourceRecordsName } should be included in shared { targetRecordName }" msgstr "" -#: Model/Invoice.php:173 Model/PurchaseInvoice.php:131 -#: js/PurchaseInvoiceEditDialog.js:284 js/InvoiceEditDialog.js:456 -#: js/InvoiceDetailsPanel.js:132 js/PurchaseInvoiceDetailsPanel.js:131 -msgid "Price Net" +#: js/Document/CreateFollowUpAction.js:161 +msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" msgstr "" -#: Model/Invoice.php:180 Model/PurchaseInvoice.php:152 -#: js/PurchaseInvoiceEditDialog.js:328 js/InvoiceEditDialog.js:468 -#: js/InvoiceDetailsPanel.js:133 js/PurchaseInvoiceDetailsPanel.js:132 -msgid "Taxes (VAT)" +#: js/Document/CreateFollowUpAction.js:179 +msgid "Documents Created:" msgstr "" -#: Model/Invoice.php:187 Model/PurchaseInvoice.php:138 -#: js/PurchaseInvoiceEditDialog.js:295 js/InvoiceEditDialog.js:480 -#: js/InvoiceDetailsPanel.js:134 -msgid "Price Gross" +#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 +msgid "without customer" msgstr "" -#: Model/Invoice.php:205 js/InvoiceEditDialog.js:513 -msgid "Inventory Change" +#: js/ContractFilterModel.js:32 +msgid "without contract" msgstr "" -#: Model/Invoice.php:213 js/ContractEditDialog.js:239 -msgid "Positions" +#: js/CustomerEditDialog.js:57 +msgid "Copy Customer" msgstr "" -#: Model/Invoice.php:284 -msgid "Reversal Invoice" +#: js/CustomerEditDialog.js:60 +msgid "Add New Customer" msgstr "" -#: Model/Invoice.php:288 Model/Invoice.php:292 Model/Invoice.php:296 -#: Model/Invoice.php:300 Model/Invoice.php:304 Model/Invoice.php:308 -#: Model/Invoice.php:312 Model/Address.php:223 Model/ProductAggregate.php:137 -msgid "Invoice Item" +#: js/CustomerEditDialog.js:62 +#, python-brace-format +msgid "Edit Customer \"{0}\"" msgstr "" -#: Model/Address.php:62 -msgid "GENDER_Address" +#: js/CustomerEditDialog.js:286 js/PurchaseInvoiceEditDialog.js:379 +#: Model/Customer.php:180 Model/PurchaseInvoice.php:127 +msgid "Discount (%)" msgstr "" -#: Model/Address.php:103 Model/Boilerplate.php:152 -#: Model/Document/Abstract.php:150 js/AddressEditDialog.js:105 -#: js/CustomerEditDialog.js:336 -msgid "Language" +#: js/CustomerEditDialog.js:313 js/AddressEditDialog.js:99 Model/Address.php:97 +#: Model/Customer.php:86 +msgid "Name shorthand" msgstr "" -#: Model/Address.php:109 js/SupplierEditDialog.js:268 -#: js/AddressEditDialog.js:110 js/CustomerEditDialog.js:341 -msgid "Email" +#: js/CustomerEditDialog.js:319 js/AddressEditDialog.js:105 +#: Model/Address.php:103 Model/Document/Abstract.php:162 +#: Model/Boilerplate.php:152 +msgid "Language" msgstr "" -#: Model/Address.php:123 js/AddressEditDialog.js:139 -#: js/CustomerEditDialog.js:349 +#: js/CustomerEditDialog.js:332 js/AddressEditDialog.js:139 +#: Model/Address.php:123 msgid "Prefix 1" msgstr "" -#: Model/Address.php:130 js/AddressEditDialog.js:143 -#: js/CustomerEditDialog.js:353 +#: js/CustomerEditDialog.js:336 js/AddressEditDialog.js:143 +#: Model/Address.php:130 msgid "Prefix 2" msgstr "" -#: Model/Address.php:137 js/AddressEditDialog.js:147 -#: js/CustomerEditDialog.js:357 +#: js/CustomerEditDialog.js:340 js/AddressEditDialog.js:147 +#: Model/Address.php:137 msgid "Prefix 3" msgstr "" -#: Model/Address.php:187 js/AddressEditDialog.js:173 -msgid "Number Debit" -msgstr "" +#: js/ProductAggregateGridPanel.js:61 js/ProductAggregateGridPanel.js:226 +#: Config.php:724 Model/Product.php:65 Model/SubProductMapping.php:101 +#: Model/ProductAggregate.php:39 Model/ProductAggregate.php:69 +#: Model/DocumentPosition/Abstract.php:207 +msgid "Product" +msgid_plural "Products" +msgstr[0] "" -#: Model/ProductAggregate.php:100 -msgid "Billing Interval" +#: js/ProductAggregateGridPanel.js:162 js/ProductAggregateGridPanel.js:187 +#: js/ProductAggregateGridPanel.js:230 Model/InvoicePosition.php:98 +#: Model/ProductAggregate.php:93 Model/DocumentPosition/Abstract.php:266 +msgid "Quantity" msgstr "" -#: Model/ProductAggregate.php:112 js/ProductAggregateGridPanel.js:213 -#: js/ProductAggregateGridPanel.js:232 -msgid "Billing Point" +#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 +#: js/ProductAggregateGridPanel.js:231 +msgid "Interval" msgstr "" -#: Model/ProductAggregate.php:309 Config.php:700 -msgid "Piece" +#: js/ProductAggregateGridPanel.js:213 js/ProductAggregateGridPanel.js:232 +#: Model/ProductAggregate.php:112 +msgid "Billing Point" msgstr "" -#: Model/Boilerplate.php:74 -msgid "Model" +#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 +msgid "begin" msgstr "" -#: Model/Boilerplate.php:95 -msgid "From" +#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 +msgid "end" msgstr "" -#: Model/Boilerplate.php:110 -msgid "Until" +#: js/ProductAggregateGridPanel.js:235 +msgid "Attributes" msgstr "" -#: Model/Boilerplate.php:125 Config.php:645 Config.php:646 -msgid "Document Category" +#: js/ProductAggregateGridPanel.js:236 +msgid "Last Autobill" msgstr "" -#: Model/SubProductMapping.php:43 -msgid "GENDER_Subproduct" +#: js/ProductAggregateGridPanel.js:237 +msgid "Creation Time" msgstr "" -#: Model/SubProductMapping.php:44 -msgid "Subproduct" -msgid_plural "Subproducts" -msgstr[0] "" - -#: Model/SubProductMapping.php:126 Model/Product.php:144 -msgid "Shortcut" +#: js/ProductAggregateGridPanel.js:238 +msgid "Created By" msgstr "" -#: Model/SubProductMapping.php:135 -msgid "Variable Position Flag" +#: js/ProductAggregateGridPanel.js:239 +msgid "Last Modified Time" msgstr "" -#: Model/SubProductMapping.php:141 -msgid "Amount" +#: js/ProductAggregateGridPanel.js:240 +msgid "Last Modified By" msgstr "" -#: Model/OrderConfirmation.php:32 -msgid "GENDER_Order Confirmation" +#: js/ProductAggregateGridPanel.js:383 +msgid "Edit Attributes" msgstr "" -#: Model/PurchaseInvoice.php:35 js/PurchaseInvoiceEditDialog.js:381 -msgid "Purchase Invoice" -msgid_plural "Purchase Invoices" -msgstr[0] "" - -#: Model/PurchaseInvoice.php:67 Model/PurchaseInvoice.php:192 -#: Model/PurchaseInvoice.php:231 js/PurchaseInvoiceEditDialog.js:489 -#: js/PurchaseInvoiceApproverFilterModel.js:30 -msgid "Approver" +#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 +msgid "Attribute" msgstr "" -#: Model/PurchaseInvoice.php:93 js/PurchaseInvoiceEditDialog.js:242 -msgid "Date of invoice" +#: js/ProductAggregateGridPanel.js:418 +msgid "Value" msgstr "" -#: Model/PurchaseInvoice.php:96 Model/PurchaseInvoice.php:98 -#: js/PurchaseInvoiceEditDialog.js:252 -msgid "Due in" +#: js/ProductAggregateGridPanel.js:424 +msgid "Add a New Value..." msgstr "" -#: Model/PurchaseInvoice.php:104 -msgid "Due at" +#: js/ProductAggregateGridPanel.js:451 +msgid "OK" msgstr "" -#: Model/PurchaseInvoice.php:108 js/PurchaseInvoiceEditDialog.js:472 -msgid "Payed at" +#: js/AddressEditDialog.js:116 +msgid "Apply postal address" msgstr "" -#: Model/PurchaseInvoice.php:111 Config.php:768 -msgid "Payment Method" +#: js/AddressEditDialog.js:173 Model/Address.php:187 +msgid "Number Debit" msgstr "" -#: Model/PurchaseInvoice.php:127 js/PurchaseInvoiceEditDialog.js:443 -msgid "Discount until" -msgstr "" +#: js/AddressEditDialog.js:186 js/AddressEditDialog.js:196 Model/Address.php:61 +#: Model/Invoice.php:114 Model/Invoice.php:125 +msgid "Address" +msgid_plural "Addresss" +msgstr[0] "" -#: Model/PurchaseInvoice.php:145 js/PurchaseInvoiceEditDialog.js:306 -msgid "Additional Price Gross" +#: js/PurchaseInvoiceEditDialog.js:64 +msgid "Copy Purchase Invoice" msgstr "" -#: Model/PurchaseInvoice.php:170 js/PurchaseInvoiceEditDialog.js:317 -#: js/PurchaseInvoiceDetailsPanel.js:133 -msgid "Total Price" +#: js/PurchaseInvoiceEditDialog.js:67 +msgid "Add New Purchase Invoice" msgstr "" -#: Model/Product.php:122 Model/Product.php:250 Model/Document/Abstract.php:155 -msgid "Category" +#: js/PurchaseInvoiceEditDialog.js:69 +#, python-brace-format +msgid "Edit Purchase Invoice \"{0}\"" msgstr "" -#: Model/Product.php:136 -msgid "GTIN" +#: js/PurchaseInvoiceEditDialog.js:250 Model/PurchaseInvoice.php:93 +msgid "Date of invoice" msgstr "" -#: Model/Product.php:174 -msgid "Default Grouping" +#: js/PurchaseInvoiceEditDialog.js:260 Model/PurchaseInvoice.php:99 +#: Model/PurchaseInvoice.php:101 +msgid "Due in" msgstr "" -#: Model/Product.php:180 -msgid "Default Sorting" +#: js/PurchaseInvoiceEditDialog.js:283 +msgid "Due date" msgstr "" -#: Model/Product.php:200 -msgid "Purchaseprice" +#: js/PurchaseInvoiceEditDialog.js:315 Model/PurchaseInvoice.php:154 +msgid "Additional Price Gross" msgstr "" -#: Model/Product.php:210 -msgid "Salesprice" +#: js/PurchaseInvoiceEditDialog.js:358 js/InvoiceEditDialog.js:502 +msgid "Sales Tax (percent)" msgstr "" -#: Model/Product.php:231 -msgid "Manufacturer" -msgstr "" +#: js/PurchaseInvoiceEditDialog.js:391 Model/PurchaseInvoice.php:35 +msgid "Purchase Invoice" +msgid_plural "Purchase Invoices" +msgstr[0] "" -#: Model/Product.php:239 -msgid "Subproducts" +#: js/PurchaseInvoiceEditDialog.js:416 js/PurchaseInvoiceEditDialog.js:444 +#: js/PurchaseInvoiceEditDialog.js:459 js/PurchaseInvoiceEditDialog.js:488 +#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 +msgid "automatically set..." msgstr "" -#: Model/Product.php:256 -msgid "Is Sales Product" +#: js/PurchaseInvoiceEditDialog.js:442 +msgid "Overdue date" msgstr "" -#: Model/Product.php:262 -msgid "Is active" +#: js/PurchaseInvoiceEditDialog.js:457 Model/PurchaseInvoice.php:136 +msgid "Discount until" msgstr "" -#: Model/Product.php:273 -msgid "Accountable" +#: js/PurchaseInvoiceEditDialog.js:480 +msgid "Dun date" msgstr "" -#: Model/Product.php:282 -msgid "Lifespan start" +#: js/PurchaseInvoiceEditDialog.js:486 Model/PurchaseInvoice.php:114 +msgid "Payed at" msgstr "" -#: Model/Product.php:290 -msgid "Lifespan end" +#: js/PurchaseInvoiceEditDialog.js:494 +msgid "Method of payment" msgstr "" -#: Model/Document/Order.php:43 -msgid "GENDER_Order" +#: js/SupplierFilterModel.js:32 +msgid "without supplier" msgstr "" -#: Model/Document/Order.php:44 -msgid "Order" -msgid_plural "Orders" -msgstr[0] "" - -#: Model/Document/Order.php:55 Model/Document/Offer.php:96 -#: Model/Document/Invoice.php:66 Model/Document/Delivery.php:63 -msgid "Status" +#: js/AddressGridPanel.js:46 +msgid "Clipboard" msgstr "" -#: Model/Document/Order.php:76 -msgid "Invoice Recipient" +#: js/ContractProductFilterModel.js:30 Model/Contract.php:108 +#: Model/Contract.php:213 +msgid "Products" msgstr "" -#: Model/Document/Order.php:95 -msgid "Delivery Recipient" +#: js/DeliveryAddressGridPanel.js:39 +msgid "Delivery Address" msgstr "" -#: Model/Document/Order.php:134 -msgid "OR-" +#: js/DeliveryAddressGridPanel.js:40 Model/Customer.php:189 +msgid "Delivery Addresses" msgstr "" -#: Model/Document/Offer.php:114 -msgid "OF-" +#: js/DocumentPosition/AbstractGridPanel.js:42 +msgid "Generic" msgstr "" -#: Model/Document/Abstract.php:98 -msgid "Document" -msgid_plural "Documents" -msgstr[0] "" - -#: Model/Document/Abstract.php:99 -msgid "GENDER_Document" +#: js/DocumentPosition/AbstractGridPanel.js:269 +#: Model/DocumentPosition/Abstract.php:288 +msgid "Price" msgstr "" -#: Model/Document/Abstract.php:134 -msgid "Document Number" +#: js/DocumentPosition/AbstractGridPanel.js:270 +msgid "Discount" msgstr "" -#: Model/Document/Abstract.php:174 -msgid "Boilerplates" +#: js/DocumentPosition/AbstractGridPanel.js:271 +msgid "Total" msgstr "" -#: Model/Document/Abstract.php:195 -msgid "Document Date" +#: js/InvoiceEditDialog.js:76 +msgid "total" msgstr "" -#: Model/Document/Abstract.php:200 -msgid "Customer Reference" +#: js/InvoiceEditDialog.js:76 +msgid "inclusive" msgstr "" -#: Model/Document/Abstract.php:223 -msgid "Recipient" +#: js/InvoiceEditDialog.js:76 +msgid "exceeding" msgstr "" -#: Model/Document/Abstract.php:233 -msgid "Reference Person" +#: js/InvoiceEditDialog.js:85 +msgid "Create timesheet" msgstr "" -#: Model/Document/Abstract.php:253 -msgid "Positions Net Sum" +#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 +msgid "Create Reversal Invoice" msgstr "" -#: Model/Document/Abstract.php:261 -msgid "Positions Discount Sum" +#: js/InvoiceEditDialog.js:199 +msgid "Copy Invoice" msgstr "" -#: Model/Document/Abstract.php:270 Config.php:610 Config.php:611 -msgid "Invoice Discount Type" +#: js/InvoiceEditDialog.js:202 +msgid "Add New Invoice" msgstr "" -#: Model/Document/Abstract.php:277 -msgid "Invoice Discount Percentage" +#: js/InvoiceEditDialog.js:204 +#, python-brace-format +msgid "Edit Invoice \"{0}\"" msgstr "" -#: Model/Document/Abstract.php:283 -msgid "Invoice Discount Sum" +#: js/InvoiceEditDialog.js:227 +#, python-brace-format +msgid "Positions ({0})" msgstr "" -#: Model/Document/Abstract.php:294 -msgid "Net Sum" +#: js/InvoiceEditDialog.js:332 +msgid "No customer assigned" msgstr "" -#: Model/Document/Abstract.php:310 -msgid "Sales Tax by Rate" +#: js/InvoiceEditDialog.js:333 +msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Abstract.php:319 -msgid "Gross Sum" +#: js/InvoiceEditDialog.js:344 +msgid "No cost center assigned" msgstr "" -#: Model/Document/Abstract.php:354 -msgid "Internal Note" +#: js/InvoiceEditDialog.js:345 +msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." msgstr "" -#: Model/Document/Invoice.php:80 Model/Document/Delivery.php:77 -msgid "Proforma Number" +#: js/InvoiceEditDialog.js:513 Model/Invoice.php:214 +msgid "Inventory Change" msgstr "" -#: Model/Document/Invoice.php:86 -msgid "PI-" +#: js/InvoiceEditDialog.js:659 Model/Invoice.php:138 +msgid "Interval Begins" msgstr "" -#: Model/Document/Invoice.php:104 -msgid "IN-" +#: js/InvoiceEditDialog.js:665 Model/Invoice.php:145 +msgid "Interval Ends" msgstr "" -#: Model/Document/Delivery.php:40 -msgid "GENDER_Delivery" +#: js/InvoiceGridPanel.js:41 +msgid "Rebilling Invoice..." msgstr "" -#: Model/Document/Delivery.php:41 -msgid "Delivery" -msgid_plural "Deliveries" -msgstr[0] "" - -#: Model/Document/Delivery.php:83 -msgid "PD-" +#: js/InvoiceGridPanel.js:76 +msgid "Rebill Invoice" msgstr "" -#: Model/Document/Delivery.php:108 -msgid "DN-" +#: js/InvoiceGridPanel.js:98 +msgid "Merge Invoices" msgstr "" -#: Model/InvoicePosition.php:37 -msgid "Invoice Position" -msgid_plural "Invoice Positions" -msgstr[0] "" - -#: Model/InvoicePosition.php:90 -msgid "Month" +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 +#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 +#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 +msgid "Arial" msgstr "" #: Setup/Initialize.php:34 @@ -1002,7 +936,7 @@ msgid "All Suppliers" msgstr "" #: Setup/Initialize.php:160 -msgid "All supllier records" +msgid "All supplier records" msgstr "" #: Setup/Initialize.php:183 @@ -1045,816 +979,991 @@ msgstr "" msgid "All order confirmation records" msgstr "" -#: Config.php:206 +#: Config.php:229 msgid "Auto Invoice Contract Interval" msgstr "" -#: Config.php:208 +#: Config.php:231 msgid "Sets the biggest interval, contracts will be billed." msgstr "" -#: Config.php:216 +#: Config.php:239 +msgid "Followup Status" +msgstr "" + +#: Config.php:241 +msgid "Possible Followup Status" +msgstr "" + +#: Config.php:251 Config.php:804 +msgid "None" +msgstr "" + +#: Config.php:257 +msgid "Partially" +msgstr "" + +#: Config.php:263 +msgid "Completed" +msgstr "" + +#: Config.php:273 +msgid "Reversal Status" +msgstr "" + +#: Config.php:275 +msgid "Possible Reversal Status" +msgstr "" + +#: Config.php:285 +msgid "Not reversed" +msgstr "" + +#: Config.php:291 +msgid "Partially reversed" +msgstr "" + +#: Config.php:297 +msgid "Reversed" +msgstr "" + +#: Config.php:307 msgid "Offer Status" msgstr "" -#: Config.php:218 +#: Config.php:309 msgid "Possible Offer Status" msgstr "" -#: Config.php:233 +#: Config.php:324 msgid "Draft (unbooked, open)" msgstr "" -#: Config.php:241 +#: Config.php:332 msgid "Released (booked, open)" msgstr "" -#: Config.php:249 +#: Config.php:340 msgid "Ordered (booked, closed)" msgstr "" -#: Config.php:257 +#: Config.php:348 msgid "Rejected (booked, closed)" msgstr "" -#: Config.php:269 +#: Config.php:360 msgid "Offer Status Transitions" msgstr "" -#: Config.php:271 +#: Config.php:362 msgid "Possible Offer Status Transitions" msgstr "" -#: Config.php:310 +#: Config.php:400 msgid "Order Status" msgstr "" -#: Config.php:312 +#: Config.php:402 msgid "Possible Order Status" msgstr "" -#: Config.php:327 +#: Config.php:417 msgid "Received (unbooked, open)" msgstr "" -#: Config.php:335 +#: Config.php:425 msgid "Accepted (booked, open)" msgstr "" -#: Config.php:343 Config.php:410 +#: Config.php:433 Config.php:500 msgid "Done (booked, closed)" msgstr "" -#: Config.php:355 +#: Config.php:445 msgid "Order Status Transitions" msgstr "" -#: Config.php:357 +#: Config.php:447 msgid "Possible Order Status Transitions" msgstr "" -#: Config.php:384 +#: Config.php:474 msgid "Delivery Status" msgstr "" -#: Config.php:386 +#: Config.php:476 msgid "Possible Delivery Status" msgstr "" -#: Config.php:402 +#: Config.php:492 msgid "Created (unbooked, open)" msgstr "" -#: Config.php:422 +#: Config.php:512 msgid "Delivery Status Transitions" msgstr "" -#: Config.php:424 +#: Config.php:514 msgid "Possible Delivery Status Transitions" msgstr "" -#: Config.php:445 +#: Config.php:535 msgid "Invoice Status" msgstr "" -#: Config.php:447 +#: Config.php:537 msgid "Possible Invoice Status" msgstr "" -#: Config.php:462 +#: Config.php:552 msgid "Proforma (unbooked, open)" msgstr "" -#: Config.php:470 +#: Config.php:560 msgid "Booked (booked, open)" msgstr "" -#: Config.php:478 +#: Config.php:568 msgid "Shipped (booked, closed)" msgstr "" -#: Config.php:486 +#: Config.php:576 msgid "Paid (booked, closed)" msgstr "" -#: Config.php:498 +#: Config.php:588 msgid "Invoice Status Transitions" msgstr "" -#: Config.php:500 +#: Config.php:590 msgid "Possible Invoice Status Transitions" msgstr "" -#: Config.php:532 +#: Config.php:622 msgid "Ignore Billables Before Date" msgstr "" -#: Config.php:534 +#: Config.php:624 msgid "Sets the date billables will be ignored before." msgstr "" -#: Config.php:542 +#: Config.php:632 msgid "Contract Number Creation" msgstr "" -#: Config.php:544 +#: Config.php:634 msgid "Should the contract number be set manually or be auto-created?" msgstr "" -#: Config.php:547 Config.php:727 +#: Config.php:637 Config.php:817 msgid "automatically" msgstr "" -#: Config.php:548 Config.php:728 +#: Config.php:638 Config.php:818 msgid "manually" msgstr "" -#: Config.php:555 +#: Config.php:645 msgid "Contract Number Validation" msgstr "" -#: Config.php:557 Config.php:737 +#: Config.php:647 Config.php:827 msgid "The Number can be validated as text or number." msgstr "" -#: Config.php:561 Config.php:635 Config.php:741 +#: Config.php:651 Config.php:725 Config.php:831 msgid "Text" msgstr "" -#: Config.php:568 +#: Config.php:658 msgid "Own Currency" msgstr "" -#: Config.php:570 +#: Config.php:660 msgid "The currency defined here is used as default currency in the customerd edit dialog." msgstr "" -#: Config.php:578 +#: Config.php:668 msgid "Languages Available" msgstr "" -#: Config.php:579 +#: Config.php:669 msgid "List of languages available in the sales modules." msgstr "" -#: Config.php:593 +#: Config.php:683 msgid "Invoice Type" msgstr "" -#: Config.php:595 +#: Config.php:685 msgid "Possible Invoice Types." msgstr "" -#: Config.php:603 js/Document/CreateFollowUpAction.js:36 -msgid "Reversal" +#: Config.php:694 Config.php:870 +msgid "Credit" msgstr "" -#: Config.php:604 Config.php:780 -msgid "Credit" +#: Config.php:700 Config.php:701 Model/Document/Abstract.php:292 +msgid "Invoice Discount Type" msgstr "" -#: Config.php:619 +#: Config.php:709 msgid "Percentage" msgstr "" -#: Config.php:620 +#: Config.php:710 msgid "Sum" msgstr "" -#: Config.php:625 Config.php:626 +#: Config.php:715 Config.php:716 msgid "Document Position Type" msgstr "" -#: Config.php:636 +#: Config.php:726 msgid "Heading" msgstr "" -#: Config.php:637 +#: Config.php:727 msgid "Page Break" msgstr "" -#: Config.php:638 +#: Config.php:728 msgid "Alternative" msgstr "" -#: Config.php:639 +#: Config.php:729 msgid "Optional" msgstr "" -#: Config.php:655 +#: Config.php:735 Config.php:736 Model/Boilerplate.php:125 +msgid "Document Category" +msgstr "" + +#: Config.php:745 msgid "Standard" msgstr "" -#: Config.php:661 +#: Config.php:751 msgid "Product Category" msgstr "" -#: Config.php:663 +#: Config.php:753 msgid "Possible Product Categories." msgstr "" -#: Config.php:670 +#: Config.php:760 msgid "Default" msgstr "" -#: Config.php:676 Config.php:677 +#: Config.php:766 Config.php:767 msgid "Product Unfold Type" msgstr "" -#: Config.php:685 Config.php:715 +#: Config.php:775 Config.php:805 msgid "Shared" msgstr "" -#: Config.php:686 Config.php:716 +#: Config.php:776 Config.php:806 msgid "Own" msgstr "" -#: Config.php:691 Config.php:692 +#: Config.php:781 Config.php:782 msgid "Product Unit" msgstr "" -#: Config.php:705 -msgid "Sub-Product Variable Position Flag" +#: Config.php:790 Model/ProductAggregate.php:308 +msgid "Piece" msgstr "" -#: Config.php:706 -msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." +#: Config.php:795 +msgid "Sub-Product Variable Position Flag" msgstr "" -#: Config.php:714 -msgid "None" +#: Config.php:796 +msgid "Accounting for the sub-product is variable and each same sub-product gets on own or a common shared position in a document." msgstr "" -#: Config.php:722 +#: Config.php:812 msgid "Product Number Creation" msgstr "" -#: Config.php:724 +#: Config.php:814 msgid "Should the product number be set manually or be auto-created?" msgstr "" -#: Config.php:735 +#: Config.php:825 msgid "Product Number Validation" msgstr "" -#: Config.php:748 +#: Config.php:838 msgid "Product Number Prefix" msgstr "" -#: Config.php:750 +#: Config.php:840 msgid "The prefix of the product number." msgstr "" -#: Config.php:758 +#: Config.php:848 msgid "Product Number Zero Fill" msgstr "" -#: Config.php:760 +#: Config.php:850 msgid "Fill the number with leading zero" msgstr "" -#: Config.php:770 +#: Config.php:858 Model/PurchaseInvoice.php:120 +msgid "Payment Method" +msgstr "" + +#: Config.php:860 msgid "Possible Payment Methods." msgstr "" -#: Config.php:777 +#: Config.php:867 msgid "Bank transfer" msgstr "" -#: Config.php:778 +#: Config.php:868 msgid "Direct debit" msgstr "" -#: Config.php:779 +#: Config.php:869 msgid "Cancellation" msgstr "" -#: Config.php:781 +#: Config.php:871 msgid "Credit card" msgstr "" -#: Config.php:782 +#: Config.php:872 msgid "EC card" msgstr "" -#: Config.php:783 +#: Config.php:873 msgid "Paypal" msgstr "" -#: Config.php:784 +#: Config.php:874 msgid "Assets" msgstr "" -#: Config.php:790 +#: Config.php:880 msgid "Invoice Cleared" msgstr "" -#: Config.php:792 +#: Config.php:882 msgid "Possible Invoice Cleared States." msgstr "" -#: Config.php:799 +#: Config.php:889 msgid "to clear" msgstr "" -#: Config.php:800 +#: Config.php:890 msgid "cleared" msgstr "" -#: Config.php:821 +#: Config.php:911 msgid "Enabled Features" msgstr "" -#: Config.php:823 +#: Config.php:913 msgid "Enabled Features in Sales Application." msgstr "" -#: Config.php:832 +#: Config.php:922 msgid "Invoices Module" msgstr "" -#: Config.php:839 +#: Config.php:929 msgid "Offers Module" msgstr "" -#: Config.php:846 +#: Config.php:937 +msgid "Legacy Offers" +msgstr "" + +#: Config.php:945 msgid "Order Confirmations Module" msgstr "" -#: Config.php:853 +#: Config.php:952 msgid "Suppliers Module" msgstr "" -#: Config.php:860 +#: Config.php:959 msgid "Purchase Invoice Module" msgstr "" -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/header1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/footer1.xml:1 -#: tempExtract/3f11f0ee1ceae127599f1753960e4654/word/document.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/header1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/footer1.xml:1 -#: tempExtract/2c594000c3b6d92076d159c151403b2b/word/document.xml:1 -msgid "Arial" +#: Config.php:939 +msgid "Legacy (non-document) Offers)" msgstr "" -#: js/CustomerFilterModel.js:32 js/ContractProductFilterModel.js:31 -msgid "without customer" +#: Controller/NumberableAbstract.php:101 +msgid "The number you have tried to set is already in use!" msgstr "" -#: js/ProductAggregateGridPanel.js:174 js/ProductAggregateGridPanel.js:199 -#: js/ProductAggregateGridPanel.js:231 -msgid "Interval" +#: Model/OrderConfirmation.php:32 +msgid "GENDER_Order Confirmation" msgstr "" -#: js/ProductAggregateGridPanel.js:217 js/ProductAggregateGridPanel.js:286 -msgid "begin" +#: Model/InvoicePosition.php:37 +msgid "Invoice Position" +msgid_plural "Invoice Positions" +msgstr[0] "" + +#: Model/InvoicePosition.php:90 +msgid "Month" msgstr "" -#: js/ProductAggregateGridPanel.js:218 js/ProductAggregateGridPanel.js:284 -msgid "end" +#: Model/InvoicePosition.php:94 Model/Product.php:205 +#: Model/DocumentPosition/Abstract.php:277 +msgid "Unit" msgstr "" -#: js/ProductAggregateGridPanel.js:235 -msgid "Attributes" +#: Model/Offer.php:32 Model/Document/Offer.php:44 +msgid "GENDER_Offer" msgstr "" -#: js/ProductAggregateGridPanel.js:236 -msgid "Last Autobill" +#: Model/Product.php:131 Model/Product.php:266 Model/Document/Abstract.php:168 +msgid "Category" msgstr "" -#: js/ProductAggregateGridPanel.js:237 -msgid "Creation Time" +#: Model/Product.php:149 +msgid "GTIN" msgstr "" -#: js/ProductAggregateGridPanel.js:238 -msgid "Created By" +#: Model/Product.php:157 Model/SubProductMapping.php:126 +msgid "Shortcut" msgstr "" -#: js/ProductAggregateGridPanel.js:239 -msgid "Last Modified Time" +#: Model/Product.php:187 +msgid "Default Grouping" msgstr "" -#: js/ProductAggregateGridPanel.js:240 -msgid "Last Modified By" +#: Model/Product.php:193 +msgid "Default Sorting" msgstr "" -#: js/ProductAggregateGridPanel.js:383 -msgid "Edit Attributes" +#: Model/Product.php:213 +msgid "Purchaseprice" msgstr "" -#: js/ProductAggregateGridPanel.js:410 js/ProductAggregateGridPanel.js:499 -msgid "Attribute" +#: Model/Product.php:223 +msgid "Salesprice" msgstr "" -#: js/ProductAggregateGridPanel.js:418 -msgid "Value" +#: Model/Product.php:232 Model/DocumentPosition/Abstract.php:333 +msgid "Sales Tax Rate" msgstr "" -#: js/ProductAggregateGridPanel.js:424 -msgid "Add a New Value..." +#: Model/Product.php:244 +msgid "Manufacturer" msgstr "" -#: js/ProductAggregateGridPanel.js:445 js/BillingDateDialog.js:127 -msgid "Cancel" +#: Model/Product.php:252 +msgid "Subproducts" msgstr "" -#: js/ProductAggregateGridPanel.js:451 -msgid "OK" +#: Model/Product.php:272 +msgid "Is Sales Product" msgstr "" -#: js/ContractGridPanel.js:55 -msgid "Bill Contract" +#: Model/Product.php:278 +msgid "Is active" msgstr "" -#: js/ContractGridPanel.js:88 -msgid "Billing Contract..." +#: Model/Product.php:289 +msgid "Accountable" msgstr "" -#: js/ContractGridPanel.js:103 -#, python-brace-format -msgid "Bill Contract \"{0} - {1}\"" +#: Model/Product.php:298 +msgid "Lifespan start" msgstr "" -#: js/ContractGridPanel.js:104 -msgid "Select the date to generate the bill for" +#: Model/Product.php:309 +msgid "Lifespan end" msgstr "" -#: js/SupplierEditDialog.js:41 -msgid "Either postalcode or postbox is required!" +#: Model/Product.php:319 Model/DocumentPosition/Abstract.php:370 +msgid "Costcenter" msgstr "" -#: js/SupplierEditDialog.js:62 -msgid "Copy Supplier" +#: Model/Product.php:328 Model/Document/Abstract.php:371 +#: Model/DocumentPosition/Abstract.php:360 +msgid "Cost Bearer" msgstr "" -#: js/SupplierEditDialog.js:65 -msgid "Add New Supplier" +#: Model/SubProductMapping.php:43 +msgid "GENDER_Subproduct" msgstr "" -#: js/SupplierEditDialog.js:67 -#, python-brace-format -msgid "Edit Supplier \"{0}\"" +#: Model/SubProductMapping.php:44 +msgid "Subproduct" +msgid_plural "Subproducts" +msgstr[0] "" + +#: Model/SubProductMapping.php:135 +msgid "Variable Position Flag" msgstr "" -#: js/SupplierEditDialog.js:122 js/Sales.js:75 js/AddressGridPanel.js:51 -#: js/CustomerEditDialog.js:153 -msgid "Copy address to the clipboard" +#: Model/SubProductMapping.php:141 +msgid "Amount" msgstr "" -#: js/SupplierEditDialog.js:158 js/SupplierDetailsPanel.js:123 -#: js/CustomerDetailsPanel.js:123 js/CustomerEditDialog.js:210 -msgid "Core Data" +#: Model/SubProductMapping.php:150 Model/DocumentPosition/Abstract.php:224 +msgid "Sorting" msgstr "" -#: js/SupplierEditDialog.js:208 js/SupplierDetailsPanel.js:141 -#: js/CustomerDetailsPanel.js:141 js/CustomerEditDialog.js:260 -msgid "Accounting" +#: Model/Address.php:62 +msgid "GENDER_Address" msgstr "" -#: js/SupplierEditDialog.js:246 js/SupplierDetailsPanel.js:143 -#: js/CustomerDetailsPanel.js:143 js/CustomerEditDialog.js:297 -msgid "IBAN" +#: Model/Address.php:223 Model/ProductAggregate.php:137 Model/Invoice.php:297 +#: Model/Invoice.php:301 Model/Invoice.php:305 Model/Invoice.php:309 +#: Model/Invoice.php:313 Model/Invoice.php:317 Model/Invoice.php:321 +msgid "Invoice Item" msgstr "" -#: js/SupplierEditDialog.js:249 js/SupplierDetailsPanel.js:144 -#: js/CustomerDetailsPanel.js:144 js/CustomerEditDialog.js:300 -msgid "BIC" +#: Model/ProductAggregate.php:100 +msgid "Billing Interval" msgstr "" -#: js/SupplierEditDialog.js:256 js/CustomerEditDialog.js:321 -msgid "Postal Address" +#: Model/Document/Offer.php:89 Model/Document/Order.php:63 +#: Model/Document/Delivery.php:66 Model/Document/Invoice.php:69 +msgid "Status" msgstr "" -#: js/SupplierEditDialog.js:314 js/PurchaseInvoiceEditDialog.js:456 -#: js/InvoiceEditDialog.js:623 js/InvoiceDetailsPanel.js:127 -#: js/PurchaseInvoiceDetailsPanel.js:126 js/CustomerEditDialog.js:395 -msgid "Miscellaneous" +#: Model/Document/Offer.php:108 +msgid "Order Created" msgstr "" -#: js/SupplierEditDialog.js:381 js/PurchaseInvoiceEditDialog.js:548 -#: js/OfferEditDialog.js:150 js/OrderConfirmationEditDialog.js:161 -#: js/CustomerEditDialog.js:462 -msgid "Enter description" +#: Model/Document/Offer.php:117 +msgid "Order Booked" +msgstr "" + +#: Model/Document/Offer.php:137 +msgid "OF-" +msgstr "" + +#: Model/Document/Order.php:51 +msgid "GENDER_Order" +msgstr "" + +#: Model/Document/Order.php:52 +msgid "Order" +msgid_plural "Orders" +msgstr[0] "" + +#: Model/Document/Order.php:70 +msgid "Delivery Created" +msgstr "" + +#: Model/Document/Order.php:79 +msgid "Delivery Booked" +msgstr "" + +#: Model/Document/Order.php:88 +msgid "Invoice Created" +msgstr "" + +#: Model/Document/Order.php:97 +msgid "Invoice Booked" +msgstr "" + +#: Model/Document/Order.php:119 +msgid "Invoice Recipient" +msgstr "" + +#: Model/Document/Order.php:139 +msgid "Delivery Recipient" +msgstr "" + +#: Model/Document/Order.php:159 +msgid "Shared Delivery" +msgstr "" + +#: Model/Document/Order.php:166 +msgid "Shared Invoice" +msgstr "" + +#: Model/Document/Order.php:193 +msgid "OR-" +msgstr "" + +#: Model/Document/Abstract.php:102 +msgid "Document" +msgid_plural "Documents" +msgstr[0] "" + +#: Model/Document/Abstract.php:103 +msgid "GENDER_Document" +msgstr "" + +#: Model/Document/Abstract.php:138 +msgid "Document Number" +msgstr "" + +#: Model/Document/Abstract.php:188 +msgid "Boilerplates" +msgstr "" + +#: Model/Document/Abstract.php:209 +msgid "Document Date" +msgstr "" + +#: Model/Document/Abstract.php:217 +msgid "Customer Reference" +msgstr "" + +#: Model/Document/Abstract.php:241 +msgid "Recipient" +msgstr "" + +#: Model/Document/Abstract.php:252 +msgid "Reference Person" +msgstr "" + +#: Model/Document/Abstract.php:273 +msgid "Positions Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:282 +msgid "Positions Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:300 +msgid "Invoice Discount Percentage" +msgstr "" + +#: Model/Document/Abstract.php:306 +msgid "Invoice Discount Sum" +msgstr "" + +#: Model/Document/Abstract.php:318 +msgid "Net Sum" +msgstr "" + +#: Model/Document/Abstract.php:326 Model/Invoice.php:203 +#: Model/PurchaseInvoice.php:168 Model/DocumentPosition/Abstract.php:343 +msgid "Sales Tax" +msgstr "" + +#: Model/Document/Abstract.php:335 +msgid "Sales Tax by Rate" +msgstr "" + +#: Model/Document/Abstract.php:344 +msgid "Gross Sum" +msgstr "" + +#: Model/Document/Abstract.php:361 Model/Invoice.php:157 +#: Model/PurchaseInvoice.php:188 +msgid "Cost Center" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:64 -msgid "Copy Purchase Invoice" +#: Model/Document/Abstract.php:381 +msgid "Internal Note" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:67 -msgid "Add New Purchase Invoice" +#: Model/Document/Delivery.php:42 +msgid "GENDER_Delivery" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:69 -#, python-brace-format -msgid "Edit Purchase Invoice \"{0}\"" -msgstr "" +#: Model/Document/Delivery.php:43 +msgid "Delivery" +msgid_plural "Deliveries" +msgstr[0] "" -#: js/PurchaseInvoiceEditDialog.js:274 -msgid "Due date" +#: Model/Document/Delivery.php:81 Model/Document/Invoice.php:84 +msgid "Proforma Number" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:349 js/InvoiceEditDialog.js:502 -msgid "Sales Tax (percent)" +#: Model/Document/Delivery.php:87 +msgid "PD-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:406 js/PurchaseInvoiceEditDialog.js:430 -#: js/PurchaseInvoiceEditDialog.js:445 js/PurchaseInvoiceEditDialog.js:474 -#: js/InvoiceEditDialog.js:547 js/InvoiceEditDialog.js:553 -msgid "automatically set..." +#: Model/Document/Delivery.php:97 Model/Document/Invoice.php:100 +msgid "Shared Document" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:428 -msgid "Overdue date" +#: Model/Document/Delivery.php:119 +msgid "DN-" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:466 -msgid "Dun date" +#: Model/Document/Invoice.php:45 Model/Invoice.php:55 +msgid "GENDER_Invoice" msgstr "" -#: js/PurchaseInvoiceEditDialog.js:480 -msgid "Method of payment" +#: Model/Document/Invoice.php:90 +msgid "PI-" msgstr "" -#: js/OrderConfirmationFilterModel.js:32 -msgid "without order confirmation" +#: Model/Document/Invoice.php:115 +msgid "IN-" msgstr "" -#: js/OfferEditDialog.js:54 -msgid "Add New Offer" +#: Model/Customer.php:38 +msgid "GENDER_Customer" msgstr "" -#: js/SupplierDetailsPanel.js:68 -msgid "Select supplier" +#: Model/Invoice.php:293 +msgid "Reversal Invoice" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "total" +#: Model/Supplier.php:34 +msgid "GENDER_Supplier" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "inclusive" +#: Model/Boilerplate.php:74 +msgid "Model" msgstr "" -#: js/InvoiceEditDialog.js:76 -msgid "exceeding" +#: Model/Boilerplate.php:95 +msgid "From" msgstr "" -#: js/InvoiceEditDialog.js:85 -msgid "Create timesheet" +#: Model/Boilerplate.php:110 +msgid "Until" msgstr "" -#: js/InvoiceEditDialog.js:195 js/InvoiceGridPanel.js:54 -msgid "Create Reversal Invoice" +#: Model/PurchaseInvoice.php:107 +msgid "Due at" msgstr "" -#: js/InvoiceEditDialog.js:199 -msgid "Copy Invoice" +#: Model/Contract.php:45 +msgid "GENDER_Contract" msgstr "" -#: js/InvoiceEditDialog.js:202 -msgid "Add New Invoice" +#: Model/Contract.php:235 +msgid "Merge" msgstr "" -#: js/InvoiceEditDialog.js:204 -#, python-brace-format -msgid "Edit Invoice \"{0}\"" +#: Model/Contract.php:265 +msgid "Responsible" msgstr "" -#: js/InvoiceEditDialog.js:227 -#, python-brace-format -msgid "Positions ({0})" +#: Model/Contract.php:267 +msgid "Partner" msgstr "" -#: js/InvoiceEditDialog.js:332 -msgid "No customer assigned" +#: Model/Contract.php:283 +msgid "Time Account" msgstr "" -#: js/InvoiceEditDialog.js:333 -msgid "The selected contract doesn't have a customer assigned, yet. Add a customer to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:153 +msgid "Position" +msgid_plural "Positions" +msgstr[0] "" + +#: Model/DocumentPosition/Abstract.php:154 +msgid "GENDER_Position" msgstr "" -#: js/InvoiceEditDialog.js:344 -msgid "No cost center assigned" +#: Model/DocumentPosition/Abstract.php:199 +msgid "Pos." msgstr "" -#: js/InvoiceEditDialog.js:345 -msgid "The selected contract doesn't have a cost center assigned, yet. Add a cost center to the contract with the contract edit dialog." +#: Model/DocumentPosition/Abstract.php:217 +msgid "Grouping" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:42 -msgid "Generic" +#: Model/DocumentPosition/Abstract.php:246 +msgid "Product / Service" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:269 -msgid "Discount" +#: Model/DocumentPosition/Abstract.php:271 +msgid "Use Actual Quantity" msgstr "" -#: js/DocumentPosition/AbstractGridPanel.js:270 -msgid "Total" +#: Model/DocumentPosition/Abstract.php:283 +msgid "Unit Price" msgstr "" -#: js/CustomerDetailsPanel.js:68 -msgid "Select customer" +#: Model/DocumentPosition/Abstract.php:297 +msgid "Position Discount Type" msgstr "" -#: js/OrderConfirmationEditDialog.js:62 -msgid "Add New Order Confirmation" +#: Model/DocumentPosition/Abstract.php:305 +msgid "Position Discount Percentage" msgstr "" -#: js/SupplierFilterModel.js:32 -msgid "without supplier" +#: Model/DocumentPosition/Abstract.php:313 +msgid "Position Discount Sum" msgstr "" -#: js/DeliveryAddressGridPanel.js:39 -msgid "Delivery Address" +#: Model/DocumentPosition/Abstract.php:324 +msgid "Net price" msgstr "" -#: js/InvoiceGridPanel.js:41 -msgid "Rebilling Invoice..." +#: Model/DocumentPosition/Abstract.php:352 +msgid "Gross Price" msgstr "" -#: js/InvoiceGridPanel.js:76 -msgid "Rebill Invoice" +#: Export/Ods/Invoice.php:125 +msgid "CLEARED" msgstr "" -#: js/InvoiceGridPanel.js:98 -msgid "Merge Invoices" +#: Export/Ods/Invoice.php:128 +msgid "INVOICE" msgstr "" -#: js/InvoiceDetailsPanel.js:66 js/PurchaseInvoiceDetailsPanel.js:66 -msgid "Select invoice" +#: Export/definitions/documentoffer_xls.xml:5 +#: Export/definitions/product_xls.xml:5 +#: Export/definitions/documentinvoice_xls.xml:5 +#: Export/definitions/customer_xls.xml:5 +#: Export/definitions/purchaseinvoice_xls.xml:5 +#: Export/definitions/documentdelivery_xls.xml:5 +#: Export/definitions/documentorder_xls.xml:5 +#: Export/definitions/supplier_xls.xml:5 +msgid "Excel all data" msgstr "" -#: js/ProductAggregateLayerCombo.js:116 -#, python-brace-format -msgid "Selected {0}" +#: Export/definitions/invoice_timesheet_xlsx.xml:15 +msgid "Invoice Timesheet" msgstr "" -#: js/ContractEditDialog.js:102 -msgid "Set as accountable" +#: Export/definitions/sales_product_csv.xml:5 +msgid "CSV all data" msgstr "" -#: js/ContractEditDialog.js:121 -msgid "Choose product for accountable" +#: Exception/AlterOCNumberForbidden.php:26 +msgid "No Right to alter the Number" msgstr "" -#: js/ContractEditDialog.js:209 -msgid "Please use a decimal number here!" +#: Exception/AlterOCNumberForbidden.php:31 +msgid "You are not allowed to alter the number afterwards!" msgstr "" -#: js/ContractEditDialog.js:324 -msgid "Enter description..." -msgstr "輸入說明" +#: Exception/InvoiceAlreadyClearedDelete.php:26 +#: Exception/InvoiceAlreadyClearedEdit.php:26 +msgid "Invoice is cleared already" +msgstr "" -#: js/InvoicePositionGridPanel.js:111 -msgid "Export Records from these Positions" +#: Exception/InvoiceAlreadyClearedDelete.php:31 +msgid "The Invoice you tried to delete is cleared already, so deleting is not possible anymore!" msgstr "" -#: js/AddressGridPanel.js:46 -msgid "Clipboard" +#: Exception/InvoiceAlreadyClearedEdit.php:31 +msgid "The Invoice you tried to edit is cleared already, so no editing is possible anymore!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:15 -msgid "Print Paper Slip" +#: Exception/DeletePreviousInvoice.php:26 +msgid "Following Invoices Found" msgstr "" -#: js/Document/CreatePaperSlipAction.js:25 -#, python-brace-format -msgid "Creating {type} Paper Slip" +#: Exception/DeletePreviousInvoice.php:31 +msgid "There is an invoice for the same contract after this one. Please delete the following invoice(s) before deleting this one!" msgstr "" -#: js/Document/CreatePaperSlipAction.js:50 -#: js/Document/CreateFollowUpAction.js:125 -msgid "There where Errors:" +#: Exception/DuplicateNumber.php:26 +msgid "Number duplicate" msgstr "" -#: js/Document/CreatePaperSlipAction.js:51 -msgid "Cannot create { type } paper slip: ({e.code}) { e.message }" +#: Exception/DuplicateNumber.php:31 +msgid "The number you tried to use has been taken already. Please use another one leave the field blank to take the next free number." msgstr "" -#: js/Document/TracDialog.js:28 -msgid "Trac Document { title }" +#: Exception/UnknownCurrencyCode.php:26 +msgid "Unknown Currency Code" msgstr "" -#: js/Document/TracDialog.js:40 -msgid "Expand Positions" +#: Exception/UnknownCurrencyCode.php:31 +msgid "The Currency Code you tried to use is not valid. Please use a valid Currency Code as defined in ISO 4217." msgstr "" -#: js/Document/TracAction.js:18 -msgid "Track Document" +#: Exception/DeleteUsedBillingAddress.php:26 +msgid "Address as Billing Address in Use" msgstr "" -#: js/Document/CreateFollowUpAction.js:37 -msgid "Reversals" +#: Exception/DeleteUsedBillingAddress.php:31 +msgid "The Address you tried to delete is used in one or more contract(s) as Billing Address. Please assign another Billing Address to these contracts or change this one and do not delete." msgstr "" -#: js/Document/CreateFollowUpAction.js:39 -msgid "Create { targetRecordName }" +#: Acl/Rights.php:188 +msgid "Manage Products" msgstr "" -#: js/Document/CreateFollowUpAction.js:61 -msgid "Creating { targetRecordsName }" +#: Acl/Rights.php:189 +msgid "Add, edit and delete products." msgstr "" -#: js/Document/CreateFollowUpAction.js:72 -msgid "Book unbooked { sourceRecordsName }" +#: Acl/Rights.php:192 +msgid "Manage Contracts" msgstr "" -#: js/Document/CreateFollowUpAction.js:73 -msgid "Creating followup { targetRecordsName } is allowed for booked { sourceRecordsName } only. Book selected { sourceTypes } now?" +#: Acl/Rights.php:193 +msgid "Add, edit and delete contracts." msgstr "" -#: js/Document/CreateFollowUpAction.js:87 -msgid "Cannot book { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:196 +msgid "Manage Cost Centers" msgstr "" -#: js/Document/CreateFollowUpAction.js:116 -msgid "Cannot create { targetType } from { sourceDocument }: ({e.code}) { e.message }" +#: Acl/Rights.php:197 +msgid "Add, edit and delete cost centers." msgstr "" -#: js/Document/CreateFollowUpAction.js:134 -msgid "Documents Created:" +#: Acl/Rights.php:200 +msgid "Manage Customers" msgstr "" -#: js/Document/AbstractEditDialog.js:30 -msgid "Confirm Status Change" +#: Acl/Rights.php:201 +msgid "Add, edit and delete customers." msgstr "" -#: js/Document/AbstractEditDialog.js:31 -msgid "Changing this workflow status might not be revertible. Proceed anyway?" +#: Acl/Rights.php:204 +msgid "Manage Suppliers" msgstr "" -#: js/Document/BoilerplatePanel.js:28 -msgid "More Boilerplates" +#: Acl/Rights.php:205 +msgid "Add, edit and delete suppliers." msgstr "" -#: js/Document/BoilerplatePanel.js:139 -msgid "Choose Boilerplate" +#: Acl/Rights.php:208 +msgid "manage invoices" msgstr "" -#: js/Document/BoilerplatePanel.js:140 -msgid "Please choose which boilerplate you want to use as { name }" +#: Acl/Rights.php:209 +msgid "Add, edit and delete invoices." msgstr "" -#: js/Document/BoilerplatePanel.js:144 -msgid "Existing:" +#: Acl/Rights.php:212 +msgid "Manage Order Confirmations" msgstr "" -#: js/Document/BoilerplatePanel.js:145 -msgid "Applicable:" +#: Acl/Rights.php:213 +msgid "Add, edit and delete order confirmations." msgstr "" -#: js/AddressEditDialog.js:116 -msgid "Apply postal address" +#: Acl/Rights.php:216 +msgid "Manage Offers" msgstr "" -#: js/CustomerEditDialog.js:45 -msgid "Either street or postbox is required!" +#: Acl/Rights.php:217 +msgid "Add, edit and delete offers." msgstr "" -#: js/CustomerEditDialog.js:75 -msgid "Copy Customer" +#: Acl/Rights.php:220 +msgid "Manage Purchase Invoices" msgstr "" -#: js/CustomerEditDialog.js:78 -msgid "Add New Customer" +#: Acl/Rights.php:221 +msgid "Add, edit and delete purchase invoices." msgstr "" -#: js/CustomerEditDialog.js:80 -#, python-brace-format -msgid "Edit Customer \"{0}\"" +#: Acl/Rights.php:224 +msgid "Change number of an order confirmations" msgstr "" -#: js/BillingDateDialog.js:135 js/CopyAddressDialog.js:121 -msgid "Ok" +#: Acl/Rights.php:225 +msgid "Allow changing the number of an order confirmation during the update." msgstr "" -#: js/PurchaseInvoiceApproverFilterModel.js:32 -msgid "without approver" +#: Acl/Rights.php:228 +msgid "Set number of invoices" msgstr "" -#: js/ContractFilterModel.js:32 -msgid "without contract" +#: Acl/Rights.php:229 +msgid "Allow to set the number of an invoice." msgstr "" diff --git a/tine20/Tinebase/css/flat.less b/tine20/Tinebase/css/flat.less index b3cf32d8afb..259a0e1f7c2 100644 --- a/tine20/Tinebase/css/flat.less +++ b/tine20/Tinebase/css/flat.less @@ -606,6 +606,13 @@ span.x-tab-strip-text.tine-favicon { font-weight: normal; font-style: normal; } + + .status-fields { + input { + background-color: @dialogBg; + border-bottom: 1px solid darken(@dialogBg, 10%); + } + } } .x-form-text, textarea.x-form-field { diff --git a/tine20/Tinebase/js/ux/form/ColumnFormPanel.js b/tine20/Tinebase/js/ux/form/ColumnFormPanel.js index d540902e0bc..d9fac06e822 100644 --- a/tine20/Tinebase/js/ux/form/ColumnFormPanel.js +++ b/tine20/Tinebase/js/ux/form/ColumnFormPanel.js @@ -73,6 +73,7 @@ Ext.ux.form.ColumnFormPanel = Ext.extend(Ext.Panel, { xtype: 'container', border: false, layout: 'column', + cls: initialRowConfig.cls || '', items: [], listeners: { scope: this, diff --git a/tine20/Tinebase/js/widgets/dialog/MultiOptionsDialog.js b/tine20/Tinebase/js/widgets/dialog/MultiOptionsDialog.js index e27052d3c7b..d4c70f67579 100644 --- a/tine20/Tinebase/js/widgets/dialog/MultiOptionsDialog.js +++ b/tine20/Tinebase/js/widgets/dialog/MultiOptionsDialog.js @@ -36,6 +36,10 @@ Ext.extend(Tine.widgets.dialog.MultiOptionsDialog, Ext.FormPanel, { * @cfg {Function} handler */ handler: Ext.emptyFn, + /** + * @cfg {Boolean} allowMultiple options at once + */ + allowMultiple: false, /** * @cfg {Boolean} allowCancel */ @@ -80,7 +84,7 @@ Ext.extend(Tine.widgets.dialog.MultiOptionsDialog, Ext.FormPanel, { cls: 'ext-mb-text', html: this.questionText || i18n._('What would you like to do?') }, { - xtype: 'radiogroup', + xtype: this.allowMultiple ? 'checkboxgroup' : 'radiogroup', hideLabel: true, itemCls: 'x-check-group-alt', columns: 1, @@ -139,11 +143,18 @@ Ext.extend(Tine.widgets.dialog.MultiOptionsDialog, Ext.FormPanel, { }, onOk: function() { - var field = this.getForm().findField('optionGroup'); - var selecedRadio = field.getValue(); - - var option = selecedRadio ? selecedRadio.getGroupValue() : null; - + const field = this.getForm().findField('optionGroup'); + const selected = field.getValue(); + let option = null; + if (this.allowMultiple) { + const values = _.map(selected, 'initialConfig.inputValue'); + option = selected.length ? this.options.filter((option) => { + return values.indexOf(option.name) >= 0; + }) : null; + } else { + option = selected ? selected.getGroupValue() : null; + } + if (! option) { field.markInvalid(this.invalidText || i18n._('You need to select an option!')); return; diff --git a/tine20/library/ExtJS/src/widgets/tips/QuickTip.js b/tine20/library/ExtJS/src/widgets/tips/QuickTip.js index 132d8bf49cb..ece131dbd9c 100644 --- a/tine20/library/ExtJS/src/widgets/tips/QuickTip.js +++ b/tine20/library/ExtJS/src/widgets/tips/QuickTip.js @@ -1,9 +1,9 @@ -/*! - * Ext JS Library 3.1.1 - * Copyright(c) 2006-2010 Ext JS, LLC - * licensing@extjs.com - * http://www.extjs.com/license - */ +/*! + * Ext JS Library 3.1.1 + * Copyright(c) 2006-2010 Ext JS, LLC + * licensing@extjs.com + * http://www.extjs.com/license + */ /** * @class Ext.QuickTip * @extends Ext.ToolTip @@ -112,7 +112,7 @@ Ext.QuickTip = Ext.extend(Ext.ToolTip, { } if (! ttp) { t = e.getTarget('.x-grid3-cell-inner') - if (t && t.offsetWidth < t.scrollWidth) { + if (t && t.offsetWidth - t.scrollWidth > 4) { ttp = t.innerHTML; } }