From 61f09e1ad43d50051a523b35db04858ed84d9868 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 15 Jun 2024 10:03:25 +1000 Subject: [PATCH] code comments --- app/Services/Client/PaymentMethod.php | 23 +---------- lang/ar/texts.php | 4 +- lang/ca/texts.php | 4 +- lang/da/texts.php | 4 +- lang/de/texts.php | 4 +- lang/es/texts.php | 4 +- lang/es_ES/texts.php | 4 +- lang/fr/texts.php | 4 +- lang/fr_CA/texts.php | 2 +- lang/fr_CH/texts.php | 4 +- lang/he/texts.php | 4 +- lang/hu/texts.php | 4 +- lang/it/texts.php | 4 +- lang/km_KH/texts.php | 4 +- lang/lo_LA/texts.php | 58 +++++++++++++-------------- lang/nl/texts.php | 4 +- lang/pt_BR/texts.php | 4 +- lang/pt_PT/texts.php | 4 +- lang/ro/texts.php | 4 +- lang/sk/texts.php | 4 +- lang/sv/texts.php | 4 +- lang/zh_TW/texts.php | 4 +- 22 files changed, 70 insertions(+), 89 deletions(-) diff --git a/app/Services/Client/PaymentMethod.php b/app/Services/Client/PaymentMethod.php index 25f8091a4131..b2cd9214ffd4 100644 --- a/app/Services/Client/PaymentMethod.php +++ b/app/Services/Client/PaymentMethod.php @@ -61,10 +61,11 @@ class PaymentMethod { $company_gateways = $this->client->getSetting('company_gateway_ids'); - //we need to check for "0" here as we disable a payment gateway for a client with the number "0" + // We need to check for "0" here as we disable a payment gateway for a client with the number "0" if ($company_gateways || $company_gateways == '0') { $transformed_ids = $this->transformKeys(explode(',', $company_gateways)); + //gateways disabled if($company_gateways == '0') { $transformed_ids = []; } @@ -80,26 +81,6 @@ class PaymentMethod return array_search($model->id, $transformed_ids); // this closure sorts for us }); - //2023-10-11 - Roll back, do not show any gateways, if they have been archived upstream. - //removing this logic now to prevent any - // if($this->gateways->count() == 0 && count($transformed_ids) >=1) { - - // /** - // * This is a fallback in case a user archives some gateways that have been ordered preferentially. - // * - // * If the user archives a parent gateway upstream, it may leave a client setting in a state where no payment gateways are available. - // * - // * In this case we fall back to all gateways. - // */ - // $this->gateways = CompanyGateway::query() - // ->with('gateway') - // ->where('company_id', $this->client->company_id) - // ->where('gateway_key', '!=', '54faab2ab6e3223dbe848b1686490baa') - // ->whereNull('deleted_at') - // ->where('is_deleted', false)->get(); - - // } - } else { $this->gateways = CompanyGateway::query() ->with('gateway') diff --git a/lang/ar/texts.php b/lang/ar/texts.php index 96182c97c3c7..7de2e7d1e491 100644 --- a/lang/ar/texts.php +++ b/lang/ar/texts.php @@ -2676,7 +2676,7 @@ $lang = array( 'no_assets' => 'لا توجد صور ، اسحب للتحميل', 'add_image' => 'إضافة صورة', 'select_image' => 'اختر صورة', - 'upgrade_to_upload_images' => 'قم بالترقية إلى خطة المؤسسة لتحميل الصور', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'حذف صورة', 'delete_image_help' => 'تحذير: سيؤدي حذف الصورة إلى إزالتها من جميع المقترحات.', 'amount_variable_help' => 'ملاحظة: سيستخدم حقل مبلغ الفاتورة $ الحقل الجزئي / الإيداع إذا تم تعيينه وإلا فسيستخدم رصيد الفاتورة.', @@ -4418,7 +4418,7 @@ $lang = array( 'client_shipping_country' => 'بلد شحن العميل', 'load_pdf' => 'قم بتحميل ملف PDF', 'start_free_trial' => 'ابدأ الإصدار التجريبي المجاني', - 'start_free_trial_message' => 'ابدأ تجربتك المجانية لمدة 14 يومًا من الخطة الاحترافية', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'المستحقة على إيصال', 'is_paid' => 'مدفوع', 'age_group_paid' => 'مدفوع', diff --git a/lang/ca/texts.php b/lang/ca/texts.php index 1ea46d3f2524..07ff822ace02 100644 --- a/lang/ca/texts.php +++ b/lang/ca/texts.php @@ -2695,7 +2695,7 @@ $lang = array( 'no_assets' => 'No images, drag to upload', 'add_image' => 'Add Image', 'select_image' => 'Tria imatge', - 'upgrade_to_upload_images' => 'Actualitzeu al pla empresarial per penjar imatges', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Esborra imatge', 'delete_image_help' => 'Warning: deleting the image will remove it from all proposals.', 'amount_variable_help' => 'Note: the invoice $amount field will use the partial/deposit field if set otherwise it will use the invoice balance.', @@ -4437,7 +4437,7 @@ $lang = array( 'client_shipping_country' => 'Client Shipping Country', 'load_pdf' => 'Load PDF', 'start_free_trial' => 'Start Free Trial', - 'start_free_trial_message' => 'Start your FREE 14 day trial of the pro plan', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Due on Receipt', 'is_paid' => 'Is Paid', 'age_group_paid' => 'Paid', diff --git a/lang/da/texts.php b/lang/da/texts.php index 9b6d9e84defc..df4dc4f1fe5d 100644 --- a/lang/da/texts.php +++ b/lang/da/texts.php @@ -2694,7 +2694,7 @@ $lang = array( 'no_assets' => 'Ingen billeder, træk for at uploade', 'add_image' => 'Tilføj billede', 'select_image' => 'Vælg Billede', - 'upgrade_to_upload_images' => 'Opgrader til Enterprise Plan for at uploade billeder', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Slet billede', 'delete_image_help' => 'Advarsel: Hvis du sletter billedet, fjernes det fra alle forslag.', 'amount_variable_help' => 'Bemærk : Faktura $ Beløb feltet vil bruge del-/indbetalingsfeltet, hvis det er angivet, ellers vil det bruge Faktura saldoen.', @@ -4436,7 +4436,7 @@ $lang = array( 'client_shipping_country' => 'Klient forsendelsesland', 'load_pdf' => 'Indlæs PDF', 'start_free_trial' => 'Start gratis prøveperiode', - 'start_free_trial_message' => 'Start din GRATIS 14 dages prøveversion af pro-planen', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Forfalder ved modtagelse', 'is_paid' => 'Er betalt', 'age_group_paid' => 'Betalt', diff --git a/lang/de/texts.php b/lang/de/texts.php index 2e74c0e0aed6..83575735e1ed 100644 --- a/lang/de/texts.php +++ b/lang/de/texts.php @@ -2696,7 +2696,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese 'no_assets' => 'Keine Bilder, hierhin ziehen zum hochladen', 'add_image' => 'Bild hinzufügen', 'select_image' => 'Bild auswählen', - 'upgrade_to_upload_images' => 'Aktualisieren Sie zum Hochladen von Bildern auf den Enterprise-Plan', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Bild löschen', 'delete_image_help' => 'Warnung: Wenn Sie das Bild löschen, wird es aus allen Vorschlägen entfernt.', 'amount_variable_help' => 'Hinweis: Das Rechnungsfeld $amount verwendet das Feld Teil-/Anzahlung. Wenn nicht anders eingestellt, wird der Rechnungsbetrag verwendet.', @@ -4439,7 +4439,7 @@ https://invoiceninja.github.io/docs/migration/#troubleshooting', 'client_shipping_country' => 'Kunde Lieferung LAND', 'load_pdf' => 'PDF laden', 'start_free_trial' => 'Kostenlose Testversion starten', - 'start_free_trial_message' => 'Teste den Pro-Tarif GRATIS für 14 Tage', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Fällig bei Erhalt', 'is_paid' => 'Ist bezahlt', 'age_group_paid' => 'Bezahlt', diff --git a/lang/es/texts.php b/lang/es/texts.php index a3a2df83401f..0cc1d8c1a34c 100644 --- a/lang/es/texts.php +++ b/lang/es/texts.php @@ -2694,7 +2694,7 @@ $lang = array( 'no_assets' => 'No hay imágenes, arrastre para cargar', 'add_image' => 'Añadir imagen', 'select_image' => 'Seleccionar imagen', - 'upgrade_to_upload_images' => 'Actualiza al Plan Enterprise para subir imágenes', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Eliminar Imagen', 'delete_image_help' => 'Advertencia: al eliminar la imagen, se eliminará de todas las propuestas.', 'amount_variable_help' => 'Nota: el campo de monto de $ de la factura usará el campo de depósito/parcial si se configura; de lo contrario, usará el saldo de la factura.', @@ -4436,7 +4436,7 @@ $lang = array( 'client_shipping_country' => 'País de envío del cliente', 'load_pdf' => 'Cargar PDF', 'start_free_trial' => 'Empiza la prueba gratuita', - 'start_free_trial_message' => 'Comience su prueba GRATUITA de 14 días del plan profesional', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Debido a la recepción', 'is_paid' => 'Está pagado', 'age_group_paid' => 'Pagado', diff --git a/lang/es_ES/texts.php b/lang/es_ES/texts.php index 499b1b1a8a00..c8a26a3abe21 100644 --- a/lang/es_ES/texts.php +++ b/lang/es_ES/texts.php @@ -2691,7 +2691,7 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c 'no_assets' => 'Sin imágenes, arrastra aquí para subir', 'add_image' => 'Añadir Imagen', 'select_image' => 'Seleccionar Imagen', - 'upgrade_to_upload_images' => 'Actualiza al Plan Enterprise para subir imágenes', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Borrar Imagen', 'delete_image_help' => 'Atención: borrar la imagen la eliminará de todas las propuestas.', 'amount_variable_help' => 'Nota: el campo de la factura $amount usará el campo parcial/depósito si se indica, de otra forma se usará el balance de la factura.', @@ -4433,7 +4433,7 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c 'client_shipping_country' => 'País de envío del cliente', 'load_pdf' => 'Cargar PDF', 'start_free_trial' => 'Iniciar prueba gratuita', - 'start_free_trial_message' => 'Comience su prueba GRATUITA de 14 días del plan profesional', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Adeudado a la recepción', 'is_paid' => 'Está pagado', 'age_group_paid' => 'Pagado', diff --git a/lang/fr/texts.php b/lang/fr/texts.php index 39dbd514add6..46957138dc48 100644 --- a/lang/fr/texts.php +++ b/lang/fr/texts.php @@ -2695,7 +2695,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette 'no_assets' => 'Aucune image, faites glisser pour envoyer', 'add_image' => 'Ajouter une image', 'select_image' => 'Sélectionner une image', - 'upgrade_to_upload_images' => 'Passez au plan Entreprise pour télécharger des images', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Supprimer l\'image', 'delete_image_help' => 'Attention : supprimer l\'image la retirera de toutes les propositions.', 'amount_variable_help' => 'Note: le champ $amount de la facture utilisera le champ d\'acompte. Il utilisera le solde de la facture, si spécifié autrement.', @@ -4437,7 +4437,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette 'client_shipping_country' => 'Pays d\'expédition du client', 'load_pdf' => 'Charger le PDF', 'start_free_trial' => 'Commencer l\'essai gratuit', - 'start_free_trial_message' => 'Commencez votre essai GRATUIT de 14 jours du plan pro', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Payable à réception', 'is_paid' => 'Est payé', 'age_group_paid' => 'Payé', diff --git a/lang/fr_CA/texts.php b/lang/fr_CA/texts.php index 30daffbd8bbc..4f89ea736773 100644 --- a/lang/fr_CA/texts.php +++ b/lang/fr_CA/texts.php @@ -2692,7 +2692,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette 'no_assets' => 'Aucune image, glisser-déposer pour la téléverser', 'add_image' => 'Ajouter une image', 'select_image' => 'Sélectionner une image', - 'upgrade_to_upload_images' => 'Passer au plan Entreprise pour téléverser des images', + 'upgrade_to_upload_images' => 'Passer au plan Entreprise pour téléverser des images et des fichiers', 'delete_image' => 'Supprimer une image', 'delete_image_help' => 'Avertissement: la suppression de cette image va la supprimer de toutes les propositions.', 'amount_variable_help' => 'Note: le champ $amount de la facture utilisera le champ partiel/dépôt. Il utilisera le solde de la facture, si spécifié autrement.', diff --git a/lang/fr_CH/texts.php b/lang/fr_CH/texts.php index 8fbd588b87df..c0c848899595 100644 --- a/lang/fr_CH/texts.php +++ b/lang/fr_CH/texts.php @@ -2692,7 +2692,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette 'no_assets' => 'Aucune image, glisser-déposer pour la téléverser', 'add_image' => 'Ajouter une image', 'select_image' => 'Sélectionner une image', - 'upgrade_to_upload_images' => 'Passez au plan Entreprise pour télécharger des images', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Supprimer une image', 'delete_image_help' => 'Avertissement: la suppression de cette image va la supprimer de toutes les propositions.', 'amount_variable_help' => 'Note: le champ $amount de la facture utilisera le champ partiel/dépôt. Il utilisera le solde de la facture, si spécifié autrement.', @@ -4434,7 +4434,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette 'client_shipping_country' => 'Client Shipping Country', 'load_pdf' => 'Load PDF', 'start_free_trial' => 'Start Free Trial', - 'start_free_trial_message' => 'Start your FREE 14 day trial of the pro plan', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Due on Receipt', 'is_paid' => 'Is Paid', 'age_group_paid' => 'Paid', diff --git a/lang/he/texts.php b/lang/he/texts.php index fe65b742ae5f..85ea250aca9b 100644 --- a/lang/he/texts.php +++ b/lang/he/texts.php @@ -2693,7 +2693,7 @@ $lang = array( 'no_assets' => 'אין תמונה, גרור תמונות להעלאה ', 'add_image' => 'הוספת תמונה', 'select_image' => 'בחירת תמונה', - 'upgrade_to_upload_images' => 'שדרג לתוכנית Enterprise כדי להעלות תמונות', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'מחיקת תמונה', 'delete_image_help' => 'אזהרה: מחיקת התמונה תסיר אותה מכל ההצעות.', 'amount_variable_help' => 'Note: the invoice $amount field will use the partial/deposit field if set otherwise it will use the invoice balance.', @@ -4435,7 +4435,7 @@ $lang = array( 'client_shipping_country' => 'ארץ משלוח ללקוח', 'load_pdf' => 'טען PDF', 'start_free_trial' => 'להתחיל ניסיון ללא תשלום', - 'start_free_trial_message' => 'התחל את 14 ימי הניסיון שלך בחינם של תוכנית המקצוענים', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'לפירעון בקבלה', 'is_paid' => 'שולם', 'age_group_paid' => 'שולם', diff --git a/lang/hu/texts.php b/lang/hu/texts.php index c286d8f7402a..a932fd05b79a 100644 --- a/lang/hu/texts.php +++ b/lang/hu/texts.php @@ -2679,7 +2679,7 @@ adva :date', 'no_assets' => 'Nincsenek eszközök', 'add_image' => 'Kép hozzáadása', 'select_image' => 'Kép kiválasztása', - 'upgrade_to_upload_images' => 'A képek feltöltéséhez frissítsen az Vállalati tervre', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Kép törlése', 'delete_image_help' => 'Törlés esetén a kép mindenhol eltávolításra kerül.', 'amount_variable_help' => 'Megjegyzés: az összeg változó automatikusan beállítódik a maradék összegre, ha az előzetes befizetés mező nem üres.', @@ -4421,7 +4421,7 @@ adva :date', 'client_shipping_country' => 'Ügyfél szállítási országa', 'load_pdf' => 'PDF betöltése', 'start_free_trial' => 'Ingyenes próbaverzió indítása', - 'start_free_trial_message' => 'Ingyenes próbaverzió indításának üzenete', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Esedékes a fogadáskor', 'is_paid' => 'Fizetett', 'age_group_paid' => 'Fizetett korcsoport', diff --git a/lang/it/texts.php b/lang/it/texts.php index f63d8e3114d8..f3b397946071 100644 --- a/lang/it/texts.php +++ b/lang/it/texts.php @@ -2686,7 +2686,7 @@ $lang = array( 'no_assets' => 'Nessuna immagine, trascinare per caricare', 'add_image' => 'Aggiungi Immagine', 'select_image' => 'Seleziona Immagine', - 'upgrade_to_upload_images' => 'Passa al piano Enterprise per caricare le immagini', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Cancella Immagine', 'delete_image_help' => 'Attenzione: l'eliminazione dell'immagine la rimuoverà da tutte le proposte.', 'amount_variable_help' => 'Nota: il campo $amount della fattura userà il campo parziale/deposito se impostato, altrimenti verrà usato il saldo della fattura.', @@ -4428,7 +4428,7 @@ $lang = array( 'client_shipping_country' => 'Paese di spedizione del cliente', 'load_pdf' => 'Carica PDF', 'start_free_trial' => 'Inizia la prova gratuita', - 'start_free_trial_message' => 'Inizia la tua prova GRATUITA di 14 giorni del piano pro', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Dovuto al ricevimento', 'is_paid' => 'È pagato', 'age_group_paid' => 'Pagato', diff --git a/lang/km_KH/texts.php b/lang/km_KH/texts.php index 81ca4d67ea80..a0f8f9b411dd 100644 --- a/lang/km_KH/texts.php +++ b/lang/km_KH/texts.php @@ -2675,7 +2675,7 @@ $lang = array( 'no_assets' => 'គ្មានរូបភាព អូសដើម្បីបង្ហោះ', 'add_image' => 'បន្ថែមរូបភាព', 'select_image' => 'ជ្រើសរើសរូបភាព', - 'upgrade_to_upload_images' => 'ដំឡើងកំណែទៅផែនការសហគ្រាស ដើម្បីបង្ហោះរូបភាព', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'លុបរូបភាព', 'delete_image_help' => 'ការព្រមាន៖ ការលុបរូបភាពនឹងលុបវាចេញពីសំណើទាំងអស់។', 'amount_variable_help' => 'ចំណាំ៖ វាលវិក្កយបត្រ $amount នឹងប្រើផ្នែកខ្លះ/កន្លែងដាក់ប្រាក់ ប្រសិនបើកំណត់បើមិនដូច្នេះទេ វានឹងប្រើសមតុល្យវិក្កយបត្រ។', @@ -4417,7 +4417,7 @@ $lang = array( 'client_shipping_country' => 'ប្រទេសដឹកជញ្ជូនអតិថិជន', 'load_pdf' => 'ផ្ទុកឯកសារ PDF', 'start_free_trial' => 'ចាប់ផ្តើមការសាកល្បងឥតគិតថ្លៃ', - 'start_free_trial_message' => 'ចាប់ផ្តើមការសាកល្បងឥតគិតថ្លៃរយៈពេល 14 ថ្ងៃនៃគម្រោងគាំទ្ររបស់អ្នក។', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'ដល់ពេលទទួល', 'is_paid' => 'ត្រូវបានបង់', 'age_group_paid' => 'បង់', diff --git a/lang/lo_LA/texts.php b/lang/lo_LA/texts.php index 00adc2be6f19..3fab708c8e0f 100644 --- a/lang/lo_LA/texts.php +++ b/lang/lo_LA/texts.php @@ -2197,7 +2197,7 @@ $lang = array( 'mailgun_private_key' => 'ກະແຈສ່ວນຕົວຂອງ Mailgun', 'brevo_domain' => 'ໂດເມນ Brevo', 'brevo_private_key' => 'ກະແຈສ່ວນຕົວ Brevo', - 'send_test_email' => 'Send Test Email', + 'send_test_email' => 'ສົ່ງອີເມວທົດສອບ', 'select_label' => 'ເລືອກປ້າຍກຳກັບ', 'label' => 'ປ້າຍກຳກັບ', 'service' => 'ບໍລິການ', @@ -2695,7 +2695,7 @@ $lang = array( 'no_assets' => 'ບໍ່ມີຮູບພາບ, ລາກເພື່ອອັບໂຫລດ', 'add_image' => 'ເພີ່ມຮູບ', 'select_image' => 'ເລືອກຮູບ', - 'upgrade_to_upload_images' => 'ອັບເກຣດເປັນແຜນວິສາຫະກິດເພື່ອອັບໂຫລດຮູບພາບ', + 'upgrade_to_upload_images' => 'ອັບເກຣດເປັນແຜນວິສາຫະກິດເພື່ອອັບໂຫລດໄຟລ໌ ແລະຮູບພາບ', 'delete_image' => 'ລຶບຮູບພາບ', 'delete_image_help' => 'ຄຳເຕືອນ: ການລຶບຮູບພາບຈະລຶບມັນອອກຈາກທຸກຂໍ້ສະເໜີ.', 'amount_variable_help' => 'ໝາຍເຫດ: ຊ່ອງໃບແຈ້ງໜີ້ $amount ຈະໃຊ້ຊ່ອງໃສ່ບາງສ່ວນ/ການຝາກເງິນ ຖ້າຕັ້ງໄວ້ຖ້າບໍ່ດັ່ງນັ້ນມັນຈະໃຊ້ຍອດເງິນໃນໃບແຈ້ງໜີ້.', @@ -4029,7 +4029,7 @@ $lang = array( 'user_detached' => 'ຜູ້ໃຊ້ຖືກແຍກອອກຈາກບໍລິສັດ', 'create_webhook_failure' => 'ລົ້ມເຫລວໃນການສ້າງ Webhook', 'payment_message_extended' => 'ຂໍຂອບໃຈສຳລັບການຈ່າຍເງິນ:ຈຳນວນເງິນ:ໃບແຈ້ງໜີ້', - 'online_payments_minimum_note' => 'Note: Online payments are supported only if amount is larger than $1 or currency equivalent.', + 'online_payments_minimum_note' => 'ໝາຍເຫດ: ການຈ່າຍເງິນອອນລາຍແມ່ນຮອງຮັບໄດ້ພຽງແຕ່ຖ້າຈຳນວນເງິນໃຫຍ່ກວ່າ $1 ຫຼື ທຽບເທົ່າສະກຸນເງິນເທົ່ານັ້ນ.', 'payment_token_not_found' => 'ບໍ່ພົບໂທເຄັນການຈ່າຍເງິນ, ກະລຸນາລອງໃໝ່ອີກຄັ້ງ. ຖ້າບັນຫາຍັງຄົງຢູ່, ໃຫ້ລອງໃຊ້ວິທີຈ່າຍເງິນອື່ນ', 'vendor_address1' => 'ຖະໜົນຜູ້ຂາຍ', 'vendor_address2' => 'ຜູ້ຂາຍ Apt/Suite', @@ -4170,7 +4170,7 @@ $lang = array( 'one_time_purchases' => 'ຊື້ຄັ້ງດຽວ', 'recurring_purchases' => 'ການຊື້ຊໍ້າ', 'you_might_be_interested_in_following' => 'ເຈົ້າອາດຈະສົນໃຈສິ່ງຕໍ່ໄປນີ້', - 'quotes_with_status_sent_can_be_approved' => 'Only quotes with "Sent" status can be approved. Expired quotes cannot be approved.', + 'quotes_with_status_sent_can_be_approved' => 'ມີພຽງແຕ່ວົງຢືມທີ່ມີສະຖານະ "ສົ່ງ" ເທົ່ານັ້ນທີ່ສາມາດອະນຸມັດໄດ້. ວົງຢືມໝົດອາຍຸບໍ່ສາມາດອະນຸມັດໄດ້.', 'no_quotes_available_for_download' => 'ບໍ່ມີວົງຢືມທີ່ສາມາດດາວໂຫລດໄດ້.', 'copyright' => 'ລິຂະສິດ', 'user_created_user' => ':ຜູ້ໃຊ້ສ້າງ :created_user at :time', @@ -4437,7 +4437,7 @@ $lang = array( 'client_shipping_country' => 'ລູກຄ້າຈັດສົ່ງປະເທດ', 'load_pdf' => 'ໂຫລດ PDF', 'start_free_trial' => 'ເລີ່ມທົດລອງໃຊ້ຟຣີ', - 'start_free_trial_message' => 'ເລີ່ມການທົດລອງໃຊ້ຟຣີ 14 ມື້ຂອງແຜນການສົ່ງເສີມຂອງທ່ານ', + 'start_free_trial_message' => 'ເລີ່ມການທົດລອງໃຊ້ Pro Plan ຟຣີ 14 ມື້ຂອງທ່ານ', 'due_on_receipt' => 'ຄົບກຳນົດໃນໃບຮັບເງິນ', 'is_paid' => 'ໄດ້ຈ່າຍແລ້ວ', 'age_group_paid' => 'ຈ່າຍແລ້ວ', @@ -5147,7 +5147,7 @@ $lang = array( 'payment_refund_receipt' => 'ໃບຮັບເງິນຄືນການຈ່າຍເງິນ # : ໝາຍເລກ', 'payment_receipt' => 'ໃບຮັບເງິນ # : ໝາຍເລກ', 'load_template_description' => 'ແມ່ແບບຈະຖືກນໍາໃຊ້ກັບດັ່ງຕໍ່ໄປນີ້:', - 'run_template' => 'Run Template', + 'run_template' => 'ແລ່ນແມ່ແບບ', 'statement_design' => 'ການອອກແບບຖະແຫຼງການ', 'delivery_note_design' => 'ການອອກແບບບັນທຶກການຈັດສົ່ງ', 'payment_receipt_design' => 'ການອອກແບບໃບຮັບເງິນ', @@ -5296,23 +5296,23 @@ $lang = array( 'rappen_rounding' => 'Rappen Rounding', 'rappen_rounding_help' => 'ຈໍານວນຮອບເປັນ 5 ເຊັນ', 'assign_group' => 'ກຳນົດກຸ່ມ', - 'paypal_advanced_cards' => 'Advanced Card Payments', + 'paypal_advanced_cards' => 'ການຈ່າຍເງິນບັດຂັ້ນສູງ', 'local_domain_help' => 'EHLO domain (optional)', 'port_help' => 'ie. 25,587,465', 'host_help' => 'ie. smtp.gmail.com', - 'always_show_required_fields' => 'Allows show required fields form', - 'always_show_required_fields_help' => 'Displays the required fields form always at checkout', - 'advanced_cards' => 'Advanced Cards', + 'always_show_required_fields' => 'ອະນຸຍາດໃຫ້ສະແດງແບບຟອມທີ່ຕ້ອງການ', + 'always_show_required_fields_help' => 'ສະແດງແບບຟອມຊ່ອງຂໍ້ມູນທີ່ຕ້ອງການຢູ່ສະເໝີໃນເວລາຈ່າຍເງິນ', + 'advanced_cards' => 'ບັດຂັ້ນສູງ', 'activity_140' => 'Statement sent to :client', - 'invoice_net_amount' => 'Invoice Net Amount', - 'round_to_minutes' => 'Round To Minutes', - '1_second' => '1 Second', - '1_minute' => '1 Minute', - '5_minutes' => '5 Minutes', - '15_minutes' => '15 Minutes', - '30_minutes' => '30 Minutes', - '1_hour' => '1 Hour', - '1_day' => '1 Day', + 'invoice_net_amount' => 'ໃບເກັບເງິນສຸດທິ', + 'round_to_minutes' => 'ຮອບເຖິງນາທີ', + '1_second' => '1 ວິນາທີ', + '1_minute' => '1 ນາທີ', + '5_minutes' => '5 ນາທີ', + '15_minutes' => '15 ນາທີ', + '30_minutes' => '30 ນາທີ', + '1_hour' => '1 ຊົ່ວ​ໂມງ', + '1_day' => '1 ມື້', 'round_tasks' => 'Task Rounding Direction', 'round_tasks_help' => 'Round task times up or down.', 'direction' => 'Direction', @@ -5320,21 +5320,21 @@ $lang = array( 'round_down' => 'Round Down', 'task_round_to_nearest' => 'Round To Nearest', 'task_round_to_nearest_help' => 'The interval to round the task to.', - 'bulk_updated' => 'Successfully updated data', + 'bulk_updated' => 'ອັບເດດຂໍ້ມູນສຳເລັດແລ້ວ', 'bulk_update' => 'Bulk Update', - 'calculate' => 'Calculate', - 'sum' => 'Sum', - 'money' => 'Money', - 'web_app' => 'Web App', - 'desktop_app' => 'Desktop App', - 'disconnected' => 'Disconnected', - 'reconnect' => 'Reconnect', - 'e_invoice_settings' => 'E-Invoice Settings', + 'calculate' => 'ໄລ່ເລກ', + 'sum' => 'ຈໍານວນ', + 'money' => 'ເງິນ', + 'web_app' => 'ແອັບເວັບ', + 'desktop_app' => 'ແອັບເດັສທັອບ', + 'disconnected' => 'ຕັດການເຊື່ອມຕໍ່', + 'reconnect' => 'ເຊື່ອມຕໍ່ຄືນໃໝ່', + 'e_invoice_settings' => 'ການຕັ້ງຄ່າ E-Invoice', 'btcpay_refund_subject' => 'Refund of your invoice via BTCPay', 'btcpay_refund_body' => 'A refund intended for you has been issued. To claim it via BTCPay, please click on this link:', 'currency_mauritanian_ouguiya' => 'Mauritanian Ouguiya', 'currency_bhutan_ngultrum' => 'Bhutan Ngultrum', - 'end_of_month' => 'End Of Month' + 'end_of_month' => 'ທ້າຍເດືອນ' ); return $lang; \ No newline at end of file diff --git a/lang/nl/texts.php b/lang/nl/texts.php index c12d9a9ac843..d2b930c8d050 100644 --- a/lang/nl/texts.php +++ b/lang/nl/texts.php @@ -2692,7 +2692,7 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen 'no_assets' => 'Geen afbeeldingen, slepen om te uploaden', 'add_image' => 'Afbeelding toevoegen', 'select_image' => 'Afbeelding selecteren', - 'upgrade_to_upload_images' => 'Upgrade naar het Enterprise Plan om afbeeldingen te uploaden', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Afbeelding verwijderen', 'delete_image_help' => 'Waarschuwing: als je de afbeelding verwijdert, wordt deze uit alle voorstellen verwijderd.', 'amount_variable_help' => 'Opmerking: Het veld $amount op de factuur wordt gebruikt als gedeeltelijke betaling als dit is ingesteld, anders wordt het factuur saldo gebruikt.', @@ -4437,7 +4437,7 @@ Email: :email
', 'client_shipping_country' => 'Land van verzending van de klant', 'load_pdf' => 'Laad PDF', 'start_free_trial' => 'Start gratis proefperiode', - 'start_free_trial_message' => 'Start uw GRATIS proefperiode van 14 dagen voor het pro-abonnement', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Verschuldigd bij ontvangst', 'is_paid' => 'Is betaald', 'age_group_paid' => 'Betaald', diff --git a/lang/pt_BR/texts.php b/lang/pt_BR/texts.php index d559f6c80602..ecb0ffea95e5 100644 --- a/lang/pt_BR/texts.php +++ b/lang/pt_BR/texts.php @@ -2692,7 +2692,7 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique " 'no_assets' => 'Sem imagens, arraste para fazer upload', 'add_image' => 'Adicionar Imagem', 'select_image' => 'Selecionar Imagem', - 'upgrade_to_upload_images' => 'Atualize para o plano Enterprise para fazer upload de imagens', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Excluir Imagem', 'delete_image_help' => 'Aviso: excluir a imagem irá removê-la de todas as propostas.', 'amount_variable_help' => 'Nota: o campo $amount da fatura usará o campo parcial/depósito se habilitado ou usará o saldo da fatura.', @@ -4434,7 +4434,7 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique " 'client_shipping_country' => 'País de envio do cliente', 'load_pdf' => 'Carregar PDF', 'start_free_trial' => 'Comece o teste gratuito', - 'start_free_trial_message' => 'Comece seu teste GRATUITO de 14 dias do plano pro', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Vencimento no recebimento', 'is_paid' => 'É pago', 'age_group_paid' => 'Pago', diff --git a/lang/pt_PT/texts.php b/lang/pt_PT/texts.php index 159b7e207fb6..656264d2df44 100644 --- a/lang/pt_PT/texts.php +++ b/lang/pt_PT/texts.php @@ -2694,7 +2694,7 @@ debitar da sua conta de acordo com essas instruções. Está elegível a um reem 'no_assets' => 'Sem imagens, arraste para carregar', 'add_image' => 'Adicionar Imagem', 'select_image' => 'Selecionar Imagem', - 'upgrade_to_upload_images' => 'Atualize para o plano Enterprise para fazer upload de imagens', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Apagar Imagem', 'delete_image_help' => 'Aviso: Ao apagar a imagem irá removê-la de todas as propostas.', 'amount_variable_help' => 'Nota: o campo $amount da nota de pagamento usará o campo parcial/depósito se habilitado ou usará o saldo da nota de pagamento.', @@ -4437,7 +4437,7 @@ O envio de E-mails foi suspenso. Será retomado às 23:00 UTC.', 'client_shipping_country' => 'País de envio do cliente', 'load_pdf' => 'Carregar PDF', 'start_free_trial' => 'Iniciar teste gratuito', - 'start_free_trial_message' => 'Comece seu teste GRATUITO de 14 dias do plano pro', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Vence Quando Recebido', 'is_paid' => 'É pago', 'age_group_paid' => 'Pago', diff --git a/lang/ro/texts.php b/lang/ro/texts.php index 36fce500a36d..6e78c5006972 100644 --- a/lang/ro/texts.php +++ b/lang/ro/texts.php @@ -2695,7 +2695,7 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl 'no_assets' => 'Nicio imagine, atașați pentru a încărca', 'add_image' => 'Adăugați o imagine', 'select_image' => 'Selectați imaginea', - 'upgrade_to_upload_images' => 'Faceți upgrade la Planul Enterprise pentru a încărca imagini', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Eliminați imaginea', 'delete_image_help' => 'Atenție: eliminând imaginea, o veți îndepărta din toate propunerile.', 'amount_variable_help' => 'Notă: câmul facturii $amount va utiliza câmul parțial/depozit. Va utiliza soldul facturii, în cazul în care este setat diferit. ', @@ -4438,7 +4438,7 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl 'client_shipping_country' => 'Țară livrare client', 'load_pdf' => 'Încărcați PDF', 'start_free_trial' => 'Începeți perioada gratuită de test ', - 'start_free_trial_message' => 'Începeți perioada gratuită de test de 14 zile pentru planul PRO', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Scadență pe nota de plată', 'is_paid' => 'Este plătită', 'age_group_paid' => 'Plătit(ă)', diff --git a/lang/sk/texts.php b/lang/sk/texts.php index dabfb77a003b..bdc5336eb90d 100644 --- a/lang/sk/texts.php +++ b/lang/sk/texts.php @@ -2682,7 +2682,7 @@ $lang = array( 'no_assets' => 'Žiadne obrázky, nahrajte ich presunutím', 'add_image' => 'Pridať obrázok', 'select_image' => 'Vybrať obrázok', - 'upgrade_to_upload_images' => 'Ak chcete odovzdať obrázky, inovujte na podnikový plán', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Zmazať obrázok', 'delete_image_help' => 'Upozornenie: Odstránením obrázka ho odstránite zo všetkých návrhov.', 'amount_variable_help' => 'Poznámka: Pole Faktúra $amount použije pole čiastková/záloha, ak je nastavené inak, použije sa zostatok faktúry.', @@ -4424,7 +4424,7 @@ $lang = array( 'client_shipping_country' => 'Krajina doručenia klienta', 'load_pdf' => 'Načítať PDF', 'start_free_trial' => 'Spustiť bezplatnú skúšobnú verziu', - 'start_free_trial_message' => 'Začnite BEZPLATNÚ 14-dňovú skúšobnú verziu profesionálneho plánu', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Splatné pri prijatí', 'is_paid' => 'Je zaplatená', 'age_group_paid' => 'Zaplatené', diff --git a/lang/sv/texts.php b/lang/sv/texts.php index a7b75c5b5ac6..93a53489e012 100644 --- a/lang/sv/texts.php +++ b/lang/sv/texts.php @@ -2703,7 +2703,7 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k 'no_assets' => 'Inga bilder, dra för att ladda upp', 'add_image' => 'Lägg till bild', 'select_image' => 'Välj bild', - 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload images', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => 'Ta bort bild', 'delete_image_help' => 'Varning: Bortagning av denna bild kommer ta bort den från alla förslag', 'amount_variable_help' => 'Notera: fakturans $amount fält kommer att använda del-/insättningsfältet om det ställs in annars kommer det att använda fakturasaldot.', @@ -4445,7 +4445,7 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k 'client_shipping_country' => 'Kundens leveransland', 'load_pdf' => 'Ladda PDF', 'start_free_trial' => 'Påbörja gratis försöksperiod', - 'start_free_trial_message' => 'Starta din GRATIS 14 dagars provversion av proplanen', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => 'Förfaller vid mottagandet', 'is_paid' => 'Är betalad', 'age_group_paid' => 'Betalt', diff --git a/lang/zh_TW/texts.php b/lang/zh_TW/texts.php index 8fce614652c0..cc7cc58c5fe5 100644 --- a/lang/zh_TW/texts.php +++ b/lang/zh_TW/texts.php @@ -2695,7 +2695,7 @@ $lang = array( 'no_assets' => '無圖片,拖曳檔案至此上傳', 'add_image' => '新增圖片', 'select_image' => '選擇圖片', - 'upgrade_to_upload_images' => '升級至企業套餐上傳圖片', + 'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images', 'delete_image' => '刪除圖片', 'delete_image_help' => '警告: 刪除這個圖片,將會在所有的提案中移除它。', 'amount_variable_help' => '注意: 若經設定,發票的 $amount 欄位將使用 部分/存款 欄位;否則,它將使用發票餘額。', @@ -4437,7 +4437,7 @@ $lang = array( 'client_shipping_country' => '客戶出貨國家/地區', 'load_pdf' => '載入 PDF', 'start_free_trial' => '開啟免費體驗', - 'start_free_trial_message' => '開始 14 天免費試用專業計劃', + 'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt' => '收據到期', 'is_paid' => '已經付款了', 'age_group_paid' => '有薪資的',