mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
commit
d8498bdd03
@ -1 +1 @@
|
|||||||
5.0.32
|
5.0.33
|
@ -617,7 +617,6 @@ class CompanySettings extends BaseSettings
|
|||||||
'$quote.po_number',
|
'$quote.po_number',
|
||||||
'$quote.date',
|
'$quote.date',
|
||||||
'$quote.valid_until',
|
'$quote.valid_until',
|
||||||
'$quote.balance_due',
|
|
||||||
'$quote.total',
|
'$quote.total',
|
||||||
],
|
],
|
||||||
'credit_details' => [
|
'credit_details' => [
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Invoice Ninja (https://invoiceninja.com).
|
|
||||||
*
|
|
||||||
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
||||||
*
|
|
||||||
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
||||||
*
|
|
||||||
* @license https://opensource.org/licenses/AAL
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace App\Http\Controllers\ClientPortal;
|
|
||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
|
||||||
use App\Models\Gateway;
|
|
||||||
use Illuminate\Http\Request;
|
|
||||||
|
|
||||||
class PaymentHookController extends Controller
|
|
||||||
{
|
|
||||||
public function process($company_gateway_id, $gateway_type_id)
|
|
||||||
{
|
|
||||||
$gateway = Gateway::find($company_gateway_id);
|
|
||||||
|
|
||||||
dd(request()->input());
|
|
||||||
}
|
|
||||||
}
|
|
@ -314,7 +314,7 @@ class CreditController extends BaseController
|
|||||||
*
|
*
|
||||||
* @throws \ReflectionException
|
* @throws \ReflectionException
|
||||||
* @OA\Put(
|
* @OA\Put(
|
||||||
* path="/api/v1/Credits/{id}",
|
* path="/api/v1/credits/{id}",
|
||||||
* operationId="updateCredit",
|
* operationId="updateCredit",
|
||||||
* tags={"Credits"},
|
* tags={"Credits"},
|
||||||
* summary="Updates an Credit",
|
* summary="Updates an Credit",
|
||||||
|
@ -844,7 +844,8 @@ class InvoiceController extends BaseController
|
|||||||
$file_path = $invoice->service()->getInvoiceDeliveryNote($invoice, $invoice->invitations->first()->contact);
|
$file_path = $invoice->service()->getInvoiceDeliveryNote($invoice, $invoice->invitations->first()->contact);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$file = base_path("public/storage/{$file_path}");
|
$file = public_path("storage/{$file_path}");
|
||||||
|
|
||||||
|
|
||||||
return response()->download($file, basename($file));
|
return response()->download($file, basename($file));
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
|
@ -372,7 +372,7 @@ class UserController extends BaseController
|
|||||||
|
|
||||||
$user = $this->user_repo->save($request->all(), $user);
|
$user = $this->user_repo->save($request->all(), $user);
|
||||||
|
|
||||||
if ($user) {
|
if ($old_email != $new_email) {
|
||||||
UserEmailChanged::dispatch($new_email, $old_email, auth()->user()->company());
|
UserEmailChanged::dispatch($new_email, $old_email, auth()->user()->company());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,9 +34,10 @@ class QueryLogging
|
|||||||
$timeStart = microtime(true);
|
$timeStart = microtime(true);
|
||||||
|
|
||||||
// Enable query logging for development
|
// Enable query logging for development
|
||||||
if (config('ninja.app_env') != 'production') {
|
if (config('ninja.app_env') == 'production')
|
||||||
|
return $next($request);
|
||||||
|
|
||||||
DB::enableQueryLog();
|
DB::enableQueryLog();
|
||||||
}
|
|
||||||
|
|
||||||
$response = $next($request);
|
$response = $next($request);
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@ use App\Events\Invoice\InvoiceWasEmailed;
|
|||||||
use App\Jobs\Entity\EmailEntity;
|
use App\Jobs\Entity\EmailEntity;
|
||||||
use App\Libraries\MultiDB;
|
use App\Libraries\MultiDB;
|
||||||
use App\Models\Invoice;
|
use App\Models\Invoice;
|
||||||
|
use App\Models\Webhook;
|
||||||
use App\Utils\Ninja;
|
use App\Utils\Ninja;
|
||||||
use App\Utils\Traits\MakesDates;
|
use App\Utils\Traits\MakesDates;
|
||||||
use App\Utils\Traits\MakesReminders;
|
use App\Utils\Traits\MakesReminders;
|
||||||
@ -25,6 +26,7 @@ use Illuminate\Foundation\Bus\Dispatchable;
|
|||||||
use Illuminate\Queue\InteractsWithQueue;
|
use Illuminate\Queue\InteractsWithQueue;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Illuminate\Support\Carbon;
|
use Illuminate\Support\Carbon;
|
||||||
|
use App\Jobs\Util\WebHookHandler;
|
||||||
|
|
||||||
class SendReminders implements ShouldQueue
|
class SendReminders implements ShouldQueue
|
||||||
{
|
{
|
||||||
@ -81,6 +83,7 @@ class SendReminders implements ShouldQueue
|
|||||||
|
|
||||||
if (in_array($reminder_template, ['reminder1', 'reminder2', 'reminder3', 'endless_reminder'])) {
|
if (in_array($reminder_template, ['reminder1', 'reminder2', 'reminder3', 'endless_reminder'])) {
|
||||||
$this->sendReminder($invoice, $reminder_template);
|
$this->sendReminder($invoice, $reminder_template);
|
||||||
|
WebHookHandler::dispatch(Webhook::EVENT_REMIND_INVOICE, $invoice, $invoice->company);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -207,6 +207,6 @@ class ClientContact extends Authenticatable implements HasLocalePreference
|
|||||||
{
|
{
|
||||||
$domain = isset($this->company->portal_domain) ?: $this->company->domain();
|
$domain = isset($this->company->portal_domain) ?: $this->company->domain();
|
||||||
|
|
||||||
return $domain . 'client/key_login/' . $this->contact_key;
|
return $domain . '/client/key_login/' . $this->contact_key;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -81,4 +81,9 @@ class Expense extends BaseModel
|
|||||||
{
|
{
|
||||||
return $this->belongsTo(Company::class);
|
return $this->belongsTo(Company::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function vendor()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Vendor::class);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -92,7 +92,7 @@ class InvoiceSentNotification extends Notification implements ShouldQueue
|
|||||||
'invoice' => $this->invoice->number,
|
'invoice' => $this->invoice->number,
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
'url' => config('ninja.app_url').'invoices/'.$this->invoice->hashed_id,
|
'url' => config('ninja.app_url').'/invoices/'.$this->invoice->hashed_id,
|
||||||
'button' => ctrans('texts.view_invoice'),
|
'button' => ctrans('texts.view_invoice'),
|
||||||
'signature' => $this->settings->email_signature,
|
'signature' => $this->settings->email_signature,
|
||||||
'logo' => $this->company->present()->logo(),
|
'logo' => $this->company->present()->logo(),
|
||||||
|
@ -92,7 +92,7 @@ class InvoiceViewedNotification extends Notification implements ShouldQueue
|
|||||||
'invoice' => $this->invoice->number,
|
'invoice' => $this->invoice->number,
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
'url' => config('ninja.app_url').'invoices/'.$this->invoice->hashed_id,
|
'url' => config('ninja.app_url').'/invoices/'.$this->invoice->hashed_id,
|
||||||
'button' => ctrans('texts.view_invoice'),
|
'button' => ctrans('texts.view_invoice'),
|
||||||
'signature' => $this->settings->email_signature,
|
'signature' => $this->settings->email_signature,
|
||||||
'logo' => $this->company->present()->logo(),
|
'logo' => $this->company->present()->logo(),
|
||||||
|
@ -89,7 +89,7 @@ class NewPartialPaymentNotification extends Notification implements ShouldQueue
|
|||||||
'invoice' => $invoice_texts,
|
'invoice' => $invoice_texts,
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
'url' => config('ninja.app_url').'payments/'.$this->payment->hashed_id,
|
'url' => config('ninja.app_url').'/payments/'.$this->payment->hashed_id,
|
||||||
'button' => ctrans('texts.view_payment'),
|
'button' => ctrans('texts.view_payment'),
|
||||||
'signature' => $this->settings->email_signature,
|
'signature' => $this->settings->email_signature,
|
||||||
'logo' => $this->company->present()->logo(),
|
'logo' => $this->company->present()->logo(),
|
||||||
|
@ -92,7 +92,7 @@ class NewPaymentNotification extends Notification implements ShouldQueue
|
|||||||
'invoice' => $invoice_texts,
|
'invoice' => $invoice_texts,
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
'url' => config('ninja.app_url').'payments/'.$this->payment->hashed_id,
|
'url' => config('ninja.app_url').'/payments/'.$this->payment->hashed_id,
|
||||||
'button' => ctrans('texts.view_payment'),
|
'button' => ctrans('texts.view_payment'),
|
||||||
'signature' => $this->settings->email_signature,
|
'signature' => $this->settings->email_signature,
|
||||||
'logo' => $this->company->present()->logo(),
|
'logo' => $this->company->present()->logo(),
|
||||||
|
@ -23,7 +23,7 @@ class CompanyUserTransformer extends EntityTransformer
|
|||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $defaultIncludes = [
|
protected $defaultIncludes = [
|
||||||
'user',
|
// 'user',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -26,8 +26,7 @@ class UserTransformer extends EntityTransformer
|
|||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $defaultIncludes = [
|
protected $defaultIncludes = [
|
||||||
//'company_users',
|
//'company_user'
|
||||||
// 'token',
|
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -68,7 +68,7 @@ class Phantom
|
|||||||
|
|
||||||
$file_path = $path.$entity_obj->number.'.pdf';
|
$file_path = $path.$entity_obj->number.'.pdf';
|
||||||
|
|
||||||
$url = config('ninja.app_url').'phantom/'.$entity.'/'.$invitation->key.'?phantomjs_secret='.config('ninja.phantomjs_secret');
|
$url = config('ninja.app_url').'/phantom/'.$entity.'/'.$invitation->key.'?phantomjs_secret='.config('ninja.phantomjs_secret');
|
||||||
info($url);
|
info($url);
|
||||||
|
|
||||||
$key = config('ninja.phantomjs_key');
|
$key = config('ninja.phantomjs_key');
|
||||||
|
@ -601,22 +601,37 @@ trait GeneratesCounter
|
|||||||
$replace[] = str_replace($format, $date, $matches[1]);
|
$replace[] = str_replace($format, $date, $matches[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($entity instanceof Client || $entity instanceof Vendor) {
|
if ($entity instanceof Vendor) {
|
||||||
$search[] = '{$client_custom1}';
|
|
||||||
$replace[] = $entity->custom_value1;
|
|
||||||
|
|
||||||
$search[] = '{$client_custom2}';
|
$search[] = '{$vendor_id_number}';
|
||||||
$replace[] = $entity->custom_value2;
|
|
||||||
|
|
||||||
$search[] = '{$client_custom3}';
|
|
||||||
$replace[] = $entity->custom_value3;
|
|
||||||
|
|
||||||
$search[] = '{$client_custom4}';
|
|
||||||
$replace[] = $entity->custom_value4;
|
|
||||||
|
|
||||||
$search[] = '{$id_number}';
|
|
||||||
$replace[] = $entity->id_number;
|
$replace[] = $entity->id_number;
|
||||||
} else {
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($entity instanceof Expense) {
|
||||||
|
|
||||||
|
if($entity->vendor){
|
||||||
|
$search[] = '{$vendor_id_number}';
|
||||||
|
$replace[] = $entity->vendor->id_number;
|
||||||
|
|
||||||
|
$search[] = '{$vendor_custom1}';
|
||||||
|
$replace[] = $entity->vendor->custom_value1;
|
||||||
|
|
||||||
|
$search[] = '{$vendor_custom2}';
|
||||||
|
$replace[] = $entity->vendor->custom_value2;
|
||||||
|
|
||||||
|
$search[] = '{$vendor_custom3}';
|
||||||
|
$replace[] = $entity->vendor->custom_value3;
|
||||||
|
|
||||||
|
$search[] = '{$vendor_custom4}';
|
||||||
|
$replace[] = $entity->vendor->custom_value4;
|
||||||
|
}
|
||||||
|
|
||||||
|
$search[] = '{$expense_id_number}';
|
||||||
|
$replace[] = $entity->id_number;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($entity->client) {
|
||||||
$search[] = '{$client_custom1}';
|
$search[] = '{$client_custom1}';
|
||||||
$replace[] = $entity->client->custom_value1;
|
$replace[] = $entity->client->custom_value1;
|
||||||
|
|
||||||
@ -629,7 +644,7 @@ trait GeneratesCounter
|
|||||||
$search[] = '{$client_custom4}';
|
$search[] = '{$client_custom4}';
|
||||||
$replace[] = $entity->client->custom_value4;
|
$replace[] = $entity->client->custom_value4;
|
||||||
|
|
||||||
$search[] = '{$id_number}';
|
$search[] = '{$client_id_number}';
|
||||||
$replace[] = $entity->client->id_number;
|
$replace[] = $entity->client->id_number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,14 +50,14 @@ trait Inviteable
|
|||||||
|
|
||||||
switch ($this->company->portal_mode) {
|
switch ($this->company->portal_mode) {
|
||||||
case 'subdomain':
|
case 'subdomain':
|
||||||
return $domain.'client/'.$entity_type.'/'.$this->key;
|
return $domain.'/client/'.$entity_type.'/'.$this->key;
|
||||||
break;
|
break;
|
||||||
case 'iframe':
|
case 'iframe':
|
||||||
return $domain.'client/'.$entity_type.'/'.$this->key;
|
return $domain.'/client/'.$entity_type.'/'.$this->key;
|
||||||
//return $domain . $entity_type .'/'. $this->contact->client->client_hash .'/'. $this->key;
|
//return $domain . $entity_type .'/'. $this->contact->client->client_hash .'/'. $this->key;
|
||||||
break;
|
break;
|
||||||
case 'domain':
|
case 'domain':
|
||||||
return $domain.'client/'.$entity_type.'/'.$this->key;
|
return $domain.'/client/'.$entity_type.'/'.$this->key;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
"league/omnipay": "^3.0",
|
"league/omnipay": "^3.0",
|
||||||
"livewire/livewire": "^2.0",
|
"livewire/livewire": "^2.0",
|
||||||
"maennchen/zipstream-php": "^1.2",
|
"maennchen/zipstream-php": "^1.2",
|
||||||
"nwidart/laravel-modules": "^6.0",
|
"nwidart/laravel-modules": "^8.0",
|
||||||
"omnipay/paypal": "^3.0",
|
"omnipay/paypal": "^3.0",
|
||||||
"predis/predis": "^1.1",
|
"predis/predis": "^1.1",
|
||||||
"sentry/sentry-laravel": "^2",
|
"sentry/sentry-laravel": "^2",
|
||||||
|
@ -10,9 +10,9 @@ return [
|
|||||||
'app_name' => env('APP_NAME'),
|
'app_name' => env('APP_NAME'),
|
||||||
'app_env' => env('APP_ENV', 'selfhosted'),
|
'app_env' => env('APP_ENV', 'selfhosted'),
|
||||||
'require_https' => env('REQUIRE_HTTPS', true),
|
'require_https' => env('REQUIRE_HTTPS', true),
|
||||||
'app_url' => rtrim(env('APP_URL', ''), '/').'/',
|
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||||
'app_domain' => env('APP_DOMAIN', ''),
|
'app_domain' => env('APP_DOMAIN', ''),
|
||||||
'app_version' => '5.0.32',
|
'app_version' => '5.0.33',
|
||||||
'minimum_client_version' => '5.0.16',
|
'minimum_client_version' => '5.0.16',
|
||||||
'terms_version' => '1.0.1',
|
'terms_version' => '1.0.1',
|
||||||
'api_secret' => env('API_SECRET', false),
|
'api_secret' => env('API_SECRET', false),
|
||||||
|
@ -68,8 +68,8 @@ $LANG = [
|
|||||||
'tax_rates' => 'Steuersätze',
|
'tax_rates' => 'Steuersätze',
|
||||||
'rate' => 'Satz',
|
'rate' => 'Satz',
|
||||||
'settings' => 'Einstellungen',
|
'settings' => 'Einstellungen',
|
||||||
'enable_invoice_tax' => 'Ermögliche das Bestimmen einer <strong>Rechnungssteuer</strong>',
|
'enable_invoice_tax' => 'Ermögliche das Bestimmen einer Rechnungssteuer',
|
||||||
'enable_line_item_tax' => 'Ermögliche das Bestimmen von <strong>Steuern für Belegpositionen</strong>',
|
'enable_line_item_tax' => 'Ermögliche das Bestimmen von Steuern für Belegpositionen',
|
||||||
'dashboard' => 'Dashboard',
|
'dashboard' => 'Dashboard',
|
||||||
'clients' => 'Kunden',
|
'clients' => 'Kunden',
|
||||||
'invoices' => 'Rechnungen',
|
'invoices' => 'Rechnungen',
|
||||||
@ -95,9 +95,9 @@ $LANG = [
|
|||||||
'powered_by' => 'Unterstützt durch',
|
'powered_by' => 'Unterstützt durch',
|
||||||
'no_items' => 'Keine Objekte',
|
'no_items' => 'Keine Objekte',
|
||||||
'recurring_invoices' => 'Wiederkehrende Rechnungen',
|
'recurring_invoices' => 'Wiederkehrende Rechnungen',
|
||||||
'recurring_help' => '<p>Automatically send clients the same invoices weekly, bi-monthly, monthly, quarterly or annually. </p>
|
'recurring_help' => 'Automatically send clients the same invoices weekly, bi-monthly, monthly, quarterly or annually.
|
||||||
<p>Use :MONTH, :QUARTER or :YEAR for dynamic dates. Basic math works as well, for example :MONTH-1.</p>
|
Use :MONTH, :QUARTER or :YEAR for dynamic dates. Basic math works as well, for example :MONTH-1.
|
||||||
<p>Examples of dynamic invoice variables:</p>
|
Examples of dynamic invoice variables:
|
||||||
<ul>
|
<ul>
|
||||||
<li>"Gym membership for the month of :MONTH" >> "Gym membership for the month of July"</li>
|
<li>"Gym membership for the month of :MONTH" >> "Gym membership for the month of July"</li>
|
||||||
<li>":YEAR+1 yearly subscription" >> "2015 Yearly Subscription"</li>
|
<li>":YEAR+1 yearly subscription" >> "2015 Yearly Subscription"</li>
|
||||||
@ -172,9 +172,9 @@ $LANG = [
|
|||||||
'payment_gateway' => 'Zahlungseingang',
|
'payment_gateway' => 'Zahlungseingang',
|
||||||
'gateway_id' => 'Zahlungsanbieter',
|
'gateway_id' => 'Zahlungsanbieter',
|
||||||
'email_notifications' => 'E-Mail Benachrichtigungen',
|
'email_notifications' => 'E-Mail Benachrichtigungen',
|
||||||
'email_sent' => 'Benachrichtigen, wenn eine Rechnung <strong>versendet</strong> wurde',
|
'email_sent' => 'Benachrichtigen, wenn eine Rechnung versendet wurde',
|
||||||
'email_viewed' => 'Benachrichtigen, wenn eine Rechnung <strong>betrachtet</strong> wurde',
|
'email_viewed' => 'Benachrichtigen, wenn eine Rechnung betrachtet wurde',
|
||||||
'email_paid' => 'Benachrichtigen, wenn eine Rechnung <strong>bezahlt</strong> wurde',
|
'email_paid' => 'Benachrichtigen, wenn eine Rechnung bezahlt wurde',
|
||||||
'site_updates' => 'Webseitenaktualisierungen',
|
'site_updates' => 'Webseitenaktualisierungen',
|
||||||
'custom_messages' => 'Benutzerdefinierte Nachrichten',
|
'custom_messages' => 'Benutzerdefinierte Nachrichten',
|
||||||
'default_email_footer' => 'Standard-E-Mail Signatur',
|
'default_email_footer' => 'Standard-E-Mail Signatur',
|
||||||
@ -271,7 +271,7 @@ $LANG = [
|
|||||||
'password' => 'Passwort',
|
'password' => 'Passwort',
|
||||||
'pro_plan_product' => 'Pro Plan',
|
'pro_plan_product' => 'Pro Plan',
|
||||||
'pro_plan_success' => 'Danke, dass Sie Invoice Ninja\'s Pro gewählt haben!<p/> <br/>
|
'pro_plan_success' => 'Danke, dass Sie Invoice Ninja\'s Pro gewählt haben!<p/> <br/>
|
||||||
<b>Nächste Schritte</b>Eine bezahlbare Rechnung wurde an die Mailadresse,
|
Nächste SchritteEine bezahlbare Rechnung wurde an die Mailadresse,
|
||||||
welche mit Ihrem Account verbunden ist, geschickt. Um alle der umfangreichen
|
welche mit Ihrem Account verbunden ist, geschickt. Um alle der umfangreichen
|
||||||
Pro Funktionen freizuschalten, folgen Sie bitte den Anweisungen in der Rechnung um ein Jahr
|
Pro Funktionen freizuschalten, folgen Sie bitte den Anweisungen in der Rechnung um ein Jahr
|
||||||
die Pro Funktionen zu nutzen.
|
die Pro Funktionen zu nutzen.
|
||||||
@ -290,9 +290,9 @@ $LANG = [
|
|||||||
'product' => 'Produkt',
|
'product' => 'Produkt',
|
||||||
'products' => 'Produkte',
|
'products' => 'Produkte',
|
||||||
'fill_products' => 'Produkte automatisch ausfüllen',
|
'fill_products' => 'Produkte automatisch ausfüllen',
|
||||||
'fill_products_help' => 'Beim Auswählen eines Produktes werden automatisch <strong>Beschreibung und Kosten ausgefüllt</strong>',
|
'fill_products_help' => 'Beim Auswählen eines Produktes werden automatisch Beschreibung und Kosten ausgefüllt',
|
||||||
'update_products' => 'Produkte automatisch aktualisieren',
|
'update_products' => 'Produkte automatisch aktualisieren',
|
||||||
'update_products_help' => 'Beim Aktualisieren einer Rechnung werden die <strong>Produkte automatisch aktualisiert</strong>',
|
'update_products_help' => 'Beim Aktualisieren einer Rechnung werden die Produkte automatisch aktualisiert',
|
||||||
'create_product' => 'Produkt erstellen',
|
'create_product' => 'Produkt erstellen',
|
||||||
'edit_product' => 'Produkt bearbeiten',
|
'edit_product' => 'Produkt bearbeiten',
|
||||||
'archive_product' => 'Produkt archivieren',
|
'archive_product' => 'Produkt archivieren',
|
||||||
@ -498,7 +498,7 @@ $LANG = [
|
|||||||
'send_email' => 'E-Mail senden',
|
'send_email' => 'E-Mail senden',
|
||||||
'set_password' => 'Passwort festlegen',
|
'set_password' => 'Passwort festlegen',
|
||||||
'converted' => 'Umgewandelt',
|
'converted' => 'Umgewandelt',
|
||||||
'email_approved' => 'Per E-Mail benachrichtigen, wenn ein Angebot <b>angenommen</b> wurde',
|
'email_approved' => 'Per E-Mail benachrichtigen, wenn ein Angebot angenommen wurde',
|
||||||
'notification_quote_approved_subject' => 'Angebot :invoice wurde von :client angenommen.',
|
'notification_quote_approved_subject' => 'Angebot :invoice wurde von :client angenommen.',
|
||||||
'notification_quote_approved' => 'Der folgende Kunde :client nahm das Angebot :invoice über :amount an.',
|
'notification_quote_approved' => 'Der folgende Kunde :client nahm das Angebot :invoice über :amount an.',
|
||||||
'resend_confirmation' => 'Bestätigungsmail erneut senden',
|
'resend_confirmation' => 'Bestätigungsmail erneut senden',
|
||||||
@ -617,7 +617,7 @@ $LANG = [
|
|||||||
'email_error' => 'Es gab ein Problem beim Senden dieser E-Mail.',
|
'email_error' => 'Es gab ein Problem beim Senden dieser E-Mail.',
|
||||||
'confirm_recurring_timing' => 'Beachten Sie: E-Mails werden zu jeder vollen Stunde versendet.',
|
'confirm_recurring_timing' => 'Beachten Sie: E-Mails werden zu jeder vollen Stunde versendet.',
|
||||||
'confirm_recurring_timing_not_sent' => 'Beachten Sie: E-Mails werden zu jeder vollen Stunde versendet.',
|
'confirm_recurring_timing_not_sent' => 'Beachten Sie: E-Mails werden zu jeder vollen Stunde versendet.',
|
||||||
'payment_terms_help' => 'Setzt das <b>Standardfälligkeitsdatum</b>',
|
'payment_terms_help' => 'Setzt das Standardfälligkeitsdatum',
|
||||||
'unlink_account' => 'Konten trennen',
|
'unlink_account' => 'Konten trennen',
|
||||||
'unlink' => 'Trennen',
|
'unlink' => 'Trennen',
|
||||||
'show_address' => 'Adresse anzeigen',
|
'show_address' => 'Adresse anzeigen',
|
||||||
@ -660,8 +660,8 @@ $LANG = [
|
|||||||
'created_by_invoice' => 'Erstellt durch :invoice',
|
'created_by_invoice' => 'Erstellt durch :invoice',
|
||||||
'primary_user' => 'Primärer Benutzer',
|
'primary_user' => 'Primärer Benutzer',
|
||||||
'help' => 'Hilfe',
|
'help' => 'Hilfe',
|
||||||
'customize_help' => '<p>We use :pdfmake_link to define the invoice designs declaratively. The pdfmake :playground_link provides a great way to see the library in action.</p>
|
'customize_help' => 'We use :pdfmake_link to define the invoice designs declaratively. The pdfmake :playground_link provides a great way to see the library in action.
|
||||||
<p>If you need help figuring something out post a question to our :forum_link with the design you\'re using.</p>',
|
If you need help figuring something out post a question to our :forum_link with the design you\'re using.',
|
||||||
'playground' => 'Spielplatz',
|
'playground' => 'Spielplatz',
|
||||||
'support_forum' => 'Support-Forum',
|
'support_forum' => 'Support-Forum',
|
||||||
'invoice_due_date' => 'Fälligkeitsdatum',
|
'invoice_due_date' => 'Fälligkeitsdatum',
|
||||||
@ -678,7 +678,7 @@ $LANG = [
|
|||||||
'status_paid' => 'Bezahlt',
|
'status_paid' => 'Bezahlt',
|
||||||
'status_unpaid' => 'Unbezahlt',
|
'status_unpaid' => 'Unbezahlt',
|
||||||
'status_all' => 'Alle',
|
'status_all' => 'Alle',
|
||||||
'show_line_item_tax' => '<b>Steuern für Belegpositionen</b> in der jeweiligen Zeile anzeigen',
|
'show_line_item_tax' => 'Steuern für Belegpositionen in der jeweiligen Zeile anzeigen',
|
||||||
'iframe_url' => 'Webseite',
|
'iframe_url' => 'Webseite',
|
||||||
'iframe_url_help1' => 'Kopiere den folgenden Code in eine Seite auf deiner Website.',
|
'iframe_url_help1' => 'Kopiere den folgenden Code in eine Seite auf deiner Website.',
|
||||||
'iframe_url_help2' => 'Du kannst diese Funktion testen, in dem du für eine Rechnung \'Als Empfänger betrachten\'. anklickst.',
|
'iframe_url_help2' => 'Du kannst diese Funktion testen, in dem du für eine Rechnung \'Als Empfänger betrachten\'. anklickst.',
|
||||||
@ -934,15 +934,15 @@ $LANG = [
|
|||||||
'edit_payment_term' => 'Bearbeite Zahlungsbedingungen',
|
'edit_payment_term' => 'Bearbeite Zahlungsbedingungen',
|
||||||
'archive_payment_term' => 'Archiviere Zahlungsbedingungen',
|
'archive_payment_term' => 'Archiviere Zahlungsbedingungen',
|
||||||
'recurring_due_dates' => 'Wiederkehrende Rechnungen Fälligkeitsdatum',
|
'recurring_due_dates' => 'Wiederkehrende Rechnungen Fälligkeitsdatum',
|
||||||
'recurring_due_date_help' => '<p>Legt automatisch ein Fälligkeitsdatem für die Rechnung fest.</p>
|
'recurring_due_date_help' => 'Legt automatisch ein Fälligkeitsdatem für die Rechnung fest.
|
||||||
<p>Auf einen monatlichen oder jährlichen Wiederkehrungszyklus eingestellte Rechnungen werden erst im nächsten Monat bzw. Jahr fällig, sofern das Fälligkeitsdatum älter oder gleich dem Erstellungsdatum der Rechnung ist. Am 29. oder 30. eines Monats fällige Rechnungen werden stattdessen am letzten vorhandenen Tag eines Monats fällig, wenn er diese Tage nicht beinhaltet.</p>
|
Auf einen monatlichen oder jährlichen Wiederkehrungszyklus eingestellte Rechnungen werden erst im nächsten Monat bzw. Jahr fällig, sofern das Fälligkeitsdatum älter oder gleich dem Erstellungsdatum der Rechnung ist. Am 29. oder 30. eines Monats fällige Rechnungen werden stattdessen am letzten vorhandenen Tag eines Monats fällig, wenn er diese Tage nicht beinhaltet.
|
||||||
<p>Auf einen wöchentlichen Wiederkehrungszyklus eingestellte Rechnungen, werden erst in der nächsten Woche fällig, wenn der Wochentag mit dem Wochentag des Erstellungsdatums übereinstimmt.</p>
|
Auf einen wöchentlichen Wiederkehrungszyklus eingestellte Rechnungen, werden erst in der nächsten Woche fällig, wenn der Wochentag mit dem Wochentag des Erstellungsdatums übereinstimmt.
|
||||||
<p>Zum Beispiel:</p>
|
Zum Beispiel:
|
||||||
<ul>
|
<ul>
|
||||||
<li>Heute ist der 15. Januar, das Fälligkeitsdatum ist der 1. eines Monats. Das nächste Fälligkeitsdatum entspricht dem 1. des nächsten Monats, also dem 1. Februar.</li>
|
<li>Heute ist der 15. Januar, das Fälligkeitsdatum ist der 1. eines Monats. Das nächste Fälligkeitsdatum entspricht dem 1. des nächsten Monats, also dem 1. Februar.</li>
|
||||||
<li>Heute ist der 15. Januar, das Fälligkeitsdatum ist der letzte Tag eines Monats. Das nächste Fälligkeitsdatum entspricht dem letzten Tag des aktuellen Monats, also dem 31. Januar.
|
<li>Heute ist der 15. Januar, das Fälligkeitsdatum ist der letzte Tag eines Monats. Das nächste Fälligkeitsdatum entspricht dem letzten Tag des aktuellen Monats, also dem 31. Januar.
|
||||||
</li>
|
</li>
|
||||||
<li>Heute ist der 15. Januar, das Fälligkeitsdatum ist der 15. eines Moants. Das nächste Fälligkeitsdatum entspricht dem 15. des <strong>nächsten</strong> Monats, also dem 15. Februar.
|
<li>Heute ist der 15. Januar, das Fälligkeitsdatum ist der 15. eines Moants. Das nächste Fälligkeitsdatum entspricht dem 15. des nächsten Monats, also dem 15. Februar.
|
||||||
</li>
|
</li>
|
||||||
<li>Heute ist Freitag, das Fälligkeitsdatum ist der Freitag einer jeden Woche. Das nächste Fälligkeitsdatum entspricht dem nächsten Freitag, also nicht heute.
|
<li>Heute ist Freitag, das Fälligkeitsdatum ist der Freitag einer jeden Woche. Das nächste Fälligkeitsdatum entspricht dem nächsten Freitag, also nicht heute.
|
||||||
</li>
|
</li>
|
||||||
@ -1342,7 +1342,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'see_whats_new' => 'Neu in v:version',
|
'see_whats_new' => 'Neu in v:version',
|
||||||
'wait_for_upload' => 'Bitte warten Sie bis der Dokumentenupload abgeschlossen wurde.',
|
'wait_for_upload' => 'Bitte warten Sie bis der Dokumentenupload abgeschlossen wurde.',
|
||||||
'upgrade_for_permissions' => 'Führen Sie ein Upgrade auf unseren Enterprise-Plan durch um Zugriffsrechte zu aktivieren.',
|
'upgrade_for_permissions' => 'Führen Sie ein Upgrade auf unseren Enterprise-Plan durch um Zugriffsrechte zu aktivieren.',
|
||||||
'enable_second_tax_rate' => 'Aktiviere Spezifizierung einer <b>zweiten Steuerrate</b>',
|
'enable_second_tax_rate' => 'Aktiviere Spezifizierung einer zweiten Steuerrate',
|
||||||
'payment_file' => 'Zahlungsdatei',
|
'payment_file' => 'Zahlungsdatei',
|
||||||
'expense_file' => 'Ausgabenakte',
|
'expense_file' => 'Ausgabenakte',
|
||||||
'product_file' => 'Produktdatei',
|
'product_file' => 'Produktdatei',
|
||||||
@ -1850,10 +1850,10 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'security_code_email_subject' => 'Sicherheitscode für Invoice Ninja Bot',
|
'security_code_email_subject' => 'Sicherheitscode für Invoice Ninja Bot',
|
||||||
'security_code_email_line1' => 'Dies ist Ihr Invoice Ninja Bot Sicherheitscode.',
|
'security_code_email_line1' => 'Dies ist Ihr Invoice Ninja Bot Sicherheitscode.',
|
||||||
'security_code_email_line2' => 'Anmerkung: Er wird in 10 Minuten ablaufen.',
|
'security_code_email_line2' => 'Anmerkung: Er wird in 10 Minuten ablaufen.',
|
||||||
'bot_help_message' => 'Ich unterstütze derzeit:<br/>• Erstellung\Aktualisierung\E-Mail-Versand von Rechnungen<br/>• Auflistung von Produkten<br/>Zum Beispiel:<br/><i>invoice bob for 2 tickets, set the due date to next thursday and the discount to 10 percent</i>',
|
'bot_help_message' => 'Ich unterstütze derzeit:<br/>• Erstellung\Aktualisierung\E-Mail-Versand von Rechnungen<br/>• Auflistung von Produkten<br/>Zum Beispiel:<br/>invoice bob for 2 tickets, set the due date to next thursday and the discount to 10 percent</i>',
|
||||||
'list_products' => 'Produkte anzeigen',
|
'list_products' => 'Produkte anzeigen',
|
||||||
|
|
||||||
'include_item_taxes_inline' => 'Steuern für Belegpositionen <b>in der Summe anzeigen</b>',
|
'include_item_taxes_inline' => 'Steuern für Belegpositionen in der Summe anzeigen',
|
||||||
'created_quotes' => 'Erfolgreich :count Angebot(e) erstellt',
|
'created_quotes' => 'Erfolgreich :count Angebot(e) erstellt',
|
||||||
'limited_gateways' => 'Anmerkung: Wir unterstützen ein Kreditkarten-Gateway pro Unternehmen.',
|
'limited_gateways' => 'Anmerkung: Wir unterstützen ein Kreditkarten-Gateway pro Unternehmen.',
|
||||||
|
|
||||||
@ -1863,7 +1863,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'update_invoiceninja_warning' => 'Vor dem Update von Invoice Ninja sollte ein Backup der Datenbank und der Dateien erstellt werden!',
|
'update_invoiceninja_warning' => 'Vor dem Update von Invoice Ninja sollte ein Backup der Datenbank und der Dateien erstellt werden!',
|
||||||
'update_invoiceninja_available' => 'Eine neue Version von Invoice Ninja ist verfügbar.',
|
'update_invoiceninja_available' => 'Eine neue Version von Invoice Ninja ist verfügbar.',
|
||||||
'update_invoiceninja_unavailable' => 'Keine neue Version von Invoice Ninja verfügbar.',
|
'update_invoiceninja_unavailable' => 'Keine neue Version von Invoice Ninja verfügbar.',
|
||||||
'update_invoiceninja_instructions' => 'Bitte benutze den <em>Update durchführen</em>-Button, um die neue Version <strong>:version</strong> zu installieren. Du wirst danach zum Dashboard weitergeleitet.',
|
'update_invoiceninja_instructions' => 'Bitte benutze den <em>Update durchführen</em>-Button, um die neue Version :version zu installieren. Du wirst danach zum Dashboard weitergeleitet.',
|
||||||
'update_invoiceninja_update_start' => 'Update durchführen',
|
'update_invoiceninja_update_start' => 'Update durchführen',
|
||||||
'update_invoiceninja_download_start' => 'Download :version',
|
'update_invoiceninja_download_start' => 'Download :version',
|
||||||
'create_new' => 'Neu...',
|
'create_new' => 'Neu...',
|
||||||
@ -1963,7 +1963,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
// BlueVine
|
// BlueVine
|
||||||
'bluevine_promo' => 'Factoring und Bonitätsauskünfte von BlueVine bestellen.',
|
'bluevine_promo' => 'Factoring und Bonitätsauskünfte von BlueVine bestellen.',
|
||||||
'bluevine_modal_label' => 'Anmelden mit BlueVine',
|
'bluevine_modal_label' => 'Anmelden mit BlueVine',
|
||||||
'bluevine_modal_text' => '<h3>Schnelle Finanzierung ohne Papierkram.</h3>
|
'bluevine_modal_text' => 'Schnelle Finanzierung ohne Papierkram.
|
||||||
<ul><li>Flexible Bonitätsprüfung und Factoring.</li></ul>',
|
<ul><li>Flexible Bonitätsprüfung und Factoring.</li></ul>',
|
||||||
'bluevine_create_account' => 'Konto erstellen',
|
'bluevine_create_account' => 'Konto erstellen',
|
||||||
'quote_types' => 'Angebot erhalten für',
|
'quote_types' => 'Angebot erhalten für',
|
||||||
@ -2119,8 +2119,8 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'recipients' => 'Empfänger',
|
'recipients' => 'Empfänger',
|
||||||
'save_as_default' => 'Als Standard speichern',
|
'save_as_default' => 'Als Standard speichern',
|
||||||
'template' => 'Vorlage',
|
'template' => 'Vorlage',
|
||||||
'start_of_week_help' => 'Verwendet von <b>Datums</b>selektoren',
|
'start_of_week_help' => 'Verwendet von Datumsselektoren',
|
||||||
'financial_year_start_help' => 'Verwendet von <b>Datum-Bereichs</b>selektoren',
|
'financial_year_start_help' => 'Verwendet von Datum-Bereichsselektoren',
|
||||||
'reports_help' => 'Shift + Click to sort by multiple columns, Ctrl + Click to clear the grouping.',
|
'reports_help' => 'Shift + Click to sort by multiple columns, Ctrl + Click to clear the grouping.',
|
||||||
'this_year' => 'Dieses Jahr',
|
'this_year' => 'Dieses Jahr',
|
||||||
|
|
||||||
@ -2144,7 +2144,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'freq_two_months' => 'Zwei Monate',
|
'freq_two_months' => 'Zwei Monate',
|
||||||
'freq_yearly' => 'Jährlich',
|
'freq_yearly' => 'Jährlich',
|
||||||
'profile' => 'Profil',
|
'profile' => 'Profil',
|
||||||
'payment_type_help' => 'Setze die Standard <b>manuelle Zahlungsmethode</b>.',
|
'payment_type_help' => 'Setze die Standard manuelle Zahlungsmethode.',
|
||||||
'industry_Construction' => 'Bauwesen',
|
'industry_Construction' => 'Bauwesen',
|
||||||
'your_statement' => 'Deine Abrechnung',
|
'your_statement' => 'Deine Abrechnung',
|
||||||
'statement_issued_to' => 'Abrechnung ausgestellt für',
|
'statement_issued_to' => 'Abrechnung ausgestellt für',
|
||||||
@ -2236,8 +2236,8 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'payment_type_Venmo' => 'Venmo',
|
'payment_type_Venmo' => 'Venmo',
|
||||||
'payment_type_Money Order' => 'Zahlunganweisung',
|
'payment_type_Money Order' => 'Zahlunganweisung',
|
||||||
'archived_products' => 'Archivierung erfolgreich :Produktzähler',
|
'archived_products' => 'Archivierung erfolgreich :Produktzähler',
|
||||||
'recommend_on' => 'Wir empfehlen diese Einstellung zu <b>aktivieren</b>.',
|
'recommend_on' => 'Wir empfehlen diese Einstellung zu aktivieren.',
|
||||||
'recommend_off' => 'Wir empfehlen diese Einstellung zu <b>deaktivieren</b>.',
|
'recommend_off' => 'Wir empfehlen diese Einstellung zu deaktivieren.',
|
||||||
'notes_auto_billed' => 'Automatisch verrechnet',
|
'notes_auto_billed' => 'Automatisch verrechnet',
|
||||||
'surcharge_label' => 'Aufschlagsfeldbezeichnung',
|
'surcharge_label' => 'Aufschlagsfeldbezeichnung',
|
||||||
'contact_fields' => 'Kontaktfelder',
|
'contact_fields' => 'Kontaktfelder',
|
||||||
@ -2325,7 +2325,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'app_version' => 'App-Version',
|
'app_version' => 'App-Version',
|
||||||
'ofx_version' => 'OFX-Version',
|
'ofx_version' => 'OFX-Version',
|
||||||
'gateway_help_23' => ':link um Ihre Stripe API-Keys zu erhalten.',
|
'gateway_help_23' => ':link um Ihre Stripe API-Keys zu erhalten.',
|
||||||
'error_app_key_set_to_default' => 'Fehler: APP_KEY ist auf einen Standardwert gesetzt. Um ihn zu aktualisieren, sichere deine Datenbank und führe dann <code>php artisan ninja:update-key</code> aus',
|
'error_app_key_set_to_default' => 'Fehler: APP_KEY ist auf einen Standardwert gesetzt. Um ihn zu aktualisieren, sichere deine Datenbank und führe dann php artisan ninja:update-key aus',
|
||||||
'charge_late_fee' => 'Verspätungszuschlag berechnen',
|
'charge_late_fee' => 'Verspätungszuschlag berechnen',
|
||||||
'late_fee_amount' => 'Höhe des Verspätungszuschlags',
|
'late_fee_amount' => 'Höhe des Verspätungszuschlags',
|
||||||
'late_fee_percent' => 'Verspätungszuschlag Prozent',
|
'late_fee_percent' => 'Verspätungszuschlag Prozent',
|
||||||
@ -2584,7 +2584,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'subdomain_is_set' => 'subdomain is set',
|
'subdomain_is_set' => 'subdomain is set',
|
||||||
'verification_file' => 'Verifizierungsdatei',
|
'verification_file' => 'Verifizierungsdatei',
|
||||||
'verification_file_missing' => 'The verification file is needed to accept payments.',
|
'verification_file_missing' => 'The verification file is needed to accept payments.',
|
||||||
'apple_pay_domain' => 'Use <code>:domain</code> as the domain in :link.',
|
'apple_pay_domain' => 'Use :domain as the domain in :link.',
|
||||||
'apple_pay_not_supported' => 'Sorry, Apple/Google Pay isn\'t supported by your browser',
|
'apple_pay_not_supported' => 'Sorry, Apple/Google Pay isn\'t supported by your browser',
|
||||||
'optional_payment_methods' => 'Optionale Zahlungsmethoden',
|
'optional_payment_methods' => 'Optionale Zahlungsmethoden',
|
||||||
'add_subscription' => 'Abonnement hinzufügen',
|
'add_subscription' => 'Abonnement hinzufügen',
|
||||||
@ -2635,7 +2635,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'processing_request' => 'Anfrage verarbeiten',
|
'processing_request' => 'Anfrage verarbeiten',
|
||||||
'mcrypt_warning' => 'Warning: Mcrypt is deprecated, run :command to update your cipher.',
|
'mcrypt_warning' => 'Warning: Mcrypt is deprecated, run :command to update your cipher.',
|
||||||
'edit_times' => 'Zeiten bearbeiten',
|
'edit_times' => 'Zeiten bearbeiten',
|
||||||
'inclusive_taxes_help' => 'Include <b>taxes in the cost</b>',
|
'inclusive_taxes_help' => 'Include taxes in the cost',
|
||||||
'inclusive_taxes_notice' => 'This setting can not be changed once an invoice has been created.',
|
'inclusive_taxes_notice' => 'This setting can not be changed once an invoice has been created.',
|
||||||
'inclusive_taxes_warning' => 'Warning: existing invoices will need to be resaved',
|
'inclusive_taxes_warning' => 'Warning: existing invoices will need to be resaved',
|
||||||
'copy_shipping' => 'Copy Shipping',
|
'copy_shipping' => 'Copy Shipping',
|
||||||
@ -2667,7 +2667,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'return_to_login' => 'Zurück zum Login',
|
'return_to_login' => 'Zurück zum Login',
|
||||||
'convert_products_tip' => 'Note: add a :link named ":name" to see the exchange rate.',
|
'convert_products_tip' => 'Note: add a :link named ":name" to see the exchange rate.',
|
||||||
'amount_greater_than_balance' => 'The amount is greater than the invoice balance, a credit will be created with the remaining amount.',
|
'amount_greater_than_balance' => 'The amount is greater than the invoice balance, a credit will be created with the remaining amount.',
|
||||||
'custom_fields_tip' => 'Use <code>Label|Option1,Option2</code> to show a select box.',
|
'custom_fields_tip' => 'Use Label|Option1,Option2 to show a select box.',
|
||||||
'client_information' => 'Client Information',
|
'client_information' => 'Client Information',
|
||||||
'updated_client_details' => 'Successfully updated client details',
|
'updated_client_details' => 'Successfully updated client details',
|
||||||
'auto' => 'Auto',
|
'auto' => 'Auto',
|
||||||
|
@ -72,8 +72,8 @@ return [
|
|||||||
'tax_rates' => 'Tax Rates',
|
'tax_rates' => 'Tax Rates',
|
||||||
'rate' => 'Rate',
|
'rate' => 'Rate',
|
||||||
'settings' => 'Settings',
|
'settings' => 'Settings',
|
||||||
'enable_invoice_tax' => 'Enable specifying an <b>invoice tax</b>',
|
'enable_invoice_tax' => 'Enable specifying an invoice tax',
|
||||||
'enable_line_item_tax' => 'Enable specifying <b>line item taxes</b>',
|
'enable_line_item_tax' => 'Enable specifying line item taxes',
|
||||||
'dashboard' => 'Dashboard',
|
'dashboard' => 'Dashboard',
|
||||||
'dashboard_totals_in_all_currencies_help' => 'Note: add a :link named ":name" to show the totals using a single base currency.',
|
'dashboard_totals_in_all_currencies_help' => 'Note: add a :link named ":name" to show the totals using a single base currency.',
|
||||||
'clients' => 'Clients',
|
'clients' => 'Clients',
|
||||||
@ -100,9 +100,9 @@ return [
|
|||||||
'powered_by' => 'Powered by',
|
'powered_by' => 'Powered by',
|
||||||
'no_items' => 'No items',
|
'no_items' => 'No items',
|
||||||
'recurring_invoices' => 'Recurring Invoices',
|
'recurring_invoices' => 'Recurring Invoices',
|
||||||
'recurring_help' => '<p>Automatically send clients the same invoices weekly, bi-monthly, monthly, quarterly or annually. </p>
|
'recurring_help' => 'Automatically send clients the same invoices weekly, bi-monthly, monthly, quarterly or annually.
|
||||||
<p>Use :MONTH, :QUARTER or :YEAR for dynamic dates. Basic math works as well, for example :MONTH-1.</p>
|
Use :MONTH, :QUARTER or :YEAR for dynamic dates. Basic math works as well, for example :MONTH-1.
|
||||||
<p>Examples of dynamic invoice variables:</p>
|
Examples of dynamic invoice variables:
|
||||||
<ul>
|
<ul>
|
||||||
<li>"Gym membership for the month of :MONTH" >> "Gym membership for the month of July"</li>
|
<li>"Gym membership for the month of :MONTH" >> "Gym membership for the month of July"</li>
|
||||||
<li>":YEAR+1 yearly subscription" >> "2015 Yearly Subscription"</li>
|
<li>":YEAR+1 yearly subscription" >> "2015 Yearly Subscription"</li>
|
||||||
@ -177,12 +177,12 @@ return [
|
|||||||
'payment_gateway' => 'Payment Gateway',
|
'payment_gateway' => 'Payment Gateway',
|
||||||
'gateway_id' => 'Gateway',
|
'gateway_id' => 'Gateway',
|
||||||
'email_notifications' => 'Email Notifications',
|
'email_notifications' => 'Email Notifications',
|
||||||
'email_sent' => 'Email me when an invoice is <b>sent</b>',
|
'email_sent' => 'Email me when an invoice is sent',
|
||||||
'email_viewed' => 'Email me when an invoice is <b>viewed</b>',
|
'email_viewed' => 'Email me when an invoice is viewed',
|
||||||
'email_paid' => 'Email me when an invoice is <b>paid</b>',
|
'email_paid' => 'Email me when an invoice is paid',
|
||||||
'site_updates' => 'Site Updates',
|
'site_updates' => 'Site Updates',
|
||||||
'custom_messages' => 'Custom Messages',
|
'custom_messages' => 'Custom Messages',
|
||||||
'default_email_footer' => 'Set default <b>email signature</b>',
|
'default_email_footer' => 'Set default email signature',
|
||||||
'select_file' => 'Please select a file',
|
'select_file' => 'Please select a file',
|
||||||
'first_row_headers' => 'Use first row as headers',
|
'first_row_headers' => 'Use first row as headers',
|
||||||
'column' => 'Column',
|
'column' => 'Column',
|
||||||
@ -285,11 +285,11 @@ return [
|
|||||||
'erase_data' => 'Your account is not registered, this will permanently erase your data.',
|
'erase_data' => 'Your account is not registered, this will permanently erase your data.',
|
||||||
'password' => 'Password',
|
'password' => 'Password',
|
||||||
'pro_plan_product' => 'Pro Plan',
|
'pro_plan_product' => 'Pro Plan',
|
||||||
'pro_plan_success' => 'Thanks for choosing Invoice Ninja\'s Pro plan!<p/> <br/>
|
'pro_plan_success' => 'Thanks for choosing Invoice Ninja\'s Pro plan! <br/>
|
||||||
<b>Next Steps</b><p/>A payable invoice has been sent to the email
|
Next StepsA payable invoice has been sent to the email
|
||||||
address associated with your account. To unlock all of the awesome
|
address associated with your account. To unlock all of the awesome
|
||||||
Pro features, please follow the instructions on the invoice to pay
|
Pro features, please follow the instructions on the invoice to pay
|
||||||
for a year of Pro-level invoicing.<p/>
|
for a year of Pro-level invoicing.
|
||||||
Can\'t find the invoice? Need further assistance? We\'re happy to help
|
Can\'t find the invoice? Need further assistance? We\'re happy to help
|
||||||
-- email us at contact@invoiceninja.com',
|
-- email us at contact@invoiceninja.com',
|
||||||
'unsaved_changes' => 'You have unsaved changes',
|
'unsaved_changes' => 'You have unsaved changes',
|
||||||
@ -305,9 +305,9 @@ return [
|
|||||||
'product' => 'Product',
|
'product' => 'Product',
|
||||||
'products' => 'Products',
|
'products' => 'Products',
|
||||||
'fill_products' => 'Auto-fill products',
|
'fill_products' => 'Auto-fill products',
|
||||||
'fill_products_help' => 'Selecting a product will automatically <b>fill in the description and cost</b>',
|
'fill_products_help' => 'Selecting a product will automatically fill in the description and cost',
|
||||||
'update_products' => 'Auto-update products',
|
'update_products' => 'Auto-update products',
|
||||||
'update_products_help' => 'Updating an invoice will automatically <b>update the product library</b>',
|
'update_products_help' => 'Updating an invoice will automatically update the product library',
|
||||||
'create_product' => 'Add Product',
|
'create_product' => 'Add Product',
|
||||||
'edit_product' => 'Edit Product',
|
'edit_product' => 'Edit Product',
|
||||||
'archive_product' => 'Archive Product',
|
'archive_product' => 'Archive Product',
|
||||||
@ -514,7 +514,7 @@ return [
|
|||||||
'send_email' => 'Send Email',
|
'send_email' => 'Send Email',
|
||||||
'set_password' => 'Set Password',
|
'set_password' => 'Set Password',
|
||||||
'converted' => 'Converted',
|
'converted' => 'Converted',
|
||||||
'email_approved' => 'Email me when a quote is <b>approved</b>',
|
'email_approved' => 'Email me when a quote is approved',
|
||||||
'notification_quote_approved_subject' => 'Quote :invoice was approved by :client',
|
'notification_quote_approved_subject' => 'Quote :invoice was approved by :client',
|
||||||
'notification_quote_approved' => 'The following client :client approved Quote :invoice for :amount.',
|
'notification_quote_approved' => 'The following client :client approved Quote :invoice for :amount.',
|
||||||
'resend_confirmation' => 'Resend confirmation email',
|
'resend_confirmation' => 'Resend confirmation email',
|
||||||
@ -634,7 +634,7 @@ return [
|
|||||||
'email_error' => 'There was a problem sending the email',
|
'email_error' => 'There was a problem sending the email',
|
||||||
'confirm_recurring_timing' => 'Note: emails are sent at the start of the hour.',
|
'confirm_recurring_timing' => 'Note: emails are sent at the start of the hour.',
|
||||||
'confirm_recurring_timing_not_sent' => 'Note: invoices are created at the start of the hour.',
|
'confirm_recurring_timing_not_sent' => 'Note: invoices are created at the start of the hour.',
|
||||||
'payment_terms_help' => 'Sets the default <b>invoice due date</b>',
|
'payment_terms_help' => 'Sets the default invoice due date',
|
||||||
'unlink_account' => 'Unlink Account',
|
'unlink_account' => 'Unlink Account',
|
||||||
'unlink' => 'Unlink',
|
'unlink' => 'Unlink',
|
||||||
'show_address' => 'Show Address',
|
'show_address' => 'Show Address',
|
||||||
@ -677,8 +677,8 @@ return [
|
|||||||
'created_by_invoice' => 'Created by :invoice',
|
'created_by_invoice' => 'Created by :invoice',
|
||||||
'primary_user' => 'Primary User',
|
'primary_user' => 'Primary User',
|
||||||
'help' => 'Help',
|
'help' => 'Help',
|
||||||
'customize_help' => '<p>We use :pdfmake_link to define the invoice designs declaratively. The pdfmake :playground_link provides a great way to see the library in action.</p>
|
'customize_help' => 'We use :pdfmake_link to define the invoice designs declaratively. The pdfmake :playground_link provides a great way to see the library in action.
|
||||||
<p>If you need help figuring something out post a question to our :forum_link with the design you\'re using.</p>',
|
If you need help figuring something out post a question to our :forum_link with the design you\'re using.',
|
||||||
'playground' => 'playground',
|
'playground' => 'playground',
|
||||||
'support_forum' => 'support forum',
|
'support_forum' => 'support forum',
|
||||||
'invoice_due_date' => 'Due Date',
|
'invoice_due_date' => 'Due Date',
|
||||||
@ -695,7 +695,7 @@ return [
|
|||||||
'status_paid' => 'Paid',
|
'status_paid' => 'Paid',
|
||||||
'status_unpaid' => 'Unpaid',
|
'status_unpaid' => 'Unpaid',
|
||||||
'status_all' => 'All',
|
'status_all' => 'All',
|
||||||
'show_line_item_tax' => 'Display <b>line item taxes inline</b>',
|
'show_line_item_tax' => 'Display line item taxes inline',
|
||||||
'iframe_url' => 'Website',
|
'iframe_url' => 'Website',
|
||||||
'iframe_url_help1' => 'Copy the following code to a page on your site.',
|
'iframe_url_help1' => 'Copy the following code to a page on your site.',
|
||||||
'iframe_url_help2' => 'You can test the feature by clicking \'View as recipient\' for an invoice.',
|
'iframe_url_help2' => 'You can test the feature by clicking \'View as recipient\' for an invoice.',
|
||||||
@ -965,10 +965,10 @@ return [
|
|||||||
'edit_payment_term' => 'Edit Payment Term',
|
'edit_payment_term' => 'Edit Payment Term',
|
||||||
'archive_payment_term' => 'Archive Payment Term',
|
'archive_payment_term' => 'Archive Payment Term',
|
||||||
'recurring_due_dates' => 'Recurring Invoice Due Dates',
|
'recurring_due_dates' => 'Recurring Invoice Due Dates',
|
||||||
'recurring_due_date_help' => '<p>Automatically sets a due date for the invoice.</p>
|
'recurring_due_date_help' => 'Automatically sets a due date for the invoice.
|
||||||
<p>Invoices on a monthly or yearly cycle set to be due on or before the day they are created will be due the next month. Invoices set to be due on the 29th or 30th in months that don\'t have that day will be due the last day of the month.</p>
|
Invoices on a monthly or yearly cycle set to be due on or before the day they are created will be due the next month. Invoices set to be due on the 29th or 30th in months that don\'t have that day will be due the last day of the month.
|
||||||
<p>Invoices on a weekly cycle set to be due on the day of the week they are created will be due the next week.</p>
|
Invoices on a weekly cycle set to be due on the day of the week they are created will be due the next week.
|
||||||
<p>For example:</p>
|
For example:
|
||||||
<ul>
|
<ul>
|
||||||
<li>Today is the 15th, due date is 1st of the month. The due date should likely be the 1st of the next month.</li>
|
<li>Today is the 15th, due date is 1st of the month. The due date should likely be the 1st of the next month.</li>
|
||||||
<li>Today is the 15th, due date is the last day of the month. The due date will be the last day of the this month.
|
<li>Today is the 15th, due date is the last day of the month. The due date will be the last day of the this month.
|
||||||
@ -1377,7 +1377,7 @@ return [
|
|||||||
'see_whats_new' => 'See what\'s new in v:version',
|
'see_whats_new' => 'See what\'s new in v:version',
|
||||||
'wait_for_upload' => 'Please wait for the document upload to complete.',
|
'wait_for_upload' => 'Please wait for the document upload to complete.',
|
||||||
'upgrade_for_permissions' => 'Upgrade to our Enterprise plan to enable permissions.',
|
'upgrade_for_permissions' => 'Upgrade to our Enterprise plan to enable permissions.',
|
||||||
'enable_second_tax_rate' => 'Enable specifying a <b>second tax rate</b>',
|
'enable_second_tax_rate' => 'Enable specifying a second tax rate',
|
||||||
'payment_file' => 'Payment File',
|
'payment_file' => 'Payment File',
|
||||||
'expense_file' => 'Expense File',
|
'expense_file' => 'Expense File',
|
||||||
'product_file' => 'Product File',
|
'product_file' => 'Product File',
|
||||||
@ -1885,10 +1885,10 @@ return [
|
|||||||
'security_code_email_subject' => 'Security code for Invoice Ninja Bot',
|
'security_code_email_subject' => 'Security code for Invoice Ninja Bot',
|
||||||
'security_code_email_line1' => 'This is your Invoice Ninja Bot security code.',
|
'security_code_email_line1' => 'This is your Invoice Ninja Bot security code.',
|
||||||
'security_code_email_line2' => 'Note: it will expire in 10 minutes.',
|
'security_code_email_line2' => 'Note: it will expire in 10 minutes.',
|
||||||
'bot_help_message' => 'I currently support:<br/>• Create\update\email an invoice<br/>• List products<br/>For example:<br/><i>invoice bob for 2 tickets, set the due date to next thursday and the discount to 10 percent</i>',
|
'bot_help_message' => 'I currently support:<br/>• Create\update\email an invoice<br/>• List products<br/>For example:<br/>invoice bob for 2 tickets, set the due date to next thursday and the discount to 10 percent',
|
||||||
'list_products' => 'List Products',
|
'list_products' => 'List Products',
|
||||||
|
|
||||||
'include_item_taxes_inline' => 'Include <b>line item taxes in line total</b>',
|
'include_item_taxes_inline' => 'Include line item taxes in line total',
|
||||||
'created_quotes' => 'Successfully created :count quotes(s)',
|
'created_quotes' => 'Successfully created :count quotes(s)',
|
||||||
'limited_gateways' => 'Note: we support one credit card gateway per company.',
|
'limited_gateways' => 'Note: we support one credit card gateway per company.',
|
||||||
|
|
||||||
@ -1898,7 +1898,7 @@ return [
|
|||||||
'update_invoiceninja_warning' => 'Before start upgrading Invoice Ninja create a backup of your database and files!',
|
'update_invoiceninja_warning' => 'Before start upgrading Invoice Ninja create a backup of your database and files!',
|
||||||
'update_invoiceninja_available' => 'A new version of Invoice Ninja is available.',
|
'update_invoiceninja_available' => 'A new version of Invoice Ninja is available.',
|
||||||
'update_invoiceninja_unavailable' => 'No new version of Invoice Ninja available.',
|
'update_invoiceninja_unavailable' => 'No new version of Invoice Ninja available.',
|
||||||
'update_invoiceninja_instructions' => 'Please install the new version <strong>:version</strong> by clicking the <em>Update now</em> button below. Afterwards you\'ll be redirected to the dashboard.',
|
'update_invoiceninja_instructions' => 'Please install the new version <strong>:version</strong> by clicking the Update now button below. Afterwards you\'ll be redirected to the dashboard.',
|
||||||
'update_invoiceninja_update_start' => 'Update now',
|
'update_invoiceninja_update_start' => 'Update now',
|
||||||
'update_invoiceninja_download_start' => 'Download :version',
|
'update_invoiceninja_download_start' => 'Download :version',
|
||||||
'create_new' => 'Create New',
|
'create_new' => 'Create New',
|
||||||
@ -1999,7 +1999,7 @@ return [
|
|||||||
// BlueVine
|
// BlueVine
|
||||||
'bluevine_promo' => 'Get flexible business lines of credit and invoice factoring using BlueVine.',
|
'bluevine_promo' => 'Get flexible business lines of credit and invoice factoring using BlueVine.',
|
||||||
'bluevine_modal_label' => 'Sign up with BlueVine',
|
'bluevine_modal_label' => 'Sign up with BlueVine',
|
||||||
'bluevine_modal_text' => '<h3>Fast funding for your business. No paperwork.</h3>
|
'bluevine_modal_text' => 'Fast funding for your business. No paperwork.
|
||||||
<ul><li>Flexible business lines of credit and invoice factoring.</li></ul>',
|
<ul><li>Flexible business lines of credit and invoice factoring.</li></ul>',
|
||||||
'bluevine_create_account' => 'Create an account',
|
'bluevine_create_account' => 'Create an account',
|
||||||
'quote_types' => 'Get a quote for',
|
'quote_types' => 'Get a quote for',
|
||||||
@ -2155,8 +2155,8 @@ return [
|
|||||||
'recipients' => 'Recipients',
|
'recipients' => 'Recipients',
|
||||||
'save_as_default' => 'Save as default',
|
'save_as_default' => 'Save as default',
|
||||||
'template' => 'Template',
|
'template' => 'Template',
|
||||||
'start_of_week_help' => 'Used by <b>date</b> selectors',
|
'start_of_week_help' => 'Used by date selectors',
|
||||||
'financial_year_start_help' => 'Used by <b>date range</b> selectors',
|
'financial_year_start_help' => 'Used by date range selectors',
|
||||||
'reports_help' => 'Shift + Click to sort by multiple columns, Ctrl + Click to clear the grouping.',
|
'reports_help' => 'Shift + Click to sort by multiple columns, Ctrl + Click to clear the grouping.',
|
||||||
'this_year' => 'This Year',
|
'this_year' => 'This Year',
|
||||||
|
|
||||||
@ -2180,7 +2180,7 @@ return [
|
|||||||
'freq_two_months' => 'Two months',
|
'freq_two_months' => 'Two months',
|
||||||
'freq_yearly' => 'Annually',
|
'freq_yearly' => 'Annually',
|
||||||
'profile' => 'Profile',
|
'profile' => 'Profile',
|
||||||
'payment_type_help' => 'Sets the default <b>manual payment type</b>.',
|
'payment_type_help' => 'Sets the default manual payment type.',
|
||||||
'industry_Construction' => 'Construction',
|
'industry_Construction' => 'Construction',
|
||||||
'your_statement' => 'Your Statement',
|
'your_statement' => 'Your Statement',
|
||||||
'statement_issued_to' => 'Statement issued to',
|
'statement_issued_to' => 'Statement issued to',
|
||||||
@ -2273,8 +2273,8 @@ return [
|
|||||||
'payment_type_Venmo' => 'Venmo',
|
'payment_type_Venmo' => 'Venmo',
|
||||||
'payment_type_Money Order' => 'Money Order',
|
'payment_type_Money Order' => 'Money Order',
|
||||||
'archived_products' => 'Successfully archived :count products',
|
'archived_products' => 'Successfully archived :count products',
|
||||||
'recommend_on' => 'We recommend <b>enabling</b> this setting.',
|
'recommend_on' => 'We recommend enabling this setting.',
|
||||||
'recommend_off' => 'We recommend <b>disabling</b> this setting.',
|
'recommend_off' => 'We recommend disabling this setting.',
|
||||||
'notes_auto_billed' => 'Auto-billed',
|
'notes_auto_billed' => 'Auto-billed',
|
||||||
'surcharge_label' => 'Surcharge Label',
|
'surcharge_label' => 'Surcharge Label',
|
||||||
'contact_fields' => 'Contact Fields',
|
'contact_fields' => 'Contact Fields',
|
||||||
@ -2362,7 +2362,7 @@ return [
|
|||||||
'app_version' => 'App Version',
|
'app_version' => 'App Version',
|
||||||
'ofx_version' => 'OFX Version',
|
'ofx_version' => 'OFX Version',
|
||||||
'gateway_help_23' => ':link to get your Stripe API keys.',
|
'gateway_help_23' => ':link to get your Stripe API keys.',
|
||||||
'error_app_key_set_to_default' => 'Error: APP_KEY is set to a default value, to update it backup your database and then run <code>php artisan ninja:update-key</code>',
|
'error_app_key_set_to_default' => 'Error: APP_KEY is set to a default value, to update it backup your database and then run php artisan ninja:update-key',
|
||||||
'charge_late_fee' => 'Charge Late Fee',
|
'charge_late_fee' => 'Charge Late Fee',
|
||||||
'late_fee_amount' => 'Late Fee Amount',
|
'late_fee_amount' => 'Late Fee Amount',
|
||||||
'late_fee_percent' => 'Late Fee Percent',
|
'late_fee_percent' => 'Late Fee Percent',
|
||||||
@ -2622,7 +2622,7 @@ return [
|
|||||||
'subdomain_is_set' => 'subdomain is set',
|
'subdomain_is_set' => 'subdomain is set',
|
||||||
'verification_file' => 'Verification File',
|
'verification_file' => 'Verification File',
|
||||||
'verification_file_missing' => 'The verification file is needed to accept payments.',
|
'verification_file_missing' => 'The verification file is needed to accept payments.',
|
||||||
'apple_pay_domain' => 'Use <code>:domain</code> as the domain in :link.',
|
'apple_pay_domain' => 'Use :domain as the domain in :link.',
|
||||||
'apple_pay_not_supported' => 'Sorry, Apple/Google Pay isn\'t supported by your browser',
|
'apple_pay_not_supported' => 'Sorry, Apple/Google Pay isn\'t supported by your browser',
|
||||||
'optional_payment_methods' => 'Optional Payment Methods',
|
'optional_payment_methods' => 'Optional Payment Methods',
|
||||||
'add_subscription' => 'Add Subscription',
|
'add_subscription' => 'Add Subscription',
|
||||||
@ -2674,7 +2674,7 @@ return [
|
|||||||
'processing_request' => 'Processing request',
|
'processing_request' => 'Processing request',
|
||||||
'mcrypt_warning' => 'Warning: Mcrypt is deprecated, run :command to update your cipher.',
|
'mcrypt_warning' => 'Warning: Mcrypt is deprecated, run :command to update your cipher.',
|
||||||
'edit_times' => 'Edit Times',
|
'edit_times' => 'Edit Times',
|
||||||
'inclusive_taxes_help' => 'Include <b>taxes in the cost</b>',
|
'inclusive_taxes_help' => 'Include taxes in the cost',
|
||||||
'inclusive_taxes_notice' => 'This setting can not be changed once an invoice has been created.',
|
'inclusive_taxes_notice' => 'This setting can not be changed once an invoice has been created.',
|
||||||
'inclusive_taxes_warning' => 'Warning: existing invoices will need to be resaved',
|
'inclusive_taxes_warning' => 'Warning: existing invoices will need to be resaved',
|
||||||
'copy_shipping' => 'Copy Shipping',
|
'copy_shipping' => 'Copy Shipping',
|
||||||
@ -2706,7 +2706,7 @@ return [
|
|||||||
'return_to_login' => 'Return to Login',
|
'return_to_login' => 'Return to Login',
|
||||||
'convert_products_tip' => 'Note: add a :link named ":name" to see the exchange rate.',
|
'convert_products_tip' => 'Note: add a :link named ":name" to see the exchange rate.',
|
||||||
'amount_greater_than_balance' => 'The amount is greater than the invoice balance, a credit will be created with the remaining amount.',
|
'amount_greater_than_balance' => 'The amount is greater than the invoice balance, a credit will be created with the remaining amount.',
|
||||||
'custom_fields_tip' => 'Use <code>Label|Option1,Option2</code> to show a select box.',
|
'custom_fields_tip' => 'Use Label|Option1,Option2 to show a select box.',
|
||||||
'client_information' => 'Client Information',
|
'client_information' => 'Client Information',
|
||||||
'client_information_text' => 'Use a permanent address where you can receive mail.',
|
'client_information_text' => 'Use a permanent address where you can receive mail.',
|
||||||
'updated_client_details' => 'Successfully updated client details',
|
'updated_client_details' => 'Successfully updated client details',
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.4.1/css/simple-line-icons.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.4.1/css/simple-line-icons.css">
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
|
||||||
<link rel="canonical" href="{{ config('ninja.app_url') }}{{ request()->path() }}"/>
|
<link rel="canonical" href="{{ config('ninja.app_url') }}/{{ request()->path() }}"/>
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.4.1/css/simple-line-icons.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.4.1/css/simple-line-icons.css">
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
|
||||||
<link rel="canonical" href="{{ config('ninja.app_url') }}{{ request()->path() }}"/>
|
<link rel="canonical" href="{{ config('ninja.app_url') }}/{{ request()->path() }}"/>
|
||||||
<link rel="stylesheet" href="{{ mix('/css/ninja.min.css') }}">
|
<link rel="stylesheet" href="{{ mix('/css/ninja.min.css') }}">
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
@ -58,7 +58,7 @@
|
|||||||
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
|
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
|
||||||
{{-- <link href="{{ mix('favicon.png') }}" rel="shortcut icon" type="image/png"> --}}
|
{{-- <link href="{{ mix('favicon.png') }}" rel="shortcut icon" type="image/png"> --}}
|
||||||
|
|
||||||
<link rel="canonical" href="{{ config('ninja.app_url') }}{{ request()->path() }}"/>
|
<link rel="canonical" href="{{ config('ninja.app_url') }}/{{ request()->path() }}"/>
|
||||||
|
|
||||||
{{-- Feel free to push anything to header using @push('header') --}}
|
{{-- Feel free to push anything to header using @push('header') --}}
|
||||||
@stack('head')
|
@stack('head')
|
||||||
|
@ -64,7 +64,6 @@ Route::group(['middleware' => ['auth:contact', 'locale', 'check_client_existence
|
|||||||
|
|
||||||
Route::get('credits/{credit_invitation}', 'ClientPortal\CreditController@show')->name('credits.show_invitation');
|
Route::get('credits/{credit_invitation}', 'ClientPortal\CreditController@show')->name('credits.show_invitation');
|
||||||
|
|
||||||
|
|
||||||
Route::get('client/switch_company/{contact}', 'ClientPortal\SwitchCompanyController')->name('switch_company');
|
Route::get('client/switch_company/{contact}', 'ClientPortal\SwitchCompanyController')->name('switch_company');
|
||||||
|
|
||||||
Route::post('documents/download_multiple', 'ClientPortal\DocumentController@downloadMultiple')->name('documents.download_multiple');
|
Route::post('documents/download_multiple', 'ClientPortal\DocumentController@downloadMultiple')->name('documents.download_multiple');
|
||||||
@ -84,8 +83,6 @@ Route::group(['middleware' => ['invite_db'], 'prefix' => 'client', 'as' => 'clie
|
|||||||
Route::get('credit/{invitation_key}/download_pdf', 'CreditController@downloadPdf')->name('credit.download_invitation_key');
|
Route::get('credit/{invitation_key}/download_pdf', 'CreditController@downloadPdf')->name('credit.download_invitation_key');
|
||||||
Route::get('{entity}/{invitation_key}/download', 'ClientPortal\InvitationController@routerForDownload');
|
Route::get('{entity}/{invitation_key}/download', 'ClientPortal\InvitationController@routerForDownload');
|
||||||
Route::get('{entity}/{client_hash}/{invitation_key}', 'ClientPortal\InvitationController@routerForIframe')->name('invoice.client_hash_and_invitation_key'); //should never need this
|
Route::get('{entity}/{client_hash}/{invitation_key}', 'ClientPortal\InvitationController@routerForIframe')->name('invoice.client_hash_and_invitation_key'); //should never need this
|
||||||
|
|
||||||
Route::get('payment_hook/{company_gateway_id}/{gateway_type_id}', 'ClientPortal\PaymentHookController@process');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
Route::get('phantom/{entity}/{invitation_key}', '\App\Utils\PhantomJS\Phantom@displayInvitation')->middleware(['invite_db', 'phantom_secret'])->name('phantom_view');
|
Route::get('phantom/{entity}/{invitation_key}', '\App\Utils\PhantomJS\Phantom@displayInvitation')->middleware(['invite_db', 'phantom_secret'])->name('phantom_view');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user