82 lines
2.4 KiB
PHP
82 lines
2.4 KiB
PHP
<?php
|
|
|
|
// One customer: who they are, what they bought, what they paid, what was said —
|
|
// and, last, the tab for writing to them.
|
|
return [
|
|
'back' => 'All customers',
|
|
|
|
'tab' => [
|
|
'overview' => 'Details',
|
|
'package' => 'Package',
|
|
'billing' => 'Payments',
|
|
'messages' => 'Messages',
|
|
'compose' => 'Write',
|
|
],
|
|
|
|
// Details
|
|
'identity' => 'Customer',
|
|
'edit' => 'Edit',
|
|
'company' => 'Company',
|
|
'contact' => 'Contact',
|
|
'email' => 'Mail',
|
|
'phone' => 'Phone',
|
|
'since' => 'Customer since',
|
|
'locale' => 'Language',
|
|
'tax' => 'Tax treatment',
|
|
'type' => 'Customer type',
|
|
'type_consumer' => 'Consumer',
|
|
'type_business' => 'Business',
|
|
'type_unknown' => 'Not recorded — treated as a consumer',
|
|
'vat_id' => 'VAT ID',
|
|
'verified' => 'verified',
|
|
'unverified' => 'unverified',
|
|
'stripe' => 'Stripe customer',
|
|
'address' => 'Billing address',
|
|
'no_address' => 'No billing address on record.',
|
|
|
|
// Package
|
|
'no_contract' => 'This customer has no contract — neither running nor ended.',
|
|
'price' => 'Price',
|
|
'net_per' => 'net :term',
|
|
'term_monthly' => 'per month',
|
|
'term_yearly' => 'per year',
|
|
'quota' => 'Storage',
|
|
'traffic' => 'Traffic',
|
|
'seats' => 'Users',
|
|
'started' => 'Started',
|
|
'period_end' => 'Runs until',
|
|
'cancelled' => 'Cancelled on :date.',
|
|
'addons' => 'Modules',
|
|
'addon_until' => '— runs until :date',
|
|
'machine' => 'Machine',
|
|
'no_instance' => 'No instance yet.',
|
|
'address_web' => 'Address',
|
|
'instance_status' => 'State',
|
|
'host' => 'Host',
|
|
'datacenter' => 'Datacenter',
|
|
'disk' => 'Allocated',
|
|
|
|
// Payments
|
|
'invoices' => 'Invoices',
|
|
'no_invoices' => 'No invoice has been issued for this customer yet.',
|
|
'write_invoice' => 'Write an invoice',
|
|
'number' => 'Number',
|
|
'issued' => 'Date',
|
|
'net' => 'Net',
|
|
'gross' => 'Gross',
|
|
'orders' => 'Orders',
|
|
'no_orders' => 'No order on record.',
|
|
|
|
// Messages
|
|
'requests' => 'Requests from the portal',
|
|
'no_requests' => 'No request so far.',
|
|
'answer' => 'Answer',
|
|
'inbound' => 'Mail from the customer',
|
|
'no_inbound' => 'No mail has arrived from this customer.',
|
|
'to_inbox' => 'Inbox',
|
|
'mails' => 'Mail sent',
|
|
'no_mails' => 'Nothing has been sent to this customer yet.',
|
|
'all_mails' => 'Mail register',
|
|
'by_hand' => 'By hand',
|
|
];
|