Updated lang files
This commit is contained in:
parent
3c079bbe71
commit
1a9ba4742a
|
|
@ -1 +1 @@
|
|||
5.11.80
|
||||
5.11.81
|
||||
|
|
@ -74,6 +74,7 @@ use Laracasts\Presenter\PresentableTrait;
|
|||
* @property string|null $bank_integration_account_id
|
||||
* @property bool $is_trial
|
||||
* @property int $e_invoice_quota
|
||||
* @property int $docuninja_num_users
|
||||
* @property-read int|null $bank_integrations_count
|
||||
* @property-read int|null $companies_count
|
||||
* @property-read int|null $company_users_count
|
||||
|
|
|
|||
|
|
@ -97,6 +97,7 @@ class AccountTransformer extends EntityTransformer
|
|||
'upload_extensions' => (string) "png,ai,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx,webp,xml,zip,csv,ods,odt,odp,".config('ninja.upload_extensions'),
|
||||
'e_invoice_quota' => (int) $account->e_invoice_quota,
|
||||
'can_trial' => (bool) $account->canTrial(),
|
||||
'docuninja_num_users' => (int) $account->docuninja_num_users,
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -116,8 +116,7 @@
|
|||
"twig/twig": "^3.14",
|
||||
"twilio/sdk": "^6.40",
|
||||
"wikimedia/composer-merge-plugin": "^2.1",
|
||||
"wildbit/postmark-php": "^4.0",
|
||||
"invoiceninja/admin-api": "dev-main"
|
||||
"wildbit/postmark-php": "^4.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"barryvdh/laravel-debugbar": "^3.6",
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -17,8 +17,8 @@ return [
|
|||
'require_https' => env('REQUIRE_HTTPS', true),
|
||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||
'app_version' => env('APP_VERSION', '5.11.80'),
|
||||
'app_tag' => env('APP_TAG', '5.11.80'),
|
||||
'app_version' => env('APP_VERSION', '5.11.81'),
|
||||
'app_tag' => env('APP_TAG', '5.11.81'),
|
||||
'minimum_client_version' => '5.0.16',
|
||||
'terms_version' => '1.0.1',
|
||||
'api_secret' => env('API_SECRET', false),
|
||||
|
|
|
|||
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('accounts', function (Blueprint $table) {
|
||||
$table->unsignedInteger('docuninja_num_users')->default(0);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
//
|
||||
}
|
||||
};
|
||||
|
|
@ -5548,8 +5548,8 @@ $lang = array(
|
|||
'pro_plan_feature_18' => 'Auto Sales Tax Calculation (US States)',
|
||||
'enterprise_plan_feature_1' => 'Additional Account Users & Permissions',
|
||||
'enterprise_plan_feature_2' => 'Upload & Attach Files',
|
||||
'enterprise_plan_feature_3' => 'Custom Portal Domain: "Billing.YourCompany.com"',
|
||||
'enterprise_plan_feature_4' => 'Connect your bank accounts for syncing',
|
||||
'enterprise_plan_feature_3' => 'Custom Portal Domain',
|
||||
'enterprise_plan_feature_4' => 'Bank account sync',
|
||||
'premium_business_plus_feature_1' => 'Developer Concierge',
|
||||
'premium_business_plus_feature_2' => 'Direct Priority Support',
|
||||
'premium_business_plus_feature_3' => 'Invoice Design Service',
|
||||
|
|
@ -5584,6 +5584,7 @@ $lang = array(
|
|||
'existing_gateway' => 'Gateway already exists',
|
||||
'activity_150' => 'Account deleted :notes',
|
||||
'docuninja' => 'DocuNinja',
|
||||
'pro_rata' => 'Pro Rata',
|
||||
);
|
||||
|
||||
return $lang;
|
||||
|
|
|
|||
Loading…
Reference in New Issue