From 68d3efbdba27a475647860c2086133f7ef914961 Mon Sep 17 00:00:00 2001 From: Pete Matsyburka Date: Thu, 31 Oct 2024 14:25:37 +0200 Subject: [PATCH] use com --- README.md | 20 +++++++------- app/controllers/errors_controller.rb | 2 +- app/javascript/submission_form/completed.vue | 2 +- .../submission_form/signature_step.vue | 2 +- .../template_builder/conditions_modal.vue | 2 +- app/javascript/template_builder/fields.vue | 2 +- .../template_builder/formula_modal.vue | 2 +- .../template_builder/payment_settings.vue | 2 +- app/views/pages/landing.html.erb | 2 +- app/views/shared/_github.html.erb | 2 +- config/locales/i18n.yml | 26 +++++++++---------- lib/docuseal.rb | 2 +- .../generate_result_attachments.rb | 2 +- 13 files changed, 34 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index 86b22694..05d2acdf 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

- + DocuSeal
@@ -54,11 +54,11 @@ DocuSeal is an open source platform that provides secure and efficient digital d - Conditional fields and formulas - Bulk send with CSV, XLSX spreadsheet import - SSO / SAML -- Template creation with HTML API ([Guide](https://www.docuseal.co/guides/create-pdf-document-fillable-form-with-html-api)) -- Template creation with PDF or DOCX and field tags API ([Guide](https://www.docuseal.co/guides/use-embedded-text-field-tags-in-the-pdf-to-create-a-fillable-form)) -- Embedded signing form ([React](https://github.com/docusealco/docuseal-react), [Vue](https://github.com/docusealco/docuseal-vue), [Angular](https://github.com/docusealco/docuseal-angular) or [JavaScript](https://www.docuseal.co/docs/embedded)) -- Embedded document form builder ([React](https://github.com/docusealco/docuseal-react), [Vue](https://github.com/docusealco/docuseal-vue), [Angular](https://github.com/docusealco/docuseal-angular) or [JavaScript](https://www.docuseal.co/docs/embedded)) -- [Learn more](https://www.docuseal.co/pricing) +- Template creation with HTML API ([Guide](https://www.docuseal.com/guides/create-pdf-document-fillable-form-with-html-api)) +- Template creation with PDF or DOCX and field tags API ([Guide](https://www.docuseal.com/guides/use-embedded-text-field-tags-in-the-pdf-to-create-a-fillable-form)) +- Embedded signing form ([React](https://github.com/docusealco/docuseal-react), [Vue](https://github.com/docusealco/docuseal-vue), [Angular](https://github.com/docusealco/docuseal-angular) or [JavaScript](https://www.docuseal.com/docs/embedded)) +- Embedded document form builder ([React](https://github.com/docusealco/docuseal-react), [Vue](https://github.com/docusealco/docuseal-vue), [Angular](https://github.com/docusealco/docuseal-angular) or [JavaScript](https://www.docuseal.com/docs/embedded)) +- [Learn more](https://www.docuseal.com/pricing) ## Deploy @@ -93,7 +93,7 @@ sudo HOST=your-domain-name.com docker compose up At DocuSeal we have expertise and technologies to make documents creation, filling, signing and processing seamlessly integrated with your product. We specialize in working with various industries, including **Banking, Healthcare, Transport, Real Estate, eCommerce, KYC, CRM, and other software products** that require bulk document signing. By leveraging DocuSeal, we can assist in reducing the overall cost of developing and processing electronic documents while ensuring security and compliance with local electronic document laws. -[Book a Meeting](https://www.docuseal.co/contact) +[Book a Meeting](https://www.docuseal.com/contact) ## License @@ -102,6 +102,6 @@ Unless otherwise noted, all files © 2023 DocuSeal LLC. ## Tools -- [Signature Maker](https://www.docuseal.co/online-signature) -- [Sign Document Online](https://www.docuseal.co/sign-documents-online) -- [Fill PDF Online](https://www.docuseal.co/fill-pdf) +- [Signature Maker](https://www.docuseal.com/online-signature) +- [Sign Document Online](https://www.docuseal.com/sign-documents-online) +- [Fill PDF Online](https://www.docuseal.com/fill-pdf) diff --git a/app/controllers/errors_controller.rb b/app/controllers/errors_controller.rb index df88afde..16b5fc2d 100644 --- a/app/controllers/errors_controller.rb +++ b/app/controllers/errors_controller.rb @@ -2,7 +2,7 @@ class ErrorsController < ActionController::Base ENTERPRISE_FEATURE_MESSAGE = - 'This feature is available in Pro Edition: https://www.docuseal.co/pricing' + 'This feature is available in Pro Edition: https://www.docuseal.com/pricing' ENTERPRISE_PATHS = [ '/templates/html', diff --git a/app/javascript/submission_form/completed.vue b/app/javascript/submission_form/completed.vue index 694e1b9c..6b21f77e 100644 --- a/app/javascript/submission_form/completed.vue +++ b/app/javascript/submission_form/completed.vue @@ -91,7 +91,7 @@ > {{ t('powered_by') }} DocuSeal - {{ t('open_source_documents_software') }} diff --git a/app/javascript/submission_form/signature_step.vue b/app/javascript/submission_form/signature_step.vue index d5df5c89..ffce4ab3 100644 --- a/app/javascript/submission_form/signature_step.vue +++ b/app/javascript/submission_form/signature_step.vue @@ -259,7 +259,7 @@ class="text-base-content/60 text-xs text-center w-full mt-1" > {{ t('by_clicking_you_agree_to_the').replace('{button}', buttonText.charAt(0).toUpperCase() + buttonText.slice(1)) }} diff --git a/app/javascript/template_builder/conditions_modal.vue b/app/javascript/template_builder/conditions_modal.vue index cfb045cf..61ae8939 100644 --- a/app/javascript/template_builder/conditions_modal.vue +++ b/app/javascript/template_builder/conditions_modal.vue @@ -23,7 +23,7 @@ class="bg-base-300 rounded-xl py-2 px-3 text-center" > {{ t('available_in_pro') }} diff --git a/app/javascript/template_builder/fields.vue b/app/javascript/template_builder/fields.vue index b59ca71c..6fe07fcf 100644 --- a/app/javascript/template_builder/fields.vue +++ b/app/javascript/template_builder/fields.vue @@ -140,7 +140,7 @@ :data-tip="t('unlock_sms_verified_phone_number_field_with_paid_plan_use_text_field_for_phone_numbers_without_verification')" > {{ t('available_in_pro') }} diff --git a/app/javascript/template_builder/payment_settings.vue b/app/javascript/template_builder/payment_settings.vue index f2cf6fc2..34b67221 100644 --- a/app/javascript/template_builder/payment_settings.vue +++ b/app/javascript/template_builder/payment_settings.vue @@ -178,7 +178,7 @@ {{ t('learn_more') }} diff --git a/app/views/pages/landing.html.erb b/app/views/pages/landing.html.erb index 20043af8..78cc823e 100644 --- a/app/views/pages/landing.html.erb +++ b/app/views/pages/landing.html.erb @@ -27,7 +27,7 @@

Easy to Start

- Run on your own host using Docker container, or deploy on your favorite managed PaaS with a single click. + Run on your own host using Docker container, or deploy on your favorite managed PaaS with a single click.

diff --git a/app/views/shared/_github.html.erb b/app/views/shared/_github.html.erb index 853ab6bf..5df071f2 100644 --- a/app/views/shared/_github.html.erb +++ b/app/views/shared/_github.html.erb @@ -1,3 +1,3 @@ - GitHub Repo stars + GitHub Repo stars diff --git a/config/locales/i18n.yml b/config/locales/i18n.yml index 23d92633..0ac26e8a 100644 --- a/config/locales/i18n.yml +++ b/config/locales/i18n.yml @@ -120,7 +120,7 @@ en: &en profile_details: Profile Details sign_up_with_google: Sign up with Google sign_up_with_microsoft: Sign up with Microsoft - by_creating_an_account_you_agree_to_our_html: 'By creating an account, you agree to our Privacy Policy and Terms of Service.' + by_creating_an_account_you_agree_to_our_html: 'By creating an account, you agree to our Privacy Policy and Terms of Service.' enter_email_to_continue: Enter email to continue account: Account preferences: Preferences @@ -762,7 +762,7 @@ es: &es profile_details: Detalles del perfil sign_up_with_google: Registrarse con Google sign_up_with_microsoft: Registrarse con Microsoft - by_creating_an_account_you_agree_to_our_html: 'Al crear una cuenta, aceptas nuestra Política de Privacidad y Términos de Servicio.' + by_creating_an_account_you_agree_to_our_html: 'Al crear una cuenta, aceptas nuestra Política de Privacidad y Términos de Servicio.' enter_email_to_continue: Ingresa tu correo electrónico para continuar account: Cuenta preferences: Preferencias @@ -1403,7 +1403,7 @@ it: &it profile_details: Dettagli del profilo sign_up_with_google: Registrati con Google sign_up_with_microsoft: Registrati con Microsoft - by_creating_an_account_you_agree_to_our_html: 'Creando un account, accetti la nostra Privacy Policy e i nostri Termini di servizio.' + by_creating_an_account_you_agree_to_our_html: 'Creando un account, accetti la nostra Privacy Policy e i nostri Termini di servizio.' enter_email_to_continue: "Inserisci l'email per continuare" account: Account preferences: Preferenze @@ -2045,7 +2045,7 @@ fr: &fr sign_up_with_google: S'inscrire avec Google sign_up_with_microsoft: S'inscrire avec Microsoft by_creating_an_account_you_agree_to_our_html: | - En créant un compte, vous acceptez notre Politique de Confidentialité et nos Conditions d'Utilisation. + En créant un compte, vous acceptez notre Politique de Confidentialité et nos Conditions d'Utilisation. enter_email_to_continue: Entrez votre e-mail pour continuer account: Compte preferences: Préférences @@ -2686,7 +2686,7 @@ pt: &pt profile_details: Detalhes do perfil sign_up_with_google: Inscrever-se com Google sign_up_with_microsoft: Inscrever-se com Microsoft - by_creating_an_account_you_agree_to_our_html: 'Ao criar uma conta, você concorda com nossa Política de Privacidade e Termos de Serviço.' + by_creating_an_account_you_agree_to_our_html: 'Ao criar uma conta, você concorda com nossa Política de Privacidade e Termos de Serviço.' enter_email_to_continue: Insira o e-mail para continuar account: Conta preferences: Preferências @@ -3327,7 +3327,7 @@ de: &de profile_details: Profildetails sign_up_with_google: Mit Google registrieren sign_up_with_microsoft: Mit Microsoft registrieren - by_creating_an_account_you_agree_to_our_html: 'Durch die Erstellung eines Kontos stimmst du unseren Datenschutzrichtlinien und Nutzungsbedingungen zu.' + by_creating_an_account_you_agree_to_our_html: 'Durch die Erstellung eines Kontos stimmst du unseren Datenschutzrichtlinien und Nutzungsbedingungen zu.' enter_email_to_continue: E-Mail eingeben, um fortzufahren account: Konto preferences: Einstellungen @@ -3916,7 +3916,7 @@ pl: profile_details: Szczegóły profilu sign_up_with_google: Zarejestruj się przez Google sign_up_with_microsoft: Zarejestruj się przez Microsoft - by_creating_an_account_you_agree_to_our_html: 'Tworząc konto, akceptujesz naszą Politykę Prywatności i Regulamin.' + by_creating_an_account_you_agree_to_our_html: 'Tworząc konto, akceptujesz naszą Politykę Prywatności i Regulamin.' enter_email_to_continue: Wprowadź e-mail, aby kontynuować uk: @@ -3970,7 +3970,7 @@ uk: profile_details: Дані профілю sign_up_with_google: Зареєструватися через Google sign_up_with_microsoft: Зареєструватися через Microsoft - by_creating_an_account_you_agree_to_our_html: 'Створюючи акаунт, ви погоджуєтесь з нашою Політикою конфіденційності і Умовами надання послуг.' + by_creating_an_account_you_agree_to_our_html: 'Створюючи акаунт, ви погоджуєтесь з нашою Політикою конфіденційності і Умовами надання послуг.' enter_email_to_continue: Введіть електронну пошту, щоб продовжити cs: @@ -4024,7 +4024,7 @@ cs: profile_details: Detaily profilu sign_up_with_google: Zaregistrovat se pomocí Googlu sign_up_with_microsoft: Zaregistrovat se pomocí Microsoftu - by_creating_an_account_you_agree_to_our_html: 'Vytvořením účtu souhlasíte s našimi Zásadami ochrany osobních údajů a Podmínkami služby.' + by_creating_an_account_you_agree_to_our_html: 'Vytvořením účtu souhlasíte s našimi Zásadami ochrany osobních údajů a Podmínkami služby.' enter_email_to_continue: Zadejte e-mail pro pokračování he: @@ -4078,7 +4078,7 @@ he: profile_details: פרטי הפרופיל sign_up_with_google: הירשם עם גוגל sign_up_with_microsoft: הירשם עם מיקרוסופט - by_creating_an_account_you_agree_to_our_html: 'על ידי יצירת חשבון, אתה מסכים למדיניות הפרטיות ולתנאי השירות שלנו.' + by_creating_an_account_you_agree_to_our_html: 'על ידי יצירת חשבון, אתה מסכים למדיניות הפרטיות ולתנאי השירות שלנו.' enter_email_to_continue: הכנס דוא"ל כדי להמשיך nl: @@ -4132,7 +4132,7 @@ nl: profile_details: Profielgegevens sign_up_with_google: Aanmelden met Google sign_up_with_microsoft: Aanmelden met Microsoft - by_creating_an_account_you_agree_to_our_html: 'Door een account aan te maken, ga je akkoord met ons Privacybeleid en onze Gebruiksvoorwaarden.' + by_creating_an_account_you_agree_to_our_html: 'Door een account aan te maken, ga je akkoord met ons Privacybeleid en onze Gebruiksvoorwaarden.' enter_email_to_continue: Voer e-mail in om door te gaan ar: @@ -4186,7 +4186,7 @@ ar: profile_details: تفاصيل الملف الشخصي sign_up_with_google: الاشتراك باستخدام جوجل sign_up_with_microsoft: الاشتراك باستخدام مايكروسوفت - by_creating_an_account_you_agree_to_our_html: 'من خلال إنشاء حساب، فإنك توافق على سياسة الخصوصية وشروط الخدمة الخاصة بنا.' + by_creating_an_account_you_agree_to_our_html: 'من خلال إنشاء حساب، فإنك توافق على سياسة الخصوصية وشروط الخدمة الخاصة بنا.' enter_email_to_continue: أدخل البريد الإلكتروني للمتابعة ko: @@ -4240,7 +4240,7 @@ ko: profile_details: 프로필 세부 정보 sign_up_with_google: Google로 가입 sign_up_with_microsoft: Microsoft로 가입 - by_creating_an_account_you_agree_to_our_html: '계정을 생성함으로써, 귀하는 우리의 개인정보 보호정책서비스 약관에 동의하는 것입니다.' + by_creating_an_account_you_agree_to_our_html: '계정을 생성함으로써, 귀하는 우리의 개인정보 보호정책서비스 약관에 동의하는 것입니다.' enter_email_to_continue: 계속하려면 이메일을 입력하세요 en-US: diff --git a/lib/docuseal.rb b/lib/docuseal.rb index 48ef452d..34a44046 100644 --- a/lib/docuseal.rb +++ b/lib/docuseal.rb @@ -2,7 +2,7 @@ module Docuseal URL_CACHE = ActiveSupport::Cache::MemoryStore.new - PRODUCT_URL = 'https://www.docuseal.co' + PRODUCT_URL = 'https://www.docuseal.com' NEWSLETTER_URL = "#{PRODUCT_URL}/newsletters".freeze ENQUIRIES_URL = "#{PRODUCT_URL}/enquiries".freeze PRODUCT_NAME = 'DocuSeal' diff --git a/lib/submissions/generate_result_attachments.rb b/lib/submissions/generate_result_attachments.rb index c667512b..d42fa2f4 100644 --- a/lib/submissions/generate_result_attachments.rb +++ b/lib/submissions/generate_result_attachments.rb @@ -10,7 +10,7 @@ module Submissions 'Helvetica' end - SIGN_REASON = 'Signed by %s with DocuSeal.co' + SIGN_REASON = 'Signed by %s with DocuSeal.com' RTL_REGEXP = TextUtils::RTL_REGEXP