mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Merge remote-tracking branch 'upstream/develop' into payments-changes
This commit is contained in:
commit
fc029a62e1
@ -1,5 +1,6 @@
|
||||
<?php
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Routes
|
||||
@ -574,7 +575,7 @@ if (!defined('CONTACT_EMAIL')) {
|
||||
define('NINJA_WEB_URL', env('NINJA_WEB_URL', 'https://www.invoiceninja.com'));
|
||||
define('NINJA_APP_URL', env('NINJA_APP_URL', 'https://app.invoiceninja.com'));
|
||||
define('NINJA_DATE', '2000-01-01');
|
||||
define('NINJA_VERSION', '2.5.1.3' . env('NINJA_VERSION_SUFFIX'));
|
||||
define('NINJA_VERSION', '2.5.2' . env('NINJA_VERSION_SUFFIX'));
|
||||
|
||||
define('SOCIAL_LINK_FACEBOOK', env('SOCIAL_LINK_FACEBOOK', 'https://www.facebook.com/invoiceninja'));
|
||||
define('SOCIAL_LINK_TWITTER', env('SOCIAL_LINK_TWITTER', 'https://twitter.com/invoiceninja'));
|
||||
@ -799,4 +800,4 @@ if (Utils::isNinjaDev())
|
||||
//ini_set('memory_limit','1024M');
|
||||
//Auth::loginUsingId(1);
|
||||
}
|
||||
*/
|
||||
*/
|
2
composer.lock
generated
2
composer.lock
generated
@ -10024,4 +10024,4 @@
|
||||
"prefer-lowest": false,
|
||||
"platform": [],
|
||||
"platform-dev": []
|
||||
}
|
||||
}
|
@ -1099,6 +1099,94 @@ $LANG = array(
|
||||
'november' => 'Listopad',
|
||||
'december' => 'Prosinec',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
||||
|
||||
return $LANG;
|
||||
|
@ -1199,5 +1199,93 @@ return array(
|
||||
'october' => 'October',
|
||||
'november' => 'November',
|
||||
'december' => 'December',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
@ -1201,4 +1201,92 @@ return array(
|
||||
'november' => 'November',
|
||||
'december' => 'Dezember',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
||||
|
@ -1179,6 +1179,9 @@ $LANG = array(
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
|
||||
// Payment updates
|
||||
'refund_payment' => 'Refund Payment',
|
||||
|
@ -1177,4 +1177,92 @@ return array(
|
||||
'november' => 'November',
|
||||
'december' => 'December',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
||||
|
@ -1197,4 +1197,92 @@ return array(
|
||||
'november' => 'November',
|
||||
'december' => 'December',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
||||
|
@ -1192,4 +1192,92 @@ return array(
|
||||
'november' => 'Novembre',
|
||||
'december' => 'Décembre',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
||||
|
@ -1190,4 +1190,93 @@ return array(
|
||||
'november' => 'November',
|
||||
'december' => 'December',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
|
||||
);
|
@ -1195,4 +1195,92 @@ return array(
|
||||
'november' => 'Novembre',
|
||||
'december' => 'Dicembre',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
||||
|
@ -1096,6 +1096,95 @@ $LANG = array(
|
||||
'october' => 'October',
|
||||
'november' => 'November',
|
||||
'december' => 'December',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
|
||||
);
|
||||
|
||||
|
@ -1202,4 +1202,92 @@ return array(
|
||||
'november' => 'November',
|
||||
'december' => 'December',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
@ -1200,4 +1200,92 @@ return array(
|
||||
'november' => 'November',
|
||||
'december' => 'December',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
@ -1192,4 +1192,92 @@ return array(
|
||||
'november' => 'november',
|
||||
'december' => 'december',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
@ -1176,7 +1176,12 @@ $LANG = array(
|
||||
'page_size' => 'Rozmiar strony',
|
||||
'live_preview_disabled' => 'Podgląd obrazu na żywo został wyłączony w celu wsparcia wybranej czcionki',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
||||
|
||||
return $LANG;
|
||||
|
@ -1189,4 +1189,92 @@ return array(
|
||||
'november' => 'Novembro',
|
||||
'december' => 'Dezembro',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
@ -1197,4 +1197,92 @@ return array(
|
||||
'november' => 'November',
|
||||
'december' => 'December',
|
||||
|
||||
// Documents
|
||||
'documents_header' => 'Documents:',
|
||||
'email_documents_header' => 'Documents:',
|
||||
'email_documents_example_1' => 'Widgets Receipt.pdf',
|
||||
'email_documents_example_2' => 'Final Deliverable.zip',
|
||||
'invoice_documents' => 'Documents',
|
||||
'expense_documents' => 'Attached Documents',
|
||||
'invoice_embed_documents' => 'Embed Documents',
|
||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||
'document_email_attachment' => 'Attach Documents',
|
||||
'download_documents' => 'Download Documents (:size)',
|
||||
'documents_from_expenses' => 'From Expenses:',
|
||||
'dropzone' => array(// See http://www.dropzonejs.com/#config-dictDefaultMessage
|
||||
'DefaultMessage' => 'Drop files or click to upload',
|
||||
'FallbackMessage' => 'Your browser does not support drag\'n\'drop file uploads.',
|
||||
'FallbackText' => 'Please use the fallback form below to upload your files like in the olden days.',
|
||||
'FileTooBig' => 'File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.',
|
||||
'InvalidFileType' => 'You can\'t upload files of this type.',
|
||||
'ResponseError' => 'Server responded with {{statusCode}} code.',
|
||||
'CancelUpload' => 'Cancel upload',
|
||||
'CancelUploadConfirmation' => 'Are you sure you want to cancel this upload?',
|
||||
'RemoveFile' => 'Remove file',
|
||||
),
|
||||
'documents' => 'Documents',
|
||||
'document_date' => 'Document Date',
|
||||
'document_size' => 'Size',
|
||||
|
||||
'enable_client_portal' => 'Client Portal',
|
||||
'enable_client_portal_help' => 'Show/hide the client portal.',
|
||||
'enable_client_portal_dashboard' => 'Dashboard',
|
||||
'enable_client_portal_dashboard_help' => 'Show/hide the dashboard page in the client portal.',
|
||||
|
||||
// Plans
|
||||
'account_management' => 'Account Management',
|
||||
'plan_status' => 'Plan Status',
|
||||
|
||||
'plan_upgrade' => 'Upgrade',
|
||||
'plan_change' => 'Change Plan',
|
||||
'pending_change_to' => 'Changes To',
|
||||
'plan_changes_to' => ':plan on :date',
|
||||
'plan_term_changes_to' => ':plan (:term) on :date',
|
||||
'cancel_plan_change' => 'Cancel Change',
|
||||
'plan' => 'Plan',
|
||||
'expires' => 'Expires',
|
||||
'renews' => 'Renews',
|
||||
'plan_expired' => ':plan Plan Expired',
|
||||
'trial_expired' => ':plan Plan Trial Ended',
|
||||
'never' => 'Never',
|
||||
'plan_free' => 'Free',
|
||||
'plan_pro' => 'Pro',
|
||||
'plan_enterprise' => 'Enterprise',
|
||||
'plan_white_label' => 'Self Hosted (White labeled)',
|
||||
'plan_free_self_hosted' => 'Self Hosted (Free)',
|
||||
'plan_trial' => 'Trial',
|
||||
'plan_term' => 'Term',
|
||||
'plan_term_monthly' => 'Monthly',
|
||||
'plan_term_yearly' => 'Yearly',
|
||||
'plan_term_month' => 'Month',
|
||||
'plan_term_year' => 'Year',
|
||||
'plan_price_monthly' => '$:price/Month',
|
||||
'plan_price_yearly' => '$:price/Year',
|
||||
'updated_plan' => 'Updated plan settings',
|
||||
'plan_paid' => 'Term Started',
|
||||
'plan_started' => 'Plan Started',
|
||||
'plan_expires' => 'Plan Expires',
|
||||
|
||||
'white_label_button' => 'White Label',
|
||||
|
||||
'pro_plan_year_description' => 'One year enrollment in the Invoice Ninja Pro Plan.',
|
||||
'pro_plan_month_description' => 'One month enrollment in the Invoice Ninja Pro Plan.',
|
||||
'enterprise_plan_product' => 'Enterprise Plan',
|
||||
'enterprise_plan_year_description' => 'One year enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'enterprise_plan_month_description' => 'One month enrollment in the Invoice Ninja Enterprise Plan.',
|
||||
'plan_credit_product' => 'Credit',
|
||||
'plan_credit_description' => 'Credit for unused time',
|
||||
'plan_pending_monthly' => 'Will switch to monthly on :date',
|
||||
'plan_refunded' => 'A refund has been issued.',
|
||||
|
||||
'live_preview' => 'Live Preview',
|
||||
'page_size' => 'Page Size',
|
||||
'live_preview_disabled' => 'Live preview has been disabled to support selected font',
|
||||
'invoice_number_padding' => 'Padding',
|
||||
'preview' => 'Preview',
|
||||
'list_vendors' => 'List Vendors',
|
||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||
'return_to_app' => 'Return to app',
|
||||
|
||||
);
|
||||
|
@ -128,7 +128,8 @@
|
||||
@endif
|
||||
{!! Former::select('plan_term')
|
||||
->addOption(trans('texts.plan_term_yearly'), PLAN_TERM_YEARLY)
|
||||
->addOption(trans('texts.plan_term_monthly'), PLAN_TERM_MONTHLY)!!}
|
||||
->addOption(trans('texts.plan_term_monthly'), PLAN_TERM_MONTHLY)
|
||||
->inlineHelp(trans('texts.enterprise_plan_features')) !!}
|
||||
</div>
|
||||
<div class="modal-footer" style="margin-top: 0px">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.go_back') }}</button>
|
||||
|
@ -785,11 +785,11 @@
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h4>{{ trans('texts.before') }}</h4>
|
||||
<img src="{{ BLANK_IMAGE }}" data-src="http://ninja.dev/images/pro_plan/white_label_before.png" width="100%" alt="before">
|
||||
<img src="{{ BLANK_IMAGE }}" data-src="{{ asset('images/pro_plan/white_label_before.png') }}" width="100%" alt="before">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h4>{{ trans('texts.after') }}</h4>
|
||||
<img src="{{ BLANK_IMAGE }}" data-src="http://ninja.dev/images/pro_plan/white_label_after.png" width="100%" alt="after">
|
||||
<img src="{{ BLANK_IMAGE }}" data-src="{{ asset('images/pro_plan/white_label_after.png') }}" width="100%" alt="after">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -812,4 +812,4 @@
|
||||
<p> </p>
|
||||
|
||||
|
||||
@stop
|
||||
@stop
|
||||
|
@ -70,7 +70,10 @@
|
||||
@include('partials.checkout_com_payment')
|
||||
@else
|
||||
<div class="pull-right" style="text-align:right">
|
||||
@if ($invoice->is_quote)
|
||||
@if (Session::get('trackEventAction') === '/buy_pro_plan')
|
||||
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
||||
{!! Button::primary(trans('texts.return_to_app'))->asLinkTo(URL::to('/dashboard'))->large() !!}
|
||||
@elseif ($invoice->is_quote)
|
||||
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
||||
@if ($showApprove)
|
||||
{!! Button::success(trans('texts.approve'))->asLinkTo(URL::to('/approve/' . $invitation->invitation_key))->large() !!}
|
||||
|
Loading…
Reference in New Issue
Block a user