Merge from docusealco/wip
This commit is contained in:
@@ -42,6 +42,7 @@ module Api
|
||||
|
||||
is_authorized = attachment.name.in?(%w[logo preview_images]) ||
|
||||
(current_user && attachment.record.account.id == current_user.account_id) ||
|
||||
(current_user && !Docuseal.multitenant? && current_user.role == 'superadmin') ||
|
||||
!attachment.record.account.account_configs
|
||||
.find_or_initialize_by(key: AccountConfig::DOWNLOAD_LINKS_AUTH_KEY).value
|
||||
|
||||
|
||||
@@ -17,6 +17,8 @@ module Api
|
||||
submissions = submissions.joins(template: :folder).where(folder: { name: params[:template_folder] })
|
||||
end
|
||||
|
||||
submissions = Submissions::Filter.call(submissions, current_user, params)
|
||||
|
||||
submissions = paginate(submissions.preload(:created_by_user, :submitters,
|
||||
template: :folder,
|
||||
combined_document_attachment: :blob,
|
||||
@@ -116,7 +118,19 @@ module Api
|
||||
end
|
||||
end
|
||||
|
||||
json = { submitters: json } if request.path.ends_with?('/init')
|
||||
if request.path.ends_with?('/init')
|
||||
json =
|
||||
if submissions.size == 1
|
||||
{
|
||||
id: submissions.first.id,
|
||||
submitters: json,
|
||||
expire_at: submissions.first.expire_at,
|
||||
created_at: submissions.first.created_at
|
||||
}
|
||||
else
|
||||
{ submitters: json }
|
||||
end
|
||||
end
|
||||
|
||||
json
|
||||
end
|
||||
|
||||
@@ -187,6 +187,7 @@
|
||||
@remove="onDocumentRemove"
|
||||
@replace="onDocumentReplace"
|
||||
@up="moveDocument(item, -1)"
|
||||
@reorder="reorderFields"
|
||||
@down="moveDocument(item, 1)"
|
||||
@change="save"
|
||||
/>
|
||||
@@ -818,6 +819,89 @@ export default {
|
||||
this.documentRefs = []
|
||||
},
|
||||
methods: {
|
||||
reorderFields (item) {
|
||||
const itemFields = []
|
||||
const fields = []
|
||||
const fieldAreasIndex = {}
|
||||
|
||||
const attachmentUuids = this.template.schema.map((e) => e.attachment_uuid)
|
||||
|
||||
this.template.fields.forEach((f) => {
|
||||
if (f.areas?.length) {
|
||||
const firstArea = f.areas.reduce((min, a) => {
|
||||
return attachmentUuids.indexOf(a.attachment_uuid) < attachmentUuids.indexOf(min.attachment_uuid) ? a : min
|
||||
}, f.areas[0])
|
||||
|
||||
if (firstArea.attachment_uuid === item.attachment_uuid) {
|
||||
itemFields.push(f)
|
||||
} else {
|
||||
fields.push(f)
|
||||
}
|
||||
} else {
|
||||
fields.push(f)
|
||||
}
|
||||
})
|
||||
|
||||
const sortArea = (aArea, bArea) => {
|
||||
if (aArea.attachment_uuid === bArea.attachment_uuid) {
|
||||
if (aArea.page === bArea.page) {
|
||||
if (Math.abs(aArea.y - bArea.y) < 0.01) {
|
||||
if (aArea.x === bArea.x) {
|
||||
return 0
|
||||
} else {
|
||||
return aArea.x - bArea.x
|
||||
}
|
||||
} else {
|
||||
return aArea.y - bArea.y
|
||||
}
|
||||
} else {
|
||||
return aArea.page - bArea.page
|
||||
}
|
||||
} else {
|
||||
return attachmentUuids.indexOf(aArea.attachment_uuid) - attachmentUuids.indexOf(bArea.attachment_uuid)
|
||||
}
|
||||
}
|
||||
|
||||
itemFields.sort((aField, bField) => {
|
||||
const aArea = (fieldAreasIndex[aField.uuid] ||= [...(aField.areas || [])].sort(sortArea)[0])
|
||||
const bArea = (fieldAreasIndex[bField.uuid] ||= [...(bField.areas || [])].sort(sortArea)[0])
|
||||
|
||||
return sortArea(aArea, bArea)
|
||||
})
|
||||
|
||||
const insertBeforeAttachmentUuids = attachmentUuids.slice(this.template.schema.indexOf(item) + 1)
|
||||
|
||||
let sortedFields = []
|
||||
|
||||
if (insertBeforeAttachmentUuids.length) {
|
||||
const insertAfterField = fields.find((f) => {
|
||||
if (f.areas?.length) {
|
||||
return f.areas.find((a) => insertBeforeAttachmentUuids.includes(a.attachment_uuid))
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
})
|
||||
|
||||
if (insertAfterField) {
|
||||
fields.splice(fields.indexOf(insertAfterField), 0, ...itemFields)
|
||||
|
||||
sortedFields = fields
|
||||
} else {
|
||||
sortedFields = fields.concat(itemFields)
|
||||
}
|
||||
} else {
|
||||
if (fields.length && itemFields.length && this.template.fields.indexOf(fields[0]) > this.template.fields.indexOf(itemFields[0])) {
|
||||
sortedFields = itemFields.concat(fields)
|
||||
} else {
|
||||
sortedFields = fields.concat(itemFields)
|
||||
}
|
||||
}
|
||||
|
||||
if (this.template.fields.length === sortedFields.length) {
|
||||
this.template.fields = sortedFields
|
||||
this.save()
|
||||
}
|
||||
},
|
||||
closeDropdown () {
|
||||
document.activeElement.blur()
|
||||
},
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
const en = {
|
||||
reorder_fields: 'Reorder fields',
|
||||
verify_id: 'Verify ID',
|
||||
obtain_qualified_electronic_signature_with_the_trusted_provider_click_to_learn_more: 'Obtain qualified electronic signature (QeS) with the trusted provider. Click to learn more.',
|
||||
editable: 'Editable',
|
||||
@@ -158,6 +159,7 @@ const en = {
|
||||
}
|
||||
|
||||
const es = {
|
||||
reorder_fields: 'Reordenar campos',
|
||||
verify_id: 'Verificar ID',
|
||||
obtain_qualified_electronic_signature_with_the_trusted_provider_click_to_learn_more: 'Obtenga una firma electrónica cualificada (QeS) con el proveedor de confianza. Haga clic para obtener más información.',
|
||||
recurrent: 'Recurrente',
|
||||
@@ -317,6 +319,7 @@ const es = {
|
||||
}
|
||||
|
||||
const it = {
|
||||
reorder_fields: 'Riordina i campi',
|
||||
verify_id: 'Verifica ID',
|
||||
obtain_qualified_electronic_signature_with_the_trusted_provider_click_to_learn_more: 'Ottieni una firma elettronica qualificata (QeS) con il fornitore di fiducia. Clicca per saperne di più.',
|
||||
ricorrente: 'Ricorrente',
|
||||
@@ -476,6 +479,7 @@ const it = {
|
||||
}
|
||||
|
||||
const pt = {
|
||||
reorder_fields: 'Reorganizar campos',
|
||||
verify_id: 'Verificar ID',
|
||||
obtain_qualified_electronic_signature_with_the_trusted_provider_click_to_learn_more: 'Obtenha a assinatura eletrônica qualificada (QeS) com o provedor confiável. Clique para saber mais.',
|
||||
recurrent: 'Recurrente',
|
||||
@@ -635,6 +639,7 @@ const pt = {
|
||||
}
|
||||
|
||||
const fr = {
|
||||
reorder_fields: 'Réorganiser les champs',
|
||||
verify_id: "Vérifier l'ID",
|
||||
obtain_qualified_electronic_signature_with_the_trusted_provider_click_to_learn_more: 'Obtenez une signature électronique qualifiée (QeS) avec le fournisseur de confiance. Cliquez pour en savoir plus.',
|
||||
recurrent: 'Récurrent',
|
||||
@@ -794,6 +799,7 @@ const fr = {
|
||||
}
|
||||
|
||||
const de = {
|
||||
reorder_fields: 'Felder neu anordnen',
|
||||
verify_id: 'ID überprüfen',
|
||||
obtain_qualified_electronic_signature_with_the_trusted_provider_click_to_learn_more: 'Erhalten Sie eine qualifizierte elektronische Signatur (QeS) beim vertrauenswürdigen Anbieter. Klicken Sie hier, um mehr zu erfahren.',
|
||||
wiederkehrend: 'Wiederkehrend',
|
||||
|
||||
@@ -56,23 +56,39 @@
|
||||
</button>
|
||||
</div>
|
||||
<div
|
||||
v-if="withArrows"
|
||||
class="flex flex-col space-y-1"
|
||||
>
|
||||
<button
|
||||
class="btn border-base-200 bg-white text-base-content btn-xs rounded hover:text-base-100 hover:bg-base-content hover:border-base-content w-full transition-colors"
|
||||
style="width: 24px; height: 24px"
|
||||
@click.stop="$emit('up', item)"
|
||||
<span
|
||||
:data-tip="t('reorder_fields')"
|
||||
class="tooltip tooltip-left before:text-xs"
|
||||
>
|
||||
↑
|
||||
</button>
|
||||
<button
|
||||
class="btn border-base-200 bg-white text-base-content btn-xs rounded hover:text-base-100 hover:bg-base-content hover:border-base-content w-full transition-colors"
|
||||
style="width: 24px; height: 24px"
|
||||
@click.stop="$emit('down', item)"
|
||||
>
|
||||
↓
|
||||
</button>
|
||||
<button
|
||||
class="btn border-base-200 bg-white text-base-content btn-xs rounded hover:text-base-100 hover:bg-base-content hover:border-base-content w-full transition-colors p-0"
|
||||
@click.stop="$emit('reorder', item)"
|
||||
>
|
||||
<IconSortDescending2
|
||||
:width="18"
|
||||
:height="18"
|
||||
:stroke-width="1.6"
|
||||
/>
|
||||
</button>
|
||||
</span>
|
||||
<template v-if="withArrows">
|
||||
<button
|
||||
class="btn border-base-200 bg-white text-base-content btn-xs rounded hover:text-base-100 hover:bg-base-content hover:border-base-content w-full transition-colors"
|
||||
style="width: 24px; height: 24px"
|
||||
@click.stop="$emit('up', item)"
|
||||
>
|
||||
↑
|
||||
</button>
|
||||
<button
|
||||
class="btn border-base-200 bg-white text-base-content btn-xs rounded hover:text-base-100 hover:bg-base-content hover:border-base-content w-full transition-colors"
|
||||
style="width: 24px; height: 24px"
|
||||
@click.stop="$emit('down', item)"
|
||||
>
|
||||
↓
|
||||
</button>
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -104,7 +120,7 @@
|
||||
<script>
|
||||
import Contenteditable from './contenteditable'
|
||||
import Upload from './upload'
|
||||
import { IconRouteAltLeft } from '@tabler/icons-vue'
|
||||
import { IconRouteAltLeft, IconSortDescending2 } from '@tabler/icons-vue'
|
||||
import ConditionsModal from './conditions_modal'
|
||||
import ReplaceButton from './replace'
|
||||
import Field from './field'
|
||||
@@ -116,7 +132,8 @@ export default {
|
||||
Contenteditable,
|
||||
IconRouteAltLeft,
|
||||
ConditionsModal,
|
||||
ReplaceButton
|
||||
ReplaceButton,
|
||||
IconSortDescending2
|
||||
},
|
||||
inject: ['t'],
|
||||
props: {
|
||||
@@ -153,7 +170,7 @@ export default {
|
||||
default: true
|
||||
}
|
||||
},
|
||||
emits: ['scroll-to', 'change', 'remove', 'up', 'down', 'replace'],
|
||||
emits: ['scroll-to', 'change', 'remove', 'up', 'down', 'replace', 'reorder'],
|
||||
data () {
|
||||
return {
|
||||
isShowConditionsModal: false
|
||||
|
||||
@@ -120,6 +120,8 @@ class ProcessSubmitterCompletionJob
|
||||
submitter.submission.template_submitters.find do |e|
|
||||
sub = submitter.submission.submitters.find { |s| s.uuid == e['uuid'] }
|
||||
|
||||
next unless sub
|
||||
|
||||
sub.completed_at.blank? && sub.sent_at.blank?
|
||||
end
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ class SendFormCompletedWebhookRequestJob
|
||||
|
||||
USER_AGENT = 'DocuSeal.com Webhook'
|
||||
|
||||
MAX_ATTEMPTS = 10
|
||||
MAX_ATTEMPTS = 20
|
||||
|
||||
def perform(params = {})
|
||||
submitter = Submitter.find(params['submitter_id'])
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
<%= hidden_field_tag :redir, params[:redir] if params[:redir].present? %>
|
||||
@@ -0,0 +1,4 @@
|
||||
<div class="form-control">
|
||||
<%= label_tag 'user[otp_attempt]', t('two_factor_code_from_authenticator_app'), class: 'label' %>
|
||||
<%= text_field_tag 'user[otp_attempt]', nil, autofocus: true, autocomplete: 'off', placeholder: 'XXX-XXX', required: true, class: 'base-input' %>
|
||||
</div>
|
||||
@@ -3,9 +3,7 @@
|
||||
<%= render 'devise/shared/select_server' if Docuseal.multitenant? %>
|
||||
<h1 class="text-4xl font-bold text-center mt-8"><%= t('sign_in') %></h1>
|
||||
<%= form_for(resource, as: resource_name, html: { class: 'space-y-6' }, data: { turbo: params[:redir].blank? }, url: session_path(resource_name)) do |f| %>
|
||||
<% if params[:redir].present? %>
|
||||
<%= hidden_field_tag :redir, params[:redir] %>
|
||||
<% end %>
|
||||
<%= render 'hidden_fields' %>
|
||||
<div class="space-y-2" dir="auto">
|
||||
<div class="form-control">
|
||||
<%= f.label :email, t(:email), class: 'label' %>
|
||||
|
||||
@@ -8,12 +8,7 @@
|
||||
<% if params[:redir].present? %>
|
||||
<%= hidden_field_tag :redir, params[:redir] %>
|
||||
<% end %>
|
||||
<div class="space-y-2">
|
||||
<div class="form-control">
|
||||
<%= f.label :otp_attempt, t('two_factor_code_from_authenticator_app'), class: 'label' %>
|
||||
<%= f.text_field :otp_attempt, autofocus: true, placeholder: 'XXX-XXX', required: true, class: 'base-input' %>
|
||||
</div>
|
||||
</div>
|
||||
<%= render 'otp_form', **local_assigns %>
|
||||
<div class="form-control">
|
||||
<%= f.button button_title(title: t('sign_in'), disabled_with: t('signing_in')), class: 'base-button' %>
|
||||
</div>
|
||||
|
||||
@@ -1 +1 @@
|
||||
<% 'stats stat stat-figure stat-title stat-value text-accent' %>
|
||||
<% 'stats stat stat-figure stat-title stat-value text-accent w-fit hover:bg-white' %>
|
||||
|
||||
@@ -49,6 +49,16 @@
|
||||
<% end %>
|
||||
</li>
|
||||
<% end %>
|
||||
<% if (can?(:manage, EncryptedConfig) && current_user == true_user) || (current_user != true_user && current_account.testing?) %>
|
||||
<%= form_for '', url: testing_account_path, method: current_account.testing? ? :delete : :get, html: { class: 'w-full py-1' } do |f| %>
|
||||
<label class="flex items-center pl-6 pr-4 py-2 border-y border-base-300 -ml-2 -mr-2" for="testing_toggle">
|
||||
<%= f.check_box :testing_toggle, class: 'toggle', checked: current_account.testing?, onchange: 'this.form.requestSubmit()', style: 'height: 0.885rem; width: 1.35rem; --handleoffset: 0.395rem; margin-left: -2px; margin-right: 8px' %>
|
||||
<span class="whitespace-nowrap">
|
||||
<%= t('test_mode') %>
|
||||
</span>
|
||||
</label>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<li>
|
||||
<%= button_to destroy_user_session_path, method: :delete, data: { turbo: false }, class: 'flex items-center' do %>
|
||||
<%= svg_icon('logout', class: 'w-5 h-5 flex-shrink-0 stroke-2 mr-2 inline') %>
|
||||
|
||||
@@ -90,16 +90,16 @@
|
||||
<% end %>
|
||||
<%= render 'shared/settings_nav_extra2' %>
|
||||
<% if (can?(:manage, EncryptedConfig) && current_user == true_user) || (current_user != true_user && current_account.testing?) %>
|
||||
<li>
|
||||
<%= form_for '', url: testing_account_path, method: current_account.testing? ? :delete : :get, html: { class: 'flex w-full' } do |f| %>
|
||||
<%= form_for '', url: testing_account_path, method: current_account.testing? ? :delete : :get, html: { class: 'w-full' } do |f| %>
|
||||
<li>
|
||||
<label class="flex items-center text-base hover:bg-base-300 w-full justify-between" for="testing_toggle">
|
||||
<span class="mr-2 w-full">
|
||||
<%= t('test_environment') %>
|
||||
<%= t('test_mode') %>
|
||||
</span>
|
||||
<%= f.check_box :testing_toggle, class: 'toggle toggle-sm', checked: current_account.testing?, onchange: 'this.form.requestSubmit()' %>
|
||||
</label>
|
||||
<% end %>
|
||||
</li>
|
||||
</li>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</ul>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<div class="hidden md:flex alert py-1 text-sm font-medium gap-x-2 whitespace-nowrap">
|
||||
<a href="<%= testing_api_settings_path %>" data-turbo-frame="modal" class="link font-semibold flex">
|
||||
<%= svg_icon('code_circle', class: 'w-5 h-5 mr-1') %>
|
||||
<span><%= t('testing_environment') %></span>
|
||||
<span><%= t('test_mode') %></span>
|
||||
</a>
|
||||
<span>
|
||||
|
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<%= form_for '', url: testing_account_path, method: current_account.testing? ? :delete : :get, html: { class: 'flex' } do |f| %>
|
||||
<label class="flex items-center justify-between" for="testing_toggle">
|
||||
<span class="mr-2 text-lg">
|
||||
<%= t('test_environment') %>
|
||||
<%= t('test_mode') %>
|
||||
</span>
|
||||
<%= f.check_box :testing_toggle, class: 'toggle', checked: current_account.testing?, onchange: 'this.form.requestSubmit()' %>
|
||||
</label>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<%= f.hidden_field :template_id, value: @template.id %>
|
||||
<div class="flex items-center justify-between">
|
||||
<span>
|
||||
<%= t('share_template_with_test_environment') %>
|
||||
<%= t('share_template_with_test_mode') %>
|
||||
</span>
|
||||
<%= f.check_box :value, class: 'toggle', checked: @template.template_sharings.exists?(account_id: current_account.testing_accounts), onchange: 'this.form.requestSubmit()' %>
|
||||
</div>
|
||||
|
||||
@@ -308,7 +308,7 @@
|
||||
<%= f.hidden_field :template_id, value: @template.id %>
|
||||
<div class="flex items-center justify-between">
|
||||
<span>
|
||||
<%= t('share_template_with_test_environment') %>
|
||||
<%= t('share_template_with_test_mode') %>
|
||||
</span>
|
||||
<%= f.check_box :value, class: 'toggle', checked: @template.template_sharings.exists?(account_id: current_account.testing_accounts), onchange: 'this.form.requestSubmit()' %>
|
||||
</div>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<%= render 'shared/turbo_modal', title: t('testing_environment') do %>
|
||||
<%= render 'shared/turbo_modal', title: t('test_mode') do %>
|
||||
<div>
|
||||
<label class="text-sm font-semibold" for="api_key">
|
||||
x-Auth-Token
|
||||
X-Auth-Token
|
||||
</label>
|
||||
<div class="flex gap-2 mb-4 mt-2">
|
||||
<input id="api_key" type="text" value="<%= current_user.access_token.token %>" class="base-input w-full" autocomplete="off" readonly>
|
||||
|
||||
@@ -5,6 +5,13 @@
|
||||
<option value="editor" disabled><%= t('editor') %></option>
|
||||
<option value="viewer" disabled><%= t('viewer') %></option>
|
||||
<% end %>
|
||||
<% if Docuseal.multitenant? %>
|
||||
<label class="label">
|
||||
<span class="label-text-alt">
|
||||
<%= t('click_here_to_learn_more_about_user_roles_and_permissions_html') %>
|
||||
</span>
|
||||
</label>
|
||||
<% end %>
|
||||
<a class="text-sm mt-3 px-4 py-2 bg-base-300 rounded-full block" target="_blank" href="<%= Docuseal.multitenant? ? console_redirect_index_path(redir: "#{Docuseal::CONSOLE_URL}/plans") : "#{Docuseal::CLOUD_URL}/sign_up?#{{ redir: "#{Docuseal::CONSOLE_URL}/on_premises" }.to_query}" %>">
|
||||
<%= svg_icon('info_circle', class: 'w-4 h-4 inline align-text-bottom') %>
|
||||
<%= t('unlock_more_user_roles_with_docuseal_pro') %>
|
||||
|
||||
+167
-18
@@ -164,7 +164,7 @@ en: &en
|
||||
account_information_has_been_updated: Account information has been updated.
|
||||
should_be_a_valid_url: should be a valid URL
|
||||
your_account_removal_request_will_be_processed_within_2_weeks_please_contact_us_if_you_want_to_keep_your_account: Your account removal request will be processed within 2 weeks. Please contact us if you want to keep your account.
|
||||
test_environment: Test Environment
|
||||
test_mode: Test mode
|
||||
copy: Copy
|
||||
copied: Copied
|
||||
rotate: Rotate
|
||||
@@ -321,7 +321,6 @@ en: &en
|
||||
embedding: Embedding
|
||||
background_jobs: Background Jobs
|
||||
need_help_ask_a_question_: 'Need help? Ask a question:'
|
||||
testing_environment: Testing Environment
|
||||
exit: Exit
|
||||
leave: Leave
|
||||
impersonated_as: Impersonated as
|
||||
@@ -426,7 +425,7 @@ en: &en
|
||||
api_and_embedding: API and Embedding
|
||||
template_id: Template ID
|
||||
embedding_url: Embedding URL
|
||||
share_template_with_test_environment: Share template with Test Environment
|
||||
share_template_with_test_mode: Share template with Test mode
|
||||
share_template_with_all_tenants: Share template with all Tenants
|
||||
use_following_placeholders_text_: 'Use following placeholders text:'
|
||||
upgrade_plan_to_add_more_users: Upgrade plan to add more users
|
||||
@@ -662,7 +661,27 @@ en: &en
|
||||
policy_links: Policy Links
|
||||
markdown_content_e_g: Markdown content, e.g.
|
||||
privacy_policy: Privacy Policy
|
||||
the_code_has_been_sent_to_your_email: The code has been sent to your email.
|
||||
enter_the_verification_code_from_your_email: Enter the verification code from your email.
|
||||
too_many_attempts: Too many attempts.
|
||||
verification_code: Verification Code
|
||||
resend_code: Resend Code
|
||||
verify_new_sign_in: Verify new sign in
|
||||
use_otp_code_to_sign_in_or_click_the_link_below_html: 'Use <b>%{code}</b> code to sign in or click the link below:'
|
||||
complete_sign_in: Complete Sign In
|
||||
please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Please reply to this email if you don't recognize this sign in attempt.
|
||||
docuseal_support: DocuSeal Support
|
||||
use_the_edit_form_to_move_it_to_another_team: Use the edit form to move it to another team.
|
||||
too_many_sms_attempts_try_again_in_a_few_seconds: Too many SMS attempts. Try again in a few seconds.
|
||||
number_phone_number_is_invalid: "+%{number} phone number is invalid"
|
||||
make_com_integration: Make.com Integration
|
||||
zapier_integration: Zapier Integration
|
||||
seamlessly_automate_your_document_signing_process_with_make_com: Seamlessly automate your document signing process with Make.com.
|
||||
find_suitable_zapier_templates_to_automate_your_workflow: Find suitable Zapier templates to automate your workflow.
|
||||
get_started: Get started
|
||||
click_here_to_learn_more_about_user_roles_and_permissions_html: '<a href="https://www.docuseal.com/resources/manage-users-and-roles" class="link" rel="noopener noreferrer nofollow" target="_blank">Click here</a> to learn more about user roles and permissions.'
|
||||
count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 signature request emails sent this month. Upgrade to Pro to send unlimited signature request email.'
|
||||
test_mode_emails_limit_will_be_reset_within_24_hours: Test mode emails limit will be reset within 24 hours.
|
||||
submission_event_names:
|
||||
send_email_to_html: '<b>Email sent</b> to %{submitter_name}'
|
||||
send_reminder_email_to_html: '<b>Reminder email sent</b> to %{submitter_name}'
|
||||
@@ -847,7 +866,7 @@ es: &es
|
||||
account_information_has_been_updated: La información de la cuenta ha sido actualizada.
|
||||
should_be_a_valid_url: debe ser una URL válida
|
||||
your_account_removal_request_will_be_processed_within_2_weeks_please_contact_us_if_you_want_to_keep_your_account: Tu solicitud de eliminación de cuenta se procesará en un plazo de 2 semanas. Por favor contáctanos si deseas mantener tu cuenta.
|
||||
test_environment: Entorno de prueba
|
||||
test_mode: Modo de prueba
|
||||
copy: Copiar
|
||||
copied: Copiado
|
||||
rotate: Rotar
|
||||
@@ -1004,7 +1023,6 @@ es: &es
|
||||
embedding: Integración
|
||||
background_jobs: Trabajos asíncronos
|
||||
need_help_ask_a_question_: '¿Necesitas ayuda? Haz una pregunta:'
|
||||
testing_environment: Entorno de pruebas
|
||||
exit: Salir
|
||||
leave: Salir
|
||||
impersonated_as: Impersonado como
|
||||
@@ -1109,7 +1127,7 @@ es: &es
|
||||
api_and_embedding: API e Integración
|
||||
template_id: ID de plantilla
|
||||
embedding_url: URL de integración
|
||||
share_template_with_test_environment: Compartir plantilla con el entorno de pruebas
|
||||
share_template_with_test_mode: Compartir plantilla con el modo de prueba
|
||||
share_template_with_all_tenants: Compartir plantilla con todos los inquilinos
|
||||
use_following_placeholders_text_: 'Usa los siguientes marcadores de posición:'
|
||||
upgrade_plan_to_add_more_users: Actualiza el plan para agregar más usuarios
|
||||
@@ -1345,7 +1363,27 @@ es: &es
|
||||
policy_links: Enlaces de Políticas
|
||||
markdown_content_e_g: Contenido Markdown, por ej.
|
||||
privacy_policy: Política de Privacidad
|
||||
the_code_has_been_sent_to_your_email: El código ha sido enviado a tu correo electrónico.
|
||||
enter_the_verification_code_from_your_email: Ingresa el código de verificación de tu correo electrónico.
|
||||
too_many_attempts: Demasiados intentos.
|
||||
verification_code: Código de Verificación
|
||||
resend_code: Reenviar Código
|
||||
verify_new_sign_in: Verificar nuevo inicio de sesión
|
||||
use_otp_code_to_sign_in_or_click_the_link_below_html: 'Usa el código <b>%{code}</b> para iniciar sesión o haz clic en el enlace a continuación:'
|
||||
complete_sign_in: Completar Inicio de Sesión
|
||||
please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Responde a este correo electrónico si no reconoces este intento de inicio de sesión.
|
||||
docuseal_support: Soporte DocuSeal
|
||||
use_the_edit_form_to_move_it_to_another_team: Usa el formulario de edición para moverlo a otro equipo.
|
||||
too_many_sms_attempts_try_again_in_a_few_seconds: Demasiados intentos de SMS. Intenta de nuevo en unos segundos.
|
||||
number_phone_number_is_invalid: "El número de teléfono +%{number} no es válido"
|
||||
make_com_integration: Integración con Make.com
|
||||
zapier_integration: Integración con Zapier
|
||||
seamlessly_automate_your_document_signing_process_with_make_com: Automatiza sin problemas tu proceso de firma de documentos con Make.com.
|
||||
find_suitable_zapier_templates_to_automate_your_workflow: Encuentra plantillas de Zapier adecuadas para automatizar tu flujo de trabajo.
|
||||
get_started: Comenzar
|
||||
click_here_to_learn_more_about_user_roles_and_permissions_html: '<a href="https://www.docuseal.com/resources/manage-users-and-roles" class="link" rel="noopener noreferrer nofollow" target="_blank">Haz clic aquí</a> para obtener más información sobre los roles y permisos de usuario.'
|
||||
count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 correos electrónicos de solicitud de firma enviados este mes. Mejora a Pro para enviar solicitudes de firma ilimitadas.'
|
||||
test_mode_emails_limit_will_be_reset_within_24_hours: El límite de correos electrónicos en modo de prueba se restablecerá en 24 horas.
|
||||
submission_event_names:
|
||||
send_email_to_html: '<b>Correo electrónico enviado</b> a %{submitter_name}'
|
||||
send_reminder_email_to_html: '<b>Correo de recordatorio enviado</b> a %{submitter_name}'
|
||||
@@ -1529,7 +1567,7 @@ it: &it
|
||||
account_information_has_been_updated: "Le informazioni dell'account sono state aggiornate."
|
||||
should_be_a_valid_url: deve essere un URL valido
|
||||
your_account_removal_request_will_be_processed_within_2_weeks_please_contact_us_if_you_want_to_keep_your_account: "La tua richiesta di rimozione dell'account sarà elaborata entro 2 settimane. Contattaci se desideri mantenere il tuo account."
|
||||
test_environment: Ambiente di test
|
||||
test_mode: Modalità di test
|
||||
copy: Copia
|
||||
copied: Copiato
|
||||
rotate: Ruota
|
||||
@@ -1686,7 +1724,6 @@ it: &it
|
||||
embedding: Incorporazione
|
||||
background_jobs: Attività in background
|
||||
need_help_ask_a_question_: 'Hai bisogno di aiuto? Fai una domanda:'
|
||||
testing_environment: Ambiente di test
|
||||
exit: Esci
|
||||
leave: Lascia
|
||||
impersonated_as: Impersonato come
|
||||
@@ -1791,7 +1828,7 @@ it: &it
|
||||
api_and_embedding: API e Incorporazione
|
||||
template_id: ID modello
|
||||
embedding_url: URL di incorporazione
|
||||
share_template_with_test_environment: "Condividi il modello con l'ambiente di test"
|
||||
share_template_with_test_mode: Condividi modello con la modalità di test
|
||||
share_template_with_all_tenants: Condividi il modello con tutti i tenant
|
||||
use_following_placeholders_text_: 'Usa i seguenti segnaposto:'
|
||||
upgrade_plan_to_add_more_users: Aggiorna il piano per aggiungere più utenti
|
||||
@@ -2027,7 +2064,27 @@ it: &it
|
||||
policy_links: Collegamenti alle Politiche
|
||||
markdown_content_e_g: Contenuto Markdown, ad es.
|
||||
privacy_policy: Politica sulla Privacy
|
||||
the_code_has_been_sent_to_your_email: Il codice è stato inviato alla tua e-mail.
|
||||
enter_the_verification_code_from_your_email: Inserisci il codice di verifica dalla tua e-mail.
|
||||
too_many_attempts: Troppe tentativi.
|
||||
verification_code: Codice di Verifica
|
||||
resend_code: Reinvia Codice
|
||||
verify_new_sign_in: Verifica nuovo accesso
|
||||
use_otp_code_to_sign_in_or_click_the_link_below_html: 'Usa il codice <b>%{code}</b> per accedere o clicca sul link qui sotto:'
|
||||
complete_sign_in: "Completa l'Accesso"
|
||||
please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Rispondi a questa e-mail se non riconosci questo tentativo di accesso.
|
||||
docuseal_support: Supporto DocuSeal
|
||||
use_the_edit_form_to_move_it_to_another_team: Usa il modulo di modifica per spostarlo in un altro team.
|
||||
too_many_sms_attempts_try_again_in_a_few_seconds: Troppi tentativi di SMS. Riprova tra qualche secondo.
|
||||
number_phone_number_is_invalid: "Il numero di telefono +%{number} non è valido"
|
||||
make_com_integration: Integrazione con Make.com
|
||||
zapier_integration: Integrazione con Zapier
|
||||
seamlessly_automate_your_document_signing_process_with_make_com: Automatizza senza problemi il tuo processo di firma dei documenti con Make.com.
|
||||
find_suitable_zapier_templates_to_automate_your_workflow: Trova modelli Zapier adatti per automatizzare il tuo flusso di lavoro.
|
||||
get_started: Inizia
|
||||
click_here_to_learn_more_about_user_roles_and_permissions_html: '<a href="https://www.docuseal.com/resources/manage-users-and-roles" class="link" rel="noopener noreferrer nofollow" target="_blank">Fai clic qui</a> per saperne di più sui ruoli e le autorizzazioni degli utenti.'
|
||||
count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 e-mail di richiesta di firma inviati questo mese. Passa a Pro per inviare richieste di firma illimitate.'
|
||||
test_mode_emails_limit_will_be_reset_within_24_hours: Il limite di e-mail in modalità di test verrà ripristinato entro 24 ore.
|
||||
submission_event_names:
|
||||
send_email_to_html: '<b>E-mail inviato</b> a %{submitter_name}'
|
||||
send_reminder_email_to_html: '<b>E-mail di promemoria inviato</b> a %{submitter_name}'
|
||||
@@ -2213,7 +2270,7 @@ fr: &fr
|
||||
account_information_has_been_updated: Les informations du compte ont été mises à jour.
|
||||
should_be_a_valid_url: doit être une URL valide
|
||||
your_account_removal_request_will_be_processed_within_2_weeks_please_contact_us_if_you_want_to_keep_your_account: Votre demande de suppression du compte sera traitée dans un délai de 2 semaines. Veuillez nous contacter si vous souhaitez conserver votre compte.
|
||||
test_environment: Mode de test
|
||||
test_mode: Mode test
|
||||
copy: Copier
|
||||
copied: Copié
|
||||
rotate: Pivoter
|
||||
@@ -2370,7 +2427,6 @@ fr: &fr
|
||||
embedding: Intégration
|
||||
background_jobs: Tâches en arrière-plan
|
||||
need_help_ask_a_question_: "Besoin d'aide? Posez une question:"
|
||||
testing_environment: Environnement de test
|
||||
exit: Quitter
|
||||
leave: Partir
|
||||
impersonated_as: Usurpé comme
|
||||
@@ -2475,7 +2531,7 @@ fr: &fr
|
||||
api_and_embedding: API et intégration
|
||||
template_id: ID du modèle
|
||||
embedding_url: "URL d'intégration"
|
||||
share_template_with_test_environment: "Partager le modèle avec l'environnement de test"
|
||||
share_template_with_test_mode: Partager le modèle avec le mode test
|
||||
share_template_with_all_tenants: Partager le modèle avec tous les locataires
|
||||
use_following_placeholders_text_: 'Utilisez les espaces réservés suivants:'
|
||||
upgrade_plan_to_add_more_users: "Mettez à jour le plan pour ajouter plus d'utilisateurs"
|
||||
@@ -2711,7 +2767,27 @@ fr: &fr
|
||||
policy_links: Liens des Politiques
|
||||
markdown_content_e_g: Contenu Markdown, par ex.
|
||||
privacy_policy: Politique de Confidentialité
|
||||
the_code_has_been_sent_to_your_email: Le code a été envoyé à votre e-mail.
|
||||
enter_the_verification_code_from_your_email: Entrez le code de vérification de votre e-mail.
|
||||
too_many_attempts: Trop de tentatives.
|
||||
verification_code: Code de Vérification
|
||||
resend_code: Renvoyer le Code
|
||||
verify_new_sign_in: Vérifier la nouvelle connexion
|
||||
use_otp_code_to_sign_in_or_click_the_link_below_html: 'Utilisez le code <b>%{code}</b> pour vous connecter ou cliquez sur le lien ci-dessous :'
|
||||
complete_sign_in: Terminer la Connexion
|
||||
please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Veuillez répondre à cet e-mail si vous ne reconnaissez pas cette tentative de connexion.
|
||||
docuseal_support: Support DocuSeal
|
||||
use_the_edit_form_to_move_it_to_another_team: Utilisez le formulaire de modification pour le déplacer vers une autre équipe.
|
||||
too_many_sms_attempts_try_again_in_a_few_seconds: Trop de tentatives de SMS. Réessayez dans quelques secondes.
|
||||
number_phone_number_is_invalid: "Le numéro de téléphone +%{number} est invalide"
|
||||
make_com_integration: Intégration avec Make.com
|
||||
zapier_integration: Intégration avec Zapier
|
||||
seamlessly_automate_your_document_signing_process_with_make_com: Automatisez facilement votre processus de signature de documents avec Make.com.
|
||||
find_suitable_zapier_templates_to_automate_your_workflow: Trouvez des modèles Zapier adaptés pour automatiser votre flux de travail.
|
||||
get_started: Commencer
|
||||
click_here_to_learn_more_about_user_roles_and_permissions_html: '<a href="https://www.docuseal.com/resources/manage-users-and-roles" class="link" rel="noopener noreferrer nofollow" target="_blank">Cliquez ici</a> pour en savoir plus sur les rôles et les autorisations des utilisateurs.'
|
||||
count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 e-mails de demande de signature envoyés ce mois-ci. Passez à Pro pour envoyer des demandes de signature illimitées.'
|
||||
test_mode_emails_limit_will_be_reset_within_24_hours: La limite d'e-mails en mode test sera réinitialisée dans les 24 heures.
|
||||
submission_event_names:
|
||||
send_email_to_html: '<b>E-mail envoyé</b> à %{submitter_name}'
|
||||
send_reminder_email_to_html: '<b>E-mail de rappel envoyé</b> à %{submitter_name}'
|
||||
@@ -2896,7 +2972,7 @@ pt: &pt
|
||||
account_information_has_been_updated: As informações da conta foram atualizadas.
|
||||
should_be_a_valid_url: deve ser um URL válido
|
||||
your_account_removal_request_will_be_processed_within_2_weeks_please_contact_us_if_you_want_to_keep_your_account: Seu pedido de remoção da conta será processado em até 2 semanas. Entre em contato conosco se você quiser manter sua conta.
|
||||
test_environment: Ambiente de teste
|
||||
test_mode: Modo de teste
|
||||
copy: Copiar
|
||||
copied: Copiado
|
||||
rotate: Girar
|
||||
@@ -3053,7 +3129,6 @@ pt: &pt
|
||||
embedding: Incorporação
|
||||
background_jobs: Trabalhos assíncronos
|
||||
need_help_ask_a_question_: 'Precisa de ajuda? Faça uma pergunta:'
|
||||
testing_environment: Ambiente de teste
|
||||
exit: Sair
|
||||
leave: Deixar
|
||||
impersonated_as: Impersonado como
|
||||
@@ -3158,7 +3233,7 @@ pt: &pt
|
||||
api_and_embedding: API e Incorporação
|
||||
template_id: ID do modelo
|
||||
embedding_url: URL de incorporação
|
||||
share_template_with_test_environment: Compartilhar modelo com ambiente de teste
|
||||
share_template_with_test_mode: Compartilhar modelo com o modo de teste
|
||||
share_template_with_all_tenants: Compartilhar modelo com todos os locatários
|
||||
use_following_placeholders_text_: 'Use os seguintes textos de substituição:'
|
||||
upgrade_plan_to_add_more_users: Faça upgrade do plano para adicionar mais usuários
|
||||
@@ -3394,7 +3469,27 @@ pt: &pt
|
||||
policy_links: Links de Políticas
|
||||
markdown_content_e_g: Conteúdo Markdown, ex.
|
||||
privacy_policy: Política de Privacidade
|
||||
the_code_has_been_sent_to_your_email: O código foi enviado para seu e-mail.
|
||||
enter_the_verification_code_from_your_email: Insira o código de verificação do seu e-mail.
|
||||
too_many_attempts: Muitas tentativas.
|
||||
verification_code: Código de Verificação
|
||||
resend_code: Reenviar Código
|
||||
verify_new_sign_in: Verificar novo login
|
||||
use_otp_code_to_sign_in_or_click_the_link_below_html: 'Use o código <b>%{code}</b> para entrar ou clique no link abaixo:'
|
||||
complete_sign_in: Concluir Login
|
||||
please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Responda a este e-mail se você não reconhecer esta tentativa de login.
|
||||
docuseal_support: Suporte DocuSeal
|
||||
use_the_edit_form_to_move_it_to_another_team: Use o formulário de edição para movê-lo para outra equipe.
|
||||
too_many_sms_attempts_try_again_in_a_few_seconds: Muitas tentativas de SMS. Tente novamente em alguns segundos.
|
||||
number_phone_number_is_invalid: "O número de telefone +%{number} é inválido"
|
||||
make_com_integration: Integração com Make.com
|
||||
zapier_integration: Integração com Zapier
|
||||
seamlessly_automate_your_document_signing_process_with_make_com: Automatize perfeitamente seu processo de assinatura de documentos com o Make.com.
|
||||
find_suitable_zapier_templates_to_automate_your_workflow: Encontre modelos Zapier adequados para automatizar seu fluxo de trabalho.
|
||||
get_started: Começar
|
||||
click_here_to_learn_more_about_user_roles_and_permissions_html: '<a href="https://www.docuseal.com/resources/manage-users-and-roles" class="link" rel="noopener noreferrer nofollow" target="_blank">Clique aqui</a> para saber mais sobre os papéis e permissões dos usuários.'
|
||||
count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 e-mails de solicitação de assinatura enviados este mês. Faça upgrade para Pro para enviar solicitações de assinatura ilimitadas.'
|
||||
test_mode_emails_limit_will_be_reset_within_24_hours: O limite de e-mails no modo de teste será redefinido em 24 horas.
|
||||
submission_event_names:
|
||||
send_email_to_html: '<b>E-mail enviado</b> para %{submitter_name}'
|
||||
send_reminder_email_to_html: '<b>E-mail de lembrete enviado</b> para %{submitter_name}'
|
||||
@@ -3579,7 +3674,7 @@ de: &de
|
||||
account_information_has_been_updated: Die Kontoinformationen wurden aktualisiert.
|
||||
should_be_a_valid_url: sollte eine gültige URL sein
|
||||
your_account_removal_request_will_be_processed_within_2_weeks_please_contact_us_if_you_want_to_keep_your_account: Deine Anfrage zur Kontolöschung wird innerhalb von 2 Wochen bearbeitet. Bitte kontaktiere uns, wenn du dein Konto behalten möchtest.
|
||||
test_environment: Testumgebung
|
||||
test_mode: Testmodus
|
||||
copy: Kopieren
|
||||
copied: Kopiert
|
||||
rotate: Drehen
|
||||
@@ -3736,7 +3831,6 @@ de: &de
|
||||
embedding: Einbettung
|
||||
background_jobs: Hintergrundaufgaben
|
||||
need_help_ask_a_question_: 'Brauchen Sie Hilfe? Stellen Sie eine Frage:'
|
||||
testing_environment: Testumgebung
|
||||
exit: Beenden
|
||||
leave: Verlassen
|
||||
impersonated_as: Angemeldet als
|
||||
@@ -3841,7 +3935,7 @@ de: &de
|
||||
api_and_embedding: API und Einbettung
|
||||
template_id: Vorlagen-ID
|
||||
embedding_url: Einbettungs-URL
|
||||
share_template_with_test_environment: Vorlage mit Testumgebung teilen
|
||||
share_template_with_test_mode: Vorlage mit dem Testmodus teilen
|
||||
share_template_with_all_tenants: Vorlage mit allen Mietern teilen
|
||||
use_following_placeholders_text_: 'Verwende die folgenden Platzhaltertexte:'
|
||||
upgrade_plan_to_add_more_users: Upgrade des Plans, um weitere Benutzer hinzuzufügen
|
||||
@@ -4077,7 +4171,27 @@ de: &de
|
||||
policy_links: Richtlinien-Links
|
||||
markdown_content_e_g: Markdown-Inhalt, z. B.
|
||||
privacy_policy: Datenschutzrichtlinie
|
||||
the_code_has_been_sent_to_your_email: Der Code wurde an Ihre E-Mail gesendet.
|
||||
enter_the_verification_code_from_your_email: Geben Sie den Verifizierungscode aus Ihrer E-Mail ein.
|
||||
too_many_attempts: Zu viele Versuche.
|
||||
verification_code: Verifizierungscode
|
||||
resend_code: Code erneut senden
|
||||
verify_new_sign_in: Neue Anmeldung überprüfen
|
||||
use_otp_code_to_sign_in_or_click_the_link_below_html: 'Verwenden Sie den Code <b>%{code}</b>, um sich anzumelden, oder klicken Sie auf den untenstehenden Link:'
|
||||
complete_sign_in: Anmeldung abschließen
|
||||
please_reply_to_this_email_if_you_dont_recognize_this_sign_in_attempt: Bitte antworten Sie auf diese E-Mail, wenn Sie diesen Anmeldeversuch nicht erkennen.
|
||||
docuseal_support: DocuSeal Support
|
||||
use_the_edit_form_to_move_it_to_another_team: Verwenden Sie das Bearbeitungsformular, um ihn in ein anderes Team zu verschieben.
|
||||
too_many_sms_attempts_try_again_in_a_few_seconds: Zu viele SMS-Versuche. Versuchen Sie es in ein paar Sekunden erneut.
|
||||
number_phone_number_is_invalid: "Die Telefonnummer +%{number} ist ungültig"
|
||||
make_com_integration: Make.com-Integration
|
||||
zapier_integration: Zapier-Integration
|
||||
seamlessly_automate_your_document_signing_process_with_make_com: Automatisieren Sie Ihren Dokumentenunterzeichnungsprozess nahtlos mit Make.com.
|
||||
find_suitable_zapier_templates_to_automate_your_workflow: Finden Sie passende Zapier-Vorlagen, um Ihren Workflow zu automatisieren.
|
||||
get_started: Loslegen
|
||||
click_here_to_learn_more_about_user_roles_and_permissions_html: '<a href="https://www.docuseal.com/resources/manage-users-and-roles" class="link" rel="noopener noreferrer nofollow" target="_blank">Klicken Sie hier</a>, um mehr über Benutzerrollen und -berechtigungen zu erfahren.'
|
||||
count_10_signature_request_emails_sent_this_month_upgrade_to_pro_to_send_unlimited_signature_request_email: '%{count} / 10 Signaturanfrage-E-Mails wurden diesen Monat gesendet. Upgraden Sie zu Pro, um unbegrenzte Signaturanfragen zu senden.'
|
||||
test_mode_emails_limit_will_be_reset_within_24_hours: Das Limit für E-Mails im Testmodus wird innerhalb von 24 Stunden zurückgesetzt.
|
||||
submission_event_names:
|
||||
send_email_to_html: '<b>E-Mail gesendet</b> an %{submitter_name}'
|
||||
send_reminder_email_to_html: '<b>Erinnerungs-E-Mail gesendet</b> an %{submitter_name}'
|
||||
@@ -4168,6 +4282,11 @@ pl:
|
||||
sign_up_with_microsoft: Zarejestruj się przez Microsoft
|
||||
by_creating_an_account_you_agree_to_our_html: 'Tworząc konto, akceptujesz naszą <a target="_blank" href="https://www.docuseal.com/privacy">Politykę Prywatności</a> i <a target="_blank" href="https://www.docuseal.com/terms">Regulamin</a>.'
|
||||
enter_email_to_continue: Wprowadź e-mail, aby kontynuować
|
||||
the_code_has_been_sent_to_your_email: Kod został wysłany na Twój e-mail.
|
||||
enter_the_verification_code_from_your_email: Wprowadź kod weryfikacyjny z Twojego e-maila.
|
||||
too_many_attempts: Zbyt wiele prób.
|
||||
verification_code: Kod Weryfikacyjny
|
||||
resend_code: Wyślij Kod Ponownie
|
||||
|
||||
uk:
|
||||
awaiting_completion_by_the_other_party: "Очікує завершення з боку іншої сторони"
|
||||
@@ -4222,6 +4341,11 @@ uk:
|
||||
sign_up_with_microsoft: Зареєструватися через Microsoft
|
||||
by_creating_an_account_you_agree_to_our_html: 'Створюючи акаунт, ви погоджуєтесь з нашою <a target="_blank" href="https://www.docuseal.com/privacy">Політикою конфіденційності</a> і <a target="_blank" href="https://www.docuseal.com/terms">Умовами надання послуг</a>.'
|
||||
enter_email_to_continue: Введіть електронну пошту, щоб продовжити
|
||||
the_code_has_been_sent_to_your_email: Код було надіслано на вашу електронну пошту.
|
||||
enter_the_verification_code_from_your_email: Введіть код перевірки з вашої електронної пошти.
|
||||
too_many_attempts: Забагато спроб.
|
||||
verification_code: Код перевірки
|
||||
resend_code: Відправити код знову
|
||||
|
||||
cs:
|
||||
awaiting_completion_by_the_other_party: "Čeká se na dokončení druhou stranou"
|
||||
@@ -4276,6 +4400,11 @@ cs:
|
||||
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 <a target="_blank" href="https://www.docuseal.com/privacy">Zásadami ochrany osobních údajů</a> a <a target="_blank" href="https://www.docuseal.com/terms">Podmínkami služby</a>.'
|
||||
enter_email_to_continue: Zadejte e-mail pro pokračování
|
||||
the_code_has_been_sent_to_your_email: Kód byl odeslán na váš e-mail.
|
||||
enter_the_verification_code_from_your_email: Zadejte ověřovací kód z vašeho e-mailu.
|
||||
too_many_attempts: Příliš mnoho pokusů.
|
||||
verification_code: Ověřovací Kód
|
||||
resend_code: Znovu Odeslat Kód
|
||||
|
||||
he:
|
||||
awaiting_completion_by_the_other_party: "המתנה להשלמה מצד הצד השני"
|
||||
@@ -4330,6 +4459,11 @@ he:
|
||||
sign_up_with_microsoft: הירשם עם מיקרוסופט
|
||||
by_creating_an_account_you_agree_to_our_html: 'על ידי יצירת חשבון, אתה מסכים ל<a target="_blank" href="https://www.docuseal.com/privacy">מדיניות הפרטיות</a> ול<a target="_blank" href="https://www.docuseal.com/terms">תנאי השירות</a> שלנו.'
|
||||
enter_email_to_continue: הכנס דוא"ל כדי להמשיך
|
||||
the_code_has_been_sent_to_your_email: הקוד נשלח לדוא"ל שלך.
|
||||
enter_the_verification_code_from_your_email: הזן את קוד האימות מדוא"ל שלך.
|
||||
too_many_attempts: יותר מדי ניסיונות.
|
||||
verification_code: קוד אימות
|
||||
resend_code: שלח קוד מחדש
|
||||
|
||||
nl:
|
||||
awaiting_completion_by_the_other_party: "In afwachting van voltooiing door de andere partij"
|
||||
@@ -4384,6 +4518,11 @@ nl:
|
||||
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 <a target="_blank" href="https://www.docuseal.com/privacy">Privacybeleid</a> en onze <a target="_blank" href="https://www.docuseal.com/terms">Gebruiksvoorwaarden</a>.'
|
||||
enter_email_to_continue: Voer e-mail in om door te gaan
|
||||
the_code_has_been_sent_to_your_email: De code is naar uw e-mail verzonden.
|
||||
enter_the_verification_code_from_your_email: Voer de verificatiecode uit uw e-mail in.
|
||||
too_many_attempts: Te veel pogingen.
|
||||
verification_code: Verificatiecode
|
||||
resend_code: Code Opnieuw Verzenden
|
||||
|
||||
ar:
|
||||
awaiting_completion_by_the_other_party: "في انتظار إكتمال الطرف الآخر"
|
||||
@@ -4438,6 +4577,11 @@ ar:
|
||||
sign_up_with_microsoft: الاشتراك باستخدام مايكروسوفت
|
||||
by_creating_an_account_you_agree_to_our_html: 'من خلال إنشاء حساب، فإنك توافق على <a target="_blank" href="https://www.docuseal.com/privacy">سياسة الخصوصية</a> و<a target="_blank" href="https://www.docuseal.com/terms">شروط الخدمة</a> الخاصة بنا.'
|
||||
enter_email_to_continue: أدخل البريد الإلكتروني للمتابعة
|
||||
the_code_has_been_sent_to_your_email: تم إرسال الرمز إلى بريدك الإلكتروني.
|
||||
enter_the_verification_code_from_your_email: أدخل رمز التحقق من بريدك الإلكتروني.
|
||||
too_many_attempts: عدد المحاولات كبير جدًا.
|
||||
verification_code: رمز التحقق
|
||||
resend_code: إعادة إرسال الرمز
|
||||
|
||||
ko:
|
||||
awaiting_completion_by_the_other_party: "다른 당사자의 완료를 기다리고 있습니다"
|
||||
@@ -4492,6 +4636,11 @@ ko:
|
||||
sign_up_with_microsoft: Microsoft로 가입
|
||||
by_creating_an_account_you_agree_to_our_html: '계정을 생성함으로써, 귀하는 우리의 <a target="_blank" href="https://www.docuseal.com/privacy">개인정보 보호정책</a> 및 <a target="_blank" href="https://www.docuseal.com/terms">서비스 약관</a>에 동의하는 것입니다.'
|
||||
enter_email_to_continue: 계속하려면 이메일을 입력하세요
|
||||
the_code_has_been_sent_to_your_email: 코드가 이메일로 전송되었습니다.
|
||||
enter_the_verification_code_from_your_email: 이메일에서 인증 코드를 입력하세요.
|
||||
too_many_attempts: 시도 횟수가 너무 많습니다.
|
||||
verification_code: 인증 코드
|
||||
resend_code: 코드 재전송
|
||||
|
||||
en-US:
|
||||
<<: *en
|
||||
|
||||
@@ -85,7 +85,7 @@ RSpec.describe SendFormCompletedWebhookRequestJob do
|
||||
stub_request(:post, webhook_url.url).to_return(status: 401)
|
||||
|
||||
expect do
|
||||
described_class.new.perform('submitter_id' => submitter.id, 'webhook_url_id' => webhook_url.id, 'attempt' => 11)
|
||||
described_class.new.perform('submitter_id' => submitter.id, 'webhook_url_id' => webhook_url.id, 'attempt' => 21)
|
||||
end.not_to change(described_class.jobs, :size)
|
||||
|
||||
expect(WebMock).to have_requested(:post, webhook_url.url).once
|
||||
|
||||
@@ -83,7 +83,7 @@ RSpec.describe SendSubmissionCompletedWebhookRequestJob do
|
||||
|
||||
expect do
|
||||
described_class.new.perform('submission_id' => submission.id, 'webhook_url_id' => webhook_url.id,
|
||||
'attempt' => 11)
|
||||
'attempt' => 21)
|
||||
end.not_to change(described_class.jobs, :size)
|
||||
|
||||
expect(WebMock).to have_requested(:post, webhook_url.url).once
|
||||
|
||||
@@ -71,6 +71,10 @@ RSpec.configure do |config|
|
||||
Sidekiq::Testing.inline! if example.metadata[:sidekiq] == :inline
|
||||
end
|
||||
|
||||
config.after do |example|
|
||||
Sidekiq::Testing.fake! if example.metadata[:sidekiq] == :inline
|
||||
end
|
||||
|
||||
config.before(multitenant: true) do
|
||||
allow(Docuseal).to receive(:multitenant?).and_return(true)
|
||||
end
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Sign In', type: :system do
|
||||
let(:account) { create(:account) }
|
||||
let!(:user) { create(:user, account:, email: 'john.dou@example.com', password: 'strong_password') }
|
||||
|
||||
before do
|
||||
visit new_user_session_path
|
||||
end
|
||||
|
||||
context 'when only with email and password' do
|
||||
it 'signs in successfully with valid email and password' do
|
||||
fill_in 'Email', with: 'john.dou@example.com'
|
||||
fill_in 'Password', with: 'strong_password'
|
||||
click_button 'Sign In'
|
||||
|
||||
expect(page).to have_content('Signed in successfully')
|
||||
expect(page).to have_content('Document Templates')
|
||||
end
|
||||
|
||||
it "doesn't sign in if the email or password are incorrect" do
|
||||
fill_in 'Email', with: 'john.dou@example.com'
|
||||
fill_in 'Password', with: 'wrong_password'
|
||||
click_button 'Sign In'
|
||||
|
||||
expect(page).to have_content('Invalid Email or password')
|
||||
expect(page).not_to have_content('Document Templates')
|
||||
end
|
||||
end
|
||||
|
||||
context 'when 2FA is required' do
|
||||
before do
|
||||
user.update(otp_required_for_login: true, otp_secret: User.generate_otp_secret)
|
||||
end
|
||||
|
||||
it 'signs in successfully with valid OTP code' do
|
||||
fill_in 'Email', with: 'john.dou@example.com'
|
||||
fill_in 'Password', with: 'strong_password'
|
||||
click_button 'Sign In'
|
||||
fill_in 'Two-Factor Code from Authenticator App', with: user.current_otp
|
||||
click_button 'Sign In'
|
||||
|
||||
expect(page).to have_content('Signed in successfully')
|
||||
expect(page).to have_content('Document Templates')
|
||||
end
|
||||
|
||||
it 'fails to sign in with invalid OTP code' do
|
||||
fill_in 'Email', with: 'john.dou@example.com'
|
||||
fill_in 'Password', with: 'strong_password'
|
||||
click_button 'Sign In'
|
||||
fill_in 'Two-Factor Code from Authenticator App', with: '123456'
|
||||
click_button 'Sign In'
|
||||
|
||||
expect(page).to have_content('Invalid Email or password')
|
||||
expect(page).not_to have_content('Document Templates')
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user