diff --git a/app/Models/License.php b/app/Models/License.php index 52cc743107..3ec26eb7f4 100644 --- a/app/Models/License.php +++ b/app/Models/License.php @@ -92,7 +92,7 @@ class License extends StaticModel */ public function e_invoicing_tokens() { - return $this->hasMany(EInvoicingToken::class, 'license_key', 'license_key'); + return $this->hasMany(EInvoicingToken::class, 'license', 'license_key'); } /** diff --git a/lang/en/texts.php b/lang/en/texts.php index bdb4e06a97..604f8a3f87 100644 --- a/lang/en/texts.php +++ b/lang/en/texts.php @@ -5477,8 +5477,9 @@ $lang = array( 'download_ready' => 'Your Download is now ready! [ :message ]', 'notification_quote_reminder1_sent_subject' => 'Reminder 1 for Quote :invoice was sent to :client', 'custom_reminder_sent' => 'Custom reminder was sent to :client', - 'use_system_fonts' => 'Use browser default fonts', + 'use_system_fonts' => 'Use System Fonts', 'use_system_fonts_help' => 'Override the standard fonts with those from the web browser', + 'active_tasks' => 'Active Tasks', ); return $lang;