Compare commits
35
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b32748c8b | ||
|
|
f44e47a624 | ||
|
|
47bdb6d2bb | ||
|
|
c3680d50bc | ||
|
|
2ba4780bda | ||
|
|
d3cd647e49 | ||
|
|
eadbddaa9f | ||
|
|
9f14e6abb6 | ||
|
|
79793a5435 | ||
|
|
e68522318b | ||
|
|
44fab70048 | ||
|
|
68c070bcd9 | ||
|
|
728956a734 | ||
|
|
114c25cae8 | ||
|
|
36cbd5745e | ||
|
|
d762829519 | ||
|
|
2e108653ae | ||
|
|
5c5abc24e3 | ||
|
|
9a5a71b34f | ||
|
|
df1f85a7f0 | ||
|
|
46b75e1b03 | ||
|
|
8162473eb6 | ||
|
|
8764ade161 | ||
|
|
3655f4cedc | ||
|
|
0e41263f9c | ||
|
|
b28c08059f | ||
|
|
b5deecc9f9 | ||
|
|
be44108500 | ||
|
|
891404aaf1 | ||
|
|
98f4a6f797 | ||
|
|
d06aba6020 | ||
|
|
0403361a36 | ||
|
|
9bd93f970c | ||
|
|
2e6142c4c3 | ||
|
|
f32daa96ab |
@@ -103,7 +103,7 @@ gem 'twitty', '~> 0.1.5'
|
||||
# facebook client
|
||||
gem 'koala'
|
||||
# slack client
|
||||
gem 'slack-ruby-client', '~> 2.5.2'
|
||||
gem 'slack-ruby-client', '~> 2.7.0'
|
||||
# for dialogflow integrations
|
||||
gem 'google-cloud-dialogflow-v2', '>= 0.24.0'
|
||||
gem 'grpc'
|
||||
|
||||
+4
-4
@@ -292,7 +292,7 @@ GEM
|
||||
logger
|
||||
faraday-follow_redirects (0.3.0)
|
||||
faraday (>= 1, < 3)
|
||||
faraday-mashify (0.1.1)
|
||||
faraday-mashify (1.0.0)
|
||||
faraday (~> 2.0)
|
||||
hashie
|
||||
faraday-multipart (1.0.4)
|
||||
@@ -876,8 +876,8 @@ GEM
|
||||
simplecov_json_formatter (~> 0.1)
|
||||
simplecov-html (0.13.2)
|
||||
simplecov_json_formatter (0.1.4)
|
||||
slack-ruby-client (2.5.2)
|
||||
faraday (>= 2.0)
|
||||
slack-ruby-client (2.7.0)
|
||||
faraday (>= 2.0.1)
|
||||
faraday-mashify
|
||||
faraday-multipart
|
||||
gli
|
||||
@@ -1103,7 +1103,7 @@ DEPENDENCIES
|
||||
sidekiq_alive
|
||||
simplecov (>= 0.21)
|
||||
simplecov_json_formatter
|
||||
slack-ruby-client (~> 2.5.2)
|
||||
slack-ruby-client (~> 2.7.0)
|
||||
spring
|
||||
spring-watcher-listen
|
||||
squasher
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
class Email::BaseBuilder
|
||||
pattr_initialize [:inbox!]
|
||||
|
||||
private
|
||||
|
||||
def channel
|
||||
@channel ||= inbox.channel
|
||||
end
|
||||
|
||||
def account
|
||||
@account ||= inbox.account
|
||||
end
|
||||
|
||||
def conversation
|
||||
@conversation ||= message.conversation
|
||||
end
|
||||
|
||||
def custom_sender_name
|
||||
message&.sender&.available_name || I18n.t('conversations.reply.email.header.notifications')
|
||||
end
|
||||
|
||||
def sender_name(sender_email)
|
||||
# Friendly: <agent_name> from <business_name>
|
||||
# Professional: <business_name>
|
||||
if inbox.friendly?
|
||||
I18n.t(
|
||||
'conversations.reply.email.header.friendly_name',
|
||||
sender_name: custom_sender_name,
|
||||
business_name: business_name,
|
||||
from_email: sender_email
|
||||
)
|
||||
else
|
||||
I18n.t(
|
||||
'conversations.reply.email.header.professional_name',
|
||||
business_name: business_name,
|
||||
from_email: sender_email
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
def business_name
|
||||
inbox.business_name || inbox.sanitized_name
|
||||
end
|
||||
|
||||
def account_support_email
|
||||
# Parse the email to ensure it's in the correct format, the user
|
||||
# can save it in the format "Name <email@domain.com>"
|
||||
parse_email(account.support_email)
|
||||
end
|
||||
|
||||
def parse_email(email_string)
|
||||
Mail::Address.new(email_string).address
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,51 @@
|
||||
class Email::FromBuilder < Email::BaseBuilder
|
||||
pattr_initialize [:inbox!, :message!]
|
||||
|
||||
def build
|
||||
return sender_name(account_support_email) unless inbox.email?
|
||||
|
||||
from_email = case email_channel_type
|
||||
when :standard_imap_smtp,
|
||||
:google_oauth,
|
||||
:microsoft_oauth,
|
||||
:forwarding_own_smtp
|
||||
channel.email
|
||||
when :imap_chatwoot_smtp,
|
||||
:forwarding_chatwoot_smtp
|
||||
channel.verified_for_sending ? channel.email : account_support_email
|
||||
else
|
||||
account_support_email
|
||||
end
|
||||
|
||||
sender_name(from_email)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def email_channel_type
|
||||
return :google_oauth if channel.google?
|
||||
return :microsoft_oauth if channel.microsoft?
|
||||
return :standard_imap_smtp if imap_and_smtp_enabled?
|
||||
return :imap_chatwoot_smtp if imap_enabled_without_smtp?
|
||||
return :forwarding_own_smtp if forwarding_with_own_smtp?
|
||||
return :forwarding_chatwoot_smtp if forwarding_without_smtp?
|
||||
|
||||
:unknown
|
||||
end
|
||||
|
||||
def imap_and_smtp_enabled?
|
||||
channel.imap_enabled && channel.smtp_enabled
|
||||
end
|
||||
|
||||
def imap_enabled_without_smtp?
|
||||
channel.imap_enabled && !channel.smtp_enabled
|
||||
end
|
||||
|
||||
def forwarding_with_own_smtp?
|
||||
!channel.imap_enabled && channel.smtp_enabled
|
||||
end
|
||||
|
||||
def forwarding_without_smtp?
|
||||
!channel.imap_enabled && !channel.smtp_enabled
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,21 @@
|
||||
class Email::ReplyToBuilder < Email::BaseBuilder
|
||||
pattr_initialize [:inbox!, :message!]
|
||||
|
||||
def build
|
||||
reply_to = if inbox.email?
|
||||
channel.email
|
||||
elsif inbound_email_enabled?
|
||||
"reply+#{conversation.uuid}@#{account.inbound_email_domain}"
|
||||
else
|
||||
account_support_email
|
||||
end
|
||||
|
||||
sender_name(reply_to)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def inbound_email_enabled?
|
||||
account.feature_enabled?('inbound_emails') && account.inbound_email_domain.present?
|
||||
end
|
||||
end
|
||||
@@ -23,24 +23,29 @@ module RequestExceptionHandler
|
||||
Current.reset
|
||||
end
|
||||
|
||||
def render_error(message, status, error = nil)
|
||||
log_handled_error(error) if error
|
||||
render json: { error: message }, status: status
|
||||
end
|
||||
|
||||
def render_unauthorized(message)
|
||||
render json: { error: message }, status: :unauthorized
|
||||
render_error(message, :unauthorized)
|
||||
end
|
||||
|
||||
def render_not_found_error(message)
|
||||
render json: { error: message }, status: :not_found
|
||||
render_error(message, :not_found)
|
||||
end
|
||||
|
||||
def render_could_not_create_error(message)
|
||||
render json: { error: message }, status: :unprocessable_entity
|
||||
render_error(message, :unprocessable_entity)
|
||||
end
|
||||
|
||||
def render_payment_required(message)
|
||||
render json: { error: message }, status: :payment_required
|
||||
render_error(message, :payment_required)
|
||||
end
|
||||
|
||||
def render_internal_server_error(message)
|
||||
render json: { error: message }, status: :internal_server_error
|
||||
render_error(message, :internal_server_error)
|
||||
end
|
||||
|
||||
def render_record_invalid(exception)
|
||||
@@ -57,6 +62,23 @@ module RequestExceptionHandler
|
||||
end
|
||||
|
||||
def log_handled_error(exception)
|
||||
return unless exception
|
||||
|
||||
logger.info("Handled error: #{exception.inspect}")
|
||||
report_to_apms(exception)
|
||||
end
|
||||
|
||||
def report_to_apms(exception)
|
||||
apm_reporters = {
|
||||
'NewRelic::Agent' => -> { ::NewRelic::Agent.notice_error(exception) },
|
||||
'Datadog::Tracing' => -> { ::Datadog::Tracing.active_trace&.set_error(exception) },
|
||||
'ElasticAPM' => -> { ::ElasticAPM.report(exception) },
|
||||
'ScoutApm::Error' => -> { ::ScoutApm::Error.capture(exception) },
|
||||
'Sentry' => -> { ::Sentry.capture_exception(exception) }
|
||||
}
|
||||
|
||||
apm_reporters.each do |module_name, reporter|
|
||||
reporter.call if Object.const_defined?(module_name)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -12,9 +12,11 @@ class DeviseOverrides::SessionsController < DeviseTokenAuth::SessionsController
|
||||
return handle_mfa_verification if mfa_verification_request?
|
||||
return handle_sso_authentication if sso_authentication_request?
|
||||
|
||||
super do |resource|
|
||||
return handle_mfa_required(resource) if resource&.mfa_enabled?
|
||||
end
|
||||
user = find_user_for_authentication
|
||||
return handle_mfa_required(user) if user&.mfa_enabled?
|
||||
|
||||
# Only proceed with standard authentication if no MFA is required
|
||||
super
|
||||
end
|
||||
|
||||
def render_create_success
|
||||
@@ -23,6 +25,17 @@ class DeviseOverrides::SessionsController < DeviseTokenAuth::SessionsController
|
||||
|
||||
private
|
||||
|
||||
def find_user_for_authentication
|
||||
return nil unless params[:email].present? && params[:password].present?
|
||||
|
||||
normalized_email = params[:email].strip.downcase
|
||||
user = User.from_email(normalized_email)
|
||||
return nil unless user&.valid_password?(params[:password])
|
||||
return nil unless user.active_for_authentication?
|
||||
|
||||
user
|
||||
end
|
||||
|
||||
def mfa_verification_request?
|
||||
params[:mfa_token].present?
|
||||
end
|
||||
@@ -59,10 +72,10 @@ class DeviseOverrides::SessionsController < DeviseTokenAuth::SessionsController
|
||||
@resource = user if user&.valid_sso_auth_token?(params[:sso_auth_token])
|
||||
end
|
||||
|
||||
def handle_mfa_required(resource)
|
||||
def handle_mfa_required(user)
|
||||
render json: {
|
||||
mfa_required: true,
|
||||
mfa_token: Mfa::TokenService.new(user: resource).generate_token
|
||||
mfa_token: Mfa::TokenService.new(user: user).generate_token
|
||||
}, status: :partial_content
|
||||
end
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ class Public::Api::V1::Inboxes::ConversationsController < Public::Api::V1::Inbox
|
||||
before_action :set_conversation, only: [:toggle_typing, :update_last_seen, :show, :toggle_status]
|
||||
|
||||
def index
|
||||
@conversations = @contact_inbox.hmac_verified? ? @contact.conversations : @contact_inbox.conversations
|
||||
@conversations = @contact_inbox.hmac_verified? ? @contact_inbox.contact.conversations : @contact_inbox.conversations
|
||||
end
|
||||
|
||||
def show; end
|
||||
|
||||
@@ -13,11 +13,11 @@ class SuperAdmin::UsersController < SuperAdmin::ApplicationController
|
||||
redirect_to new_super_admin_user_path, notice: notice
|
||||
end
|
||||
end
|
||||
#
|
||||
# def update
|
||||
# super
|
||||
# send_foo_updated_email(requested_resource)
|
||||
# end
|
||||
|
||||
def update
|
||||
requested_resource.skip_reconfirmation! if resource_params[:confirmed_at].present?
|
||||
super
|
||||
end
|
||||
|
||||
# Override this method to specify custom lookup behavior.
|
||||
# This will be used to set the resource for the `show`, `edit`, and `update`
|
||||
|
||||
@@ -59,11 +59,11 @@ class UserDashboard < Administrate::BaseDashboard
|
||||
SHOW_PAGE_ATTRIBUTES = %i[
|
||||
id
|
||||
avatar_url
|
||||
unconfirmed_email
|
||||
name
|
||||
type
|
||||
display_name
|
||||
email
|
||||
unconfirmed_email
|
||||
created_at
|
||||
updated_at
|
||||
confirmed_at
|
||||
|
||||
@@ -6,19 +6,54 @@ class EmailChannelFinder
|
||||
end
|
||||
|
||||
def perform
|
||||
channel = nil
|
||||
|
||||
recipient_mails.each do |email|
|
||||
normalized_email = normalize_email_with_plus_addressing(email)
|
||||
channel = Channel::Email.find_by('lower(email) = ? OR lower(forward_to_email) = ?', normalized_email, normalized_email)
|
||||
|
||||
break if channel.present?
|
||||
end
|
||||
channel
|
||||
channel_from_primary_recipients || channel_from_bcc_recipients
|
||||
end
|
||||
|
||||
def recipient_mails
|
||||
recipient_addresses = @email_object.to.to_a + @email_object.cc.to_a + @email_object.bcc.to_a + [@email_object['X-Original-To'].try(:value)]
|
||||
recipient_addresses.flatten.compact
|
||||
private
|
||||
|
||||
def channel_from_primary_recipients
|
||||
primary_recipient_emails.each do |email|
|
||||
channel = channel_from_email(email)
|
||||
return channel if channel.present?
|
||||
end
|
||||
|
||||
nil
|
||||
end
|
||||
|
||||
def channel_from_bcc_recipients
|
||||
bcc_recipient_emails.each do |email|
|
||||
channel = channel_from_email(email)
|
||||
|
||||
# Skip if BCC processing is disabled for this account
|
||||
next if channel && !allow_bcc_processing?(channel.account_id)
|
||||
|
||||
return channel if channel.present?
|
||||
end
|
||||
|
||||
nil
|
||||
end
|
||||
|
||||
def primary_recipient_emails
|
||||
(@email_object.to.to_a + @email_object.cc.to_a + [@email_object['X-Original-To'].try(:value)]).flatten.compact
|
||||
end
|
||||
|
||||
def bcc_recipient_emails
|
||||
@email_object.bcc.to_a.flatten.compact
|
||||
end
|
||||
|
||||
def channel_from_email(email)
|
||||
normalized_email = normalize_email_with_plus_addressing(email)
|
||||
Channel::Email.find_by('lower(email) = ? OR lower(forward_to_email) = ?', normalized_email, normalized_email)
|
||||
end
|
||||
|
||||
def bcc_processing_skipped_accounts
|
||||
config_value = GlobalConfigService.load('SKIP_INCOMING_BCC_PROCESSING', '')
|
||||
return [] if config_value.blank?
|
||||
|
||||
config_value.split(',').map(&:to_i)
|
||||
end
|
||||
|
||||
def allow_bcc_processing?(account_id)
|
||||
bcc_processing_skipped_accounts.exclude?(account_id)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
<script setup>
|
||||
import Guardrails from './Guardrails.vue';
|
||||
import Scenarios from './Scenarios.vue';
|
||||
import ResponseGuidelines from './ResponseGuidelines.vue';
|
||||
import Settings from './Settings.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Story
|
||||
title="Captain/AnimatingImg/AnimatingImg"
|
||||
:layout="{ type: 'grid', width: '300px' }"
|
||||
>
|
||||
<Variant title="Guardrails">
|
||||
<div class="p-4 bg-n-background w-full h-full">
|
||||
<Guardrails class="size-60" />
|
||||
</div>
|
||||
</Variant>
|
||||
<Variant title="Scenarios">
|
||||
<div class="p-4 bg-n-background w-full h-full">
|
||||
<Scenarios class="size-60" />
|
||||
</div>
|
||||
</Variant>
|
||||
<Variant title="ResponseGuidelines">
|
||||
<div class="p-4 bg-n-background w-full h-full">
|
||||
<ResponseGuidelines class="size-60" />
|
||||
</div>
|
||||
</Variant>
|
||||
<Variant title="Settings">
|
||||
<div class="p-4 bg-n-background w-full h-full">
|
||||
<Settings class="size-60" />
|
||||
</div>
|
||||
</Variant>
|
||||
</Story>
|
||||
</template>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,990 @@
|
||||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
|
||||
const paused = ref(false);
|
||||
|
||||
const toggle = () => {
|
||||
paused.value = !paused.value;
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div
|
||||
class="svg-wrapper relative"
|
||||
:class="{ paused }"
|
||||
role="button"
|
||||
:aria-pressed="paused"
|
||||
tabindex="0"
|
||||
@click="toggle"
|
||||
>
|
||||
<div class="absolute z-0 flex-shrink-0">
|
||||
<svg
|
||||
width="auto"
|
||||
height="auto"
|
||||
viewBox="0 0 200 156"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<g opacity="0.5">
|
||||
<g clip-path="url(#clip0_773_34322)">
|
||||
<circle cx="8" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<rect
|
||||
width="200"
|
||||
height="156"
|
||||
fill="url(#paint0_linear_773_34322)"
|
||||
/>
|
||||
<rect
|
||||
width="200"
|
||||
height="156"
|
||||
fill="url(#paint1_linear_773_34322)"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="paint0_linear_773_34322"
|
||||
x1="100"
|
||||
y1="0"
|
||||
x2="100"
|
||||
y2="156"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stop-color="var(--gradient-start)" />
|
||||
<stop
|
||||
offset="0.480769"
|
||||
stop-color="var(--gradient-start)"
|
||||
stop-opacity="0"
|
||||
/>
|
||||
<stop offset="1" stop-color="var(--gradient-start)" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint1_linear_773_34322"
|
||||
x1="0"
|
||||
y1="78"
|
||||
x2="200"
|
||||
y2="78"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stop-color="var(--gradient-start)" />
|
||||
<stop
|
||||
offset="0.480769"
|
||||
stop-color="var(--gradient-start)"
|
||||
stop-opacity="0"
|
||||
/>
|
||||
<stop offset="1" stop-color="var(--gradient-start)" />
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_773_34322">
|
||||
<rect width="200" height="156" rx="16" fill="white" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</div>
|
||||
<svg
|
||||
viewBox="0 0 136 108"
|
||||
aria-hidden="false"
|
||||
focusable="false"
|
||||
class="z-10 relative flex-shrink-0"
|
||||
>
|
||||
<rect width="136" height="108" fill="url(#paint0_radial_720_25701)" />
|
||||
<path
|
||||
d="M49 35.039C49 33.9129 49.9129 33 51.039 33C52.1651 33 53.0779 33.9129 53.0779 35.039V39.7513C53.0779 40.8774 52.1651 41.7902 51.039 41.7902C49.9129 41.7902 49 40.8774 49 39.7513V35.039Z"
|
||||
class="fill-n-slate-10"
|
||||
/>
|
||||
<path
|
||||
d="M55.5244 35.039C55.5244 33.9129 56.4373 33 57.5634 33C58.6895 33 59.6024 33.9129 59.6024 35.039V39.7513C59.6024 40.8774 58.6895 41.7902 57.5634 41.7902C56.4373 41.7902 55.5244 40.8774 55.5244 39.7513V35.039Z"
|
||||
class="fill-n-slate-10"
|
||||
/>
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M58.1862 24.173C50.5933 23.1017 44.4039 23.0594 36.6405 24.1683C34.678 24.4485 33.3796 24.638 32.3896 24.9273C31.4716 25.1956 30.9496 25.5155 30.5177 25.9981C29.6236 26.9974 29.5057 28.1276 29.3838 32.0695C29.264 35.9436 29.5013 39.4156 29.9507 43.3222C30.1901 45.4039 30.3549 46.8088 30.618 47.8769C30.8676 48.89 31.1694 49.4347 31.5889 49.8518C32.0117 50.2721 32.5536 50.5686 33.5482 50.8091C34.6002 51.0636 35.9806 51.2175 38.032 51.4413C44.6668 52.1652 49.6333 52.1615 56.2927 51.4451C58.369 51.2218 59.7719 51.0678 60.8396 50.815C61.8541 50.5749 62.3995 50.2805 62.8165 49.8722C63.2247 49.4724 63.5366 48.921 63.8071 47.8574C64.0894 46.7477 64.2815 45.2793 64.5594 43.1222C65.0553 39.2735 65.4123 35.8935 65.4262 32.1908C65.4411 28.232 65.3601 27.1056 64.4558 26.0608C64.019 25.5562 63.488 25.2244 62.5491 24.9481C61.5352 24.6497 60.2017 24.4573 58.1862 24.173ZM36.1664 20.849C44.2537 19.6939 50.7606 19.7391 58.6546 20.8529L58.7701 20.8692C60.6392 21.1328 62.2183 21.3555 63.4958 21.7315C64.8745 22.1372 66.0274 22.7532 66.991 23.8665C68.8087 25.9666 68.7969 28.4583 68.7811 31.7688C68.7804 31.9121 68.7797 32.057 68.7792 32.2034C68.7645 36.1184 68.3857 39.6634 67.8849 43.5506L67.8717 43.6535C67.6103 45.682 67.395 47.3537 67.0566 48.6839C66.7008 50.0827 66.169 51.282 65.1624 52.2678C64.1645 53.245 62.9854 53.7528 61.6119 54.0778C60.3149 54.3848 58.7011 54.5584 56.7558 54.7676L56.6513 54.7789C49.7551 55.5207 44.5465 55.5249 37.6684 54.7745L37.5622 54.7629C35.6442 54.5537 34.0471 54.3795 32.7599 54.0681C31.3915 53.7371 30.2202 53.219 29.2249 52.2296C28.2263 51.2369 27.7018 50.0571 27.3623 48.6788C27.0421 47.3788 26.856 45.7601 26.6318 43.8109L26.6197 43.7053C26.1588 39.6989 25.906 36.0546 26.0325 31.9659C26.037 31.8176 26.0414 31.6709 26.0458 31.5257C26.144 28.24 26.2178 25.7754 28.019 23.7623C28.9747 22.6942 30.1043 22.102 31.449 21.7089C32.6962 21.3444 34.2339 21.1249 36.0541 20.865C36.0914 20.8597 36.1288 20.8543 36.1664 20.849Z"
|
||||
class="fill-n-slate-10"
|
||||
/>
|
||||
<path
|
||||
d="M103.999 77.4062H108.999C110.104 77.4062 110.999 78.3017 110.999 79.4062C110.999 80.5108 110.104 81.4062 108.999 81.4062H103.999V77.4062Z"
|
||||
class="fill-n-slate-9"
|
||||
/>
|
||||
<path
|
||||
d="M63 77.4062H58C56.8954 77.4062 56 78.3017 56 79.4062C56 80.5108 56.8954 81.4062 58 81.4062H63V77.4062Z"
|
||||
class="fill-n-slate-9"
|
||||
/>
|
||||
<path
|
||||
d="M83.999 64.4063C85.4527 63.7978 86.4227 63.4566 87.9986 63.4508C89.5744 63.445 91.136 63.7496 92.5941 64.3472C94.0523 64.9449 95.3784 65.8239 96.4968 66.9341C97.6153 68.0442 98.5041 69.3638 99.1125 70.8175C99.721 72.2711 100.037 73.8304 100.043 75.4062"
|
||||
class="stroke-n-blue-11 fill-n-slate-2"
|
||||
stroke-width="1.6"
|
||||
/>
|
||||
<path
|
||||
d="M67.049 75.0889C67.0432 73.5131 67.3478 71.9515 67.9454 70.4934C68.5431 69.0352 69.4221 67.7091 70.5322 66.5907C71.6424 65.4723 72.962 64.5834 74.4157 63.975C75.8693 63.3666 77.4286 63.0504 79.0044 63.0445C80.5803 63.0387 82.1419 63.3433 83.6 63.941C85.0581 64.5386 86.3843 65.4176 87.5027 66.5278C88.6211 67.638 89.5099 68.9576 90.1184 70.4112C90.7268 71.8649 91.043 73.4241 91.0488 75"
|
||||
class="stroke-n-blue-11 fill-n-slate-2"
|
||||
stroke-width="1.6"
|
||||
/>
|
||||
<path
|
||||
d="M71.4659 74.9421C71.462 73.8915 71.6651 72.8505 72.0635 71.8784C72.462 70.9063 73.048 70.0222 73.7881 69.2766C74.5282 68.531 75.4079 67.9384 76.377 67.5328C77.3462 67.1272 78.3857 66.9164 79.4362 66.9125C80.4868 66.9086 81.5278 67.1117 82.4999 67.5101C83.472 67.9086 84.3561 68.4946 85.1017 69.2347C85.8473 69.9748 86.4399 70.8545 86.8455 71.8236C87.2511 72.7927 87.4619 73.8322 87.4658 74.8828"
|
||||
class="stroke-n-blue-11 fill-n-slate-2"
|
||||
stroke-width="1.6"
|
||||
/>
|
||||
<path
|
||||
d="M88.4304 67.3188C89.4809 67.3149 90.522 67.5179 91.4941 67.9164C92.4662 68.3148 93.3503 68.9008 94.0959 69.6409C94.8415 70.381 95.434 71.2608 95.8397 72.2299C96.2453 73.199 96.4561 74.2385 96.46 75.2891"
|
||||
class="stroke-n-blue-11 fill-n-slate-2"
|
||||
stroke-width="1.6"
|
||||
/>
|
||||
<path
|
||||
d="M75.9473 74.9203C75.9454 74.395 76.0469 73.8745 76.2461 73.3884C76.4453 72.9024 76.7383 72.4603 77.1084 72.0875C77.4785 71.7147 77.9183 71.4184 78.4029 71.2156C78.8874 71.0128 79.4072 70.9074 79.9325 70.9055C80.4578 70.9035 80.9783 71.0051 81.4643 71.2043C81.9504 71.4035 82.3924 71.6965 82.7652 72.0666C83.138 72.4366 83.4343 72.8765 83.6371 73.361C83.8399 73.8456 83.9453 74.3653 83.9473 74.8906"
|
||||
class="stroke-n-blue-11 fill-n-slate-2"
|
||||
stroke-width="1.6"
|
||||
/>
|
||||
<path
|
||||
d="M90.4585 71.6066C90.9445 71.8058 91.3866 72.0988 91.7594 72.4689C92.1322 72.839 92.4284 73.2788 92.6313 73.7634C92.8341 74.2479 92.9395 74.7677 92.9414 75.293"
|
||||
class="stroke-n-blue-11"
|
||||
stroke-width="1.6"
|
||||
/>
|
||||
<path
|
||||
d="M102 74.9062C103.09 74.9062 104.032 75.7999 103.973 76.957C103.853 79.29 103.335 81.588 102.439 83.751C101.939 84.9592 101.499 85.8713 100.931 86.7236C100.363 87.5763 99.6906 88.3338 98.7646 89.2598C96.6889 91.3355 93.3531 92.0527 91.0576 92.0527H76.5576C73.9588 92.0527 70.4405 91.3497 68.3506 89.2598C67.4349 88.3441 66.737 87.5905 66.1416 86.7441C65.5415 85.8911 65.0682 84.9765 64.5605 83.751C63.6646 81.588 63.1471 79.29 63.0273 76.957C62.968 75.7999 63.9098 74.9062 65 74.9062H102Z"
|
||||
class="fill-n-slate-2 stroke-n-slate-9"
|
||||
stroke-width="2"
|
||||
/>
|
||||
|
||||
<g class="default-group">
|
||||
<path
|
||||
d="M103.85 21.1431C104.824 20.8821 105.847 21.3479 106.291 22.2542L112.209 34.3514C112.793 35.544 112.143 36.9734 110.861 37.3171L100.014 40.2235C98.7313 40.5669 97.4538 39.654 97.3628 38.3295L96.4399 24.8937C96.3708 23.8871 97.0247 22.9718 97.9993 22.7107L103.85 21.1431Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<path
|
||||
d="M104.528 18.8482C104.84 18.7645 105.124 18.5966 105.347 18.363C106.576 17.0748 105.336 14.9834 103.616 15.4439L95.3492 17.659C93.6293 18.1203 93.6011 20.5515 95.3101 21.0523C95.6201 21.1431 95.9494 21.1468 96.2614 21.0633L104.528 18.8482Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<rect
|
||||
x="95.3496"
|
||||
y="21.2852"
|
||||
width="10.4348"
|
||||
height="2.08696"
|
||||
rx="0.695652"
|
||||
transform="rotate(-15 95.3496 21.2852)"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<path
|
||||
d="M103.249 14.4618C103.363 14.5616 103.464 14.6686 103.55 14.7819C103.782 15.0879 103.556 15.4819 103.185 15.5813L99.4893 16.5716L95.7936 17.5618C95.4224 17.6613 95.0296 17.4332 95.0777 17.052C95.0955 16.9109 95.1292 16.7679 95.1785 16.6242C95.3106 16.2393 95.5529 15.8568 95.8916 15.4986C96.2303 15.1403 96.6587 14.8133 97.1525 14.5362C97.6462 14.2592 98.1955 14.0375 98.7691 13.8838C99.3426 13.7301 99.9292 13.6474 100.495 13.6405C101.061 13.6336 101.596 13.7026 102.068 13.8435C102.541 13.9844 102.942 14.1945 103.249 14.4618Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
</g>
|
||||
|
||||
<g class="frame frame-1">
|
||||
<path
|
||||
d="M97.8899 24.7525C97.1819 24.0337 97.0822 22.9139 97.6517 22.0811L105.253 10.9636C106.002 9.8676 107.566 9.72734 108.498 10.6731L116.378 18.6731C117.31 19.619 117.146 21.1806 116.039 21.9133L104.809 29.3463C103.967 29.9032 102.848 29.7861 102.14 29.0673L97.8899 24.7525Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<path
|
||||
d="M95.5608 25.2908C95.3341 25.0607 95.0482 24.8971 94.735 24.8184C93.0078 24.3847 91.8006 26.4952 93.05 27.7641L99.0562 33.8613C100.306 35.1296 102.435 33.9543 102.027 32.2207C101.953 31.9063 101.794 31.6181 101.567 31.3879L95.5608 25.2908Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<rect
|
||||
x="102.207"
|
||||
y="32.0742"
|
||||
width="10.4348"
|
||||
height="2.08696"
|
||||
rx="0.695652"
|
||||
transform="rotate(-134.569 102.207 32.0742)"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<path
|
||||
d="M92.3768 28.5691C92.4071 28.4202 92.4505 28.2799 92.5066 28.1492C92.6581 27.7962 93.1124 27.7985 93.3821 28.0722L96.0671 30.7979L98.7521 33.5236C99.0218 33.7973 99.0172 34.2515 98.6619 34.3978C98.5304 34.4519 98.3895 34.4932 98.2402 34.5212C97.8402 34.5963 97.3879 34.5743 96.9092 34.4565C96.4304 34.3387 95.9346 34.1274 95.45 33.8347C94.9654 33.542 94.5015 33.1737 94.0848 32.7506C93.668 32.3276 93.3067 31.8582 93.0213 31.3692C92.7359 30.8803 92.5321 30.3813 92.4216 29.9009C92.311 29.4204 92.2958 28.9679 92.3768 28.5691Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<circle cx="85" cy="40" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="91" cy="38" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="91" cy="44" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="85" cy="46" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="79" cy="46" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="88" cy="51" r="1" class="fill-n-slate-11" />
|
||||
</g>
|
||||
|
||||
<g class="frame frame-2">
|
||||
<path
|
||||
d="M97.8879 24.7721C97.1799 24.0532 97.0803 22.9335 97.6497 22.1006L105.251 10.9832C106 9.88713 107.564 9.74688 108.496 10.6927L116.376 18.6926C117.308 19.6385 117.144 21.2001 116.037 21.9329L104.807 29.3658C103.965 29.9227 102.846 29.8056 102.138 29.0868L97.8879 24.7721Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<path
|
||||
d="M95.5579 25.3103C95.3311 25.0803 95.0453 24.9167 94.7321 24.838C93.0048 24.4042 91.7977 26.5148 93.0471 27.7836L99.0532 33.8808C100.303 35.1491 102.432 33.9738 102.024 32.2403C101.95 31.9259 101.791 31.6376 101.564 31.4075L95.5579 25.3103Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<rect
|
||||
x="102.205"
|
||||
y="32.0938"
|
||||
width="10.4348"
|
||||
height="2.08696"
|
||||
rx="0.695652"
|
||||
transform="rotate(-134.569 102.205 32.0938)"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<path
|
||||
d="M92.3758 28.5886C92.4061 28.4397 92.4495 28.2994 92.5056 28.1687C92.6572 27.8157 93.1115 27.818 93.3811 28.0917L96.0661 30.8174L98.7512 33.5431C99.0208 33.8168 99.0162 34.2711 98.661 34.4173C98.5294 34.4714 98.3885 34.5128 98.2392 34.5408C97.8392 34.6158 97.3869 34.5938 96.9082 34.476C96.4295 34.3582 95.9336 34.1469 95.449 33.8542C94.9644 33.5616 94.5005 33.1932 94.0838 32.7702C93.6671 32.3471 93.3057 31.8777 93.0203 31.3888C92.735 30.8998 92.5312 30.4009 92.4206 29.9204C92.31 29.44 92.2948 28.9874 92.3758 28.5886Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<circle cx="84" cy="42" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="90" cy="40" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="90" cy="46" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="84" cy="48" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="78" cy="48" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="87" cy="53" r="1" class="fill-n-slate-11" />
|
||||
</g>
|
||||
|
||||
<g class="frame frame-3">
|
||||
<path
|
||||
d="M97.8879 24.7486C97.1799 24.0298 97.0803 22.91 97.6497 22.0771L105.251 10.9597C106 9.86369 107.564 9.72344 108.496 10.6692L116.376 18.6692C117.308 19.6151 117.144 21.1767 116.037 21.9094L104.807 29.3424C103.965 29.8993 102.846 29.7822 102.138 29.0634L97.8879 24.7486Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<path
|
||||
d="M95.5579 25.2908C95.3311 25.0607 95.0453 24.8971 94.7321 24.8184C93.0048 24.3847 91.7977 26.4952 93.0471 27.7641L99.0532 33.8613C100.303 35.1296 102.432 33.9543 102.024 32.2207C101.95 31.9063 101.791 31.6181 101.564 31.3879L95.5579 25.2908Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<rect
|
||||
x="102.205"
|
||||
y="32.0703"
|
||||
width="10.4348"
|
||||
height="2.08696"
|
||||
rx="0.695652"
|
||||
transform="rotate(-134.569 102.205 32.0703)"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<path
|
||||
d="M92.3758 28.5691C92.4061 28.4202 92.4495 28.2799 92.5056 28.1492C92.6572 27.7962 93.1115 27.7985 93.3811 28.0722L96.0661 30.7979L98.7512 33.5236C99.0208 33.7973 99.0162 34.2515 98.661 34.3978C98.5294 34.4519 98.3885 34.4932 98.2392 34.5212C97.8392 34.5963 97.3869 34.5743 96.9082 34.4565C96.4295 34.3387 95.9336 34.1274 95.449 33.8347C94.9644 33.542 94.5005 33.1737 94.0838 32.7506C93.6671 32.3276 93.3057 31.8582 93.0203 31.3692C92.735 30.8803 92.5312 30.3813 92.4206 29.9009C92.31 29.4204 92.2948 28.9679 92.3758 28.5691Z"
|
||||
class="stroke-n-slate-11 fill-n-slate-2"
|
||||
stroke-width="1.43699"
|
||||
/>
|
||||
<circle cx="82" cy="44" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="88" cy="42" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="88" cy="48" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="82" cy="50" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="76" cy="50" r="1" class="fill-n-slate-11" />
|
||||
<circle cx="85" cy="55" r="1" class="fill-n-slate-11" />
|
||||
</g>
|
||||
|
||||
<defs>
|
||||
<radialGradient
|
||||
id="paint0_radial_720_25701"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(68 54) rotate(90) scale(54 68)"
|
||||
>
|
||||
<stop
|
||||
offset="0.527769"
|
||||
stop-color="var(--gradient-end)"
|
||||
stop-opacity="0.9"
|
||||
/>
|
||||
<stop offset="1" stop-color="var(--gradient-end)" stop-opacity="0" />
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
svg {
|
||||
--gradient-start: #fcfcfd;
|
||||
--gradient-end: #fcfcfd;
|
||||
}
|
||||
|
||||
body.dark svg,
|
||||
.htw-dark svg {
|
||||
--gradient-start: #121213;
|
||||
--gradient-end: #121213;
|
||||
}
|
||||
|
||||
.svg-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.default-group {
|
||||
opacity: 0;
|
||||
transition: opacity 120ms linear;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.frame {
|
||||
opacity: 0;
|
||||
animation-name: frameVisible;
|
||||
animation-duration: 600ms;
|
||||
animation-iteration-count: infinite;
|
||||
animation-timing-function: steps(1, end);
|
||||
transform-origin: center;
|
||||
}
|
||||
|
||||
.frame-1 {
|
||||
animation-delay: 0ms;
|
||||
}
|
||||
.frame-2 {
|
||||
animation-delay: 200ms;
|
||||
}
|
||||
.frame-3 {
|
||||
animation-delay: 400ms;
|
||||
}
|
||||
|
||||
@keyframes frameVisible {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
33.333% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.svg-wrapper.paused .frame {
|
||||
animation-play-state: paused;
|
||||
opacity: 0 !important;
|
||||
}
|
||||
|
||||
.svg-wrapper.paused .default-group {
|
||||
opacity: 1;
|
||||
}
|
||||
.svg-wrapper:not(.paused) .default-group {
|
||||
opacity: 0;
|
||||
}
|
||||
</style>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,752 @@
|
||||
<template>
|
||||
<div class="svg-wrapper relative" tabindex="0">
|
||||
<div class="absolute z-0 flex-shrink-0">
|
||||
<svg
|
||||
width="auto"
|
||||
height="auto"
|
||||
viewBox="0 0 200 156"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<g opacity="0.5">
|
||||
<g clip-path="url(#clip0_773_34322)">
|
||||
<circle cx="8" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="3" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="9" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="15" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="21" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="27" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="33" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="39" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="45" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="51" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="57" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="63" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="69" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="75" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="81" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="87" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="93" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="99" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="105" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="111" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="117" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="123" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="129" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="135" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="141" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="147" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="8" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="16" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="24" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="32" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="40" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="48" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="56" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="64" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="72" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="80" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="88" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="96" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="104" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="112" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="120" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="128" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="136" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="144" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="152" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="160" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="168" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="176" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="184" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<circle cx="192" cy="153" r="1" class="fill-n-blue-9" />
|
||||
<rect
|
||||
width="200"
|
||||
height="156"
|
||||
fill="url(#paint0_linear_773_34322)"
|
||||
/>
|
||||
<rect
|
||||
width="200"
|
||||
height="156"
|
||||
fill="url(#paint1_linear_773_34322)"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="paint0_linear_773_34322"
|
||||
x1="100"
|
||||
y1="0"
|
||||
x2="100"
|
||||
y2="156"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stop-color="var(--gradient-start)" />
|
||||
<stop
|
||||
offset="0.480769"
|
||||
stop-color="var(--gradient-start)"
|
||||
stop-opacity="0"
|
||||
/>
|
||||
<stop offset="1" stop-color="var(--gradient-start)" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint1_linear_773_34322"
|
||||
x1="0"
|
||||
y1="78"
|
||||
x2="200"
|
||||
y2="78"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stop-color="var(--gradient-start)" />
|
||||
<stop
|
||||
offset="0.480769"
|
||||
stop-color="var(--gradient-start)"
|
||||
stop-opacity="0"
|
||||
/>
|
||||
<stop offset="1" stop-color="var(--gradient-start)" />
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_773_34322">
|
||||
<rect width="200" height="156" rx="16" fill="white" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</div>
|
||||
<svg
|
||||
viewBox="0 0 136 108"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
aria-hidden="false"
|
||||
focusable="false"
|
||||
class="z-10 relative flex-shrink-0"
|
||||
>
|
||||
<rect width="136" height="108" fill="url(#paint0_radial_797_91519)" />
|
||||
<path
|
||||
d="M58 48.039C58 46.9129 58.9129 46 60.039 46C61.1651 46 62.0779 46.9129 62.0779 48.039V52.7513C62.0779 53.8774 61.1651 54.7902 60.039 54.7902C58.9129 54.7902 58 53.8774 58 52.7513V48.039Z"
|
||||
class="fill-n-slate-10"
|
||||
/>
|
||||
<path
|
||||
d="M64.5244 48.039C64.5244 46.9129 65.4373 46 66.5634 46C67.6895 46 68.6024 46.9129 68.6024 48.039V52.7513C68.6024 53.8774 67.6895 54.7902 66.5634 54.7902C65.4373 54.7902 64.5244 53.8774 64.5244 52.7513V48.039Z"
|
||||
class="fill-n-slate-10"
|
||||
/>
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M79.1862 40.173C71.5933 39.1017 65.4039 39.0594 57.6405 40.1683C55.678 40.4485 54.3796 40.638 53.3896 40.9273C52.4716 41.1956 51.9496 41.5155 51.5177 41.9981C50.6236 42.9974 50.5057 44.1276 50.3838 48.0695C50.264 51.9436 50.5013 55.4156 50.9507 59.3222C51.1901 61.4039 51.3549 62.8088 51.618 63.8769C51.8676 64.89 52.1694 65.4347 52.5889 65.8518C53.0117 66.2721 53.5536 66.5686 54.5482 66.8091C55.6002 67.0636 56.9806 67.2175 59.032 67.4413C65.6668 68.1652 70.6333 68.1615 77.2927 67.4451C79.369 67.2218 80.7719 67.0678 81.8396 66.815C82.8541 66.5749 83.3995 66.2805 83.8165 65.8722C84.2247 65.4724 84.5366 64.921 84.8071 63.8574C85.0894 62.7477 85.2815 61.2793 85.5594 59.1222C86.0553 55.2735 86.4123 51.8935 86.4262 48.1908C86.4411 44.232 86.3601 43.1056 85.4558 42.0608C85.019 41.5562 84.488 41.2244 83.5491 40.9481C82.5352 40.6497 81.2017 40.4573 79.1862 40.173ZM57.1664 36.849C65.2537 35.6939 71.7606 35.7391 79.6546 36.8529L79.7701 36.8692C81.6392 37.1328 83.2183 37.3555 84.4958 37.7315C85.8745 38.1372 87.0274 38.7532 87.991 39.8665C89.8087 41.9666 89.7969 44.4583 89.7811 47.7688C89.7804 47.9121 89.7797 48.057 89.7792 48.2034C89.7645 52.1184 89.3857 55.6634 88.8849 59.5506L88.8717 59.6535C88.6103 61.682 88.395 63.3537 88.0566 64.6839C87.7008 66.0827 87.169 67.282 86.1624 68.2678C85.1645 69.245 83.9854 69.7528 82.6119 70.0778C81.3149 70.3848 79.7011 70.5584 77.7558 70.7676L77.6513 70.7789C70.7551 71.5207 65.5465 71.5249 58.6684 70.7745L58.5622 70.7629C56.6442 70.5537 55.0471 70.3795 53.7599 70.0681C52.3915 69.7371 51.2202 69.219 50.2249 68.2296C49.2263 67.2369 48.7018 66.0571 48.3623 64.6788C48.0421 63.3788 47.856 61.7601 47.6318 59.8109L47.6197 59.7053C47.1588 55.6989 46.906 52.0546 47.0325 47.9659C47.037 47.8176 47.0414 47.6709 47.0458 47.5257C47.144 44.24 47.2178 41.7754 49.019 39.7623C49.9747 38.6942 51.1043 38.102 52.449 37.7089C53.6962 37.3444 55.2339 37.1249 57.0541 36.865C57.0914 36.8597 57.1288 36.8543 57.1664 36.849Z"
|
||||
class="fill-n-slate-10"
|
||||
/>
|
||||
<defs>
|
||||
<radialGradient
|
||||
id="paint0_radial_797_91519"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(68 54) rotate(90) scale(54 68)"
|
||||
>
|
||||
<stop
|
||||
offset="0.527769"
|
||||
stop-color="var(--gradient-end)"
|
||||
stop-opacity="0.9"
|
||||
/>
|
||||
<stop offset="1" stop-color="var(--gradient-end)" stop-opacity="0" />
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
svg {
|
||||
--gradient-start: #fcfcfd;
|
||||
--gradient-end: #fcfcfd;
|
||||
}
|
||||
|
||||
body.dark svg,
|
||||
.htw-dark svg {
|
||||
--gradient-start: #121213;
|
||||
--gradient-end: #121213;
|
||||
}
|
||||
|
||||
.svg-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
outline: none;
|
||||
}
|
||||
</style>
|
||||
@@ -45,7 +45,7 @@ const activeAssistantLabel = computed(() => {
|
||||
/>
|
||||
</template>
|
||||
<DropdownBody class="bottom-9 min-w-64 z-50" strong>
|
||||
<DropdownSection class="max-h-80 overflow-scroll">
|
||||
<DropdownSection class="[&>ul]:max-h-80">
|
||||
<DropdownItem
|
||||
v-for="assistant in assistants"
|
||||
:key="assistant.id"
|
||||
|
||||
@@ -91,7 +91,7 @@ const updateSelected = newValue => {
|
||||
:class="dropdownPosition"
|
||||
strong
|
||||
>
|
||||
<DropdownSection class="max-h-80 overflow-scroll">
|
||||
<DropdownSection class="[&>ul]:max-h-80">
|
||||
<DropdownItem
|
||||
v-for="option in options"
|
||||
:key="option.value"
|
||||
|
||||
@@ -123,7 +123,7 @@ const toggleOption = option => {
|
||||
</Button>
|
||||
</template>
|
||||
<DropdownBody class="top-0 min-w-48 z-50" strong>
|
||||
<DropdownSection class="max-h-80 overflow-scroll">
|
||||
<DropdownSection class="[&>ul]:max-h-80">
|
||||
<DropdownItem
|
||||
v-for="option in options"
|
||||
:key="option.id"
|
||||
|
||||
@@ -124,7 +124,7 @@ const toggleSelected = option => {
|
||||
:placeholder="searchPlaceholder || t('COMBOBOX.SEARCH_PLACEHOLDER')"
|
||||
/>
|
||||
</div>
|
||||
<DropdownSection class="max-h-80 overflow-scroll">
|
||||
<DropdownSection class="[&>ul]:max-h-80">
|
||||
<template v-if="searchResults.length">
|
||||
<DropdownItem
|
||||
v-for="option in searchResults"
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
<script setup>
|
||||
import { defineProps, computed } from 'vue';
|
||||
import { defineProps, computed, reactive } from 'vue';
|
||||
import Message from './Message.vue';
|
||||
import { MESSAGE_TYPES } from './constants.js';
|
||||
import { useCamelCase } from 'dashboard/composables/useTransformKeys';
|
||||
import { useMapGetter } from 'dashboard/composables/store.js';
|
||||
import MessageApi from 'dashboard/api/inbox/message.js';
|
||||
|
||||
/**
|
||||
* Props definition for the component
|
||||
@@ -43,6 +45,48 @@ const allMessages = computed(() => {
|
||||
return useCamelCase(props.messages, { deep: true });
|
||||
});
|
||||
|
||||
const currentChat = useMapGetter('getSelectedChat');
|
||||
|
||||
// Cache for fetched reply messages to avoid duplicate API calls
|
||||
const fetchedReplyMessages = reactive(new Map());
|
||||
|
||||
/**
|
||||
* Fetches a specific message from the API by trying to get messages around it
|
||||
* @param {number} messageId - The ID of the message to fetch
|
||||
* @param {number} conversationId - The ID of the conversation
|
||||
* @returns {Promise<Object|null>} - The fetched message or null if not found/error
|
||||
*/
|
||||
const fetchReplyMessage = async (messageId, conversationId) => {
|
||||
// Return cached result if already fetched
|
||||
if (fetchedReplyMessages.has(messageId)) {
|
||||
return fetchedReplyMessages.get(messageId);
|
||||
}
|
||||
|
||||
try {
|
||||
const response = await MessageApi.getPreviousMessages({
|
||||
conversationId,
|
||||
before: messageId + 100,
|
||||
after: messageId - 100,
|
||||
});
|
||||
|
||||
const messages = response.data?.payload || [];
|
||||
const targetMessage = messages.find(msg => msg.id === messageId);
|
||||
|
||||
if (targetMessage) {
|
||||
const camelCaseMessage = useCamelCase(targetMessage);
|
||||
fetchedReplyMessages.set(messageId, camelCaseMessage);
|
||||
return camelCaseMessage;
|
||||
}
|
||||
|
||||
// Cache null result to avoid repeated API calls
|
||||
fetchedReplyMessages.set(messageId, null);
|
||||
return null;
|
||||
} catch (error) {
|
||||
fetchedReplyMessages.set(messageId, null);
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Determines if a message should be grouped with the next message
|
||||
* @param {Number} index - Index of the current message
|
||||
@@ -90,10 +134,26 @@ const getInReplyToMessage = parentMessage => {
|
||||
|
||||
if (!inReplyToMessageId) return null;
|
||||
|
||||
// Find in-reply-to message in the messages prop
|
||||
const replyMessage = props.messages?.find(
|
||||
message => message.id === inReplyToMessageId
|
||||
);
|
||||
// Try to find in current messages first
|
||||
let replyMessage = props.messages?.find(msg => msg.id === inReplyToMessageId);
|
||||
|
||||
// Then try store messages
|
||||
if (!replyMessage && currentChat.value?.messages) {
|
||||
replyMessage = currentChat.value.messages.find(
|
||||
msg => msg.id === inReplyToMessageId
|
||||
);
|
||||
}
|
||||
|
||||
// Then check fetch cache
|
||||
if (!replyMessage && fetchedReplyMessages.has(inReplyToMessageId)) {
|
||||
replyMessage = fetchedReplyMessages.get(inReplyToMessageId);
|
||||
}
|
||||
|
||||
// If still not found and we have conversation context, fetch it
|
||||
if (!replyMessage && currentChat.value?.id) {
|
||||
fetchReplyMessage(inReplyToMessageId, currentChat.value.id);
|
||||
return null; // Let UI handle loading state
|
||||
}
|
||||
|
||||
return replyMessage ? useCamelCase(replyMessage) : null;
|
||||
};
|
||||
|
||||
@@ -76,7 +76,7 @@ function changeAvailabilityStatus(availability) {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<DropdownSection>
|
||||
<DropdownSection class="[&>ul]:overflow-visible">
|
||||
<div class="grid gap-0">
|
||||
<DropdownItem preserve-open>
|
||||
<div class="flex-grow flex items-center gap-1">
|
||||
|
||||
@@ -32,7 +32,10 @@ export default {
|
||||
value: {
|
||||
required,
|
||||
isEqual(value) {
|
||||
return value === this.confirmValue;
|
||||
// Trim whitespace from both input and target values
|
||||
const normalizedInput = (value || '').trim();
|
||||
const normalizedTarget = (this.confirmValue || '').trim();
|
||||
return normalizedInput === normalizedTarget;
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
@@ -49,4 +49,5 @@ export const PREMIUM_FEATURES = [
|
||||
FEATURE_FLAGS.AUDIT_LOGS,
|
||||
FEATURE_FLAGS.HELP_CENTER,
|
||||
FEATURE_FLAGS.CAPTAIN_V2,
|
||||
FEATURE_FLAGS.SAML,
|
||||
];
|
||||
|
||||
@@ -145,3 +145,34 @@ export const extractFilenameFromUrl = url => {
|
||||
return match ? match[1] : url;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Normalizes a comma/newline separated list of domains
|
||||
* @param {string} domains - The comma/newline separated list of domains
|
||||
* @returns {string} - The normalized list of domains
|
||||
* - Converts newlines to commas
|
||||
* - Trims whitespace
|
||||
* - Lowercases entries
|
||||
* - Removes empty values
|
||||
* - De-duplicates while preserving original order
|
||||
*/
|
||||
export const sanitizeAllowedDomains = domains => {
|
||||
if (!domains) return '';
|
||||
|
||||
const tokens = domains
|
||||
.replace(/\r\n/g, '\n')
|
||||
.replace(/\s*\n\s*/g, ',')
|
||||
.split(',')
|
||||
.map(d => d.trim().toLowerCase())
|
||||
.filter(d => d.length > 0);
|
||||
|
||||
// De-duplicate while preserving order using Set and filter index
|
||||
const seen = new Set();
|
||||
const unique = tokens.filter(d => {
|
||||
if (seen.has(d)) return false;
|
||||
seen.add(d);
|
||||
return true;
|
||||
});
|
||||
|
||||
return unique.join(',');
|
||||
};
|
||||
|
||||
@@ -8,6 +8,7 @@ import {
|
||||
timeStampAppendedURL,
|
||||
getHostNameFromURL,
|
||||
extractFilenameFromUrl,
|
||||
sanitizeAllowedDomains,
|
||||
} from '../URLHelper';
|
||||
|
||||
describe('#URL Helpers', () => {
|
||||
@@ -318,4 +319,32 @@ describe('#URL Helpers', () => {
|
||||
).toBe('file.doc');
|
||||
});
|
||||
});
|
||||
|
||||
describe('sanitizeAllowedDomains', () => {
|
||||
it('returns empty string for falsy input', () => {
|
||||
expect(sanitizeAllowedDomains('')).toBe('');
|
||||
expect(sanitizeAllowedDomains(null)).toBe('');
|
||||
expect(sanitizeAllowedDomains(undefined)).toBe('');
|
||||
});
|
||||
|
||||
it('trims whitespace and converts newlines to commas', () => {
|
||||
const input = ' example.com \n foo.bar\nbar.baz ';
|
||||
expect(sanitizeAllowedDomains(input)).toBe('example.com,foo.bar,bar.baz');
|
||||
});
|
||||
|
||||
it('handles Windows newlines and mixed spacing', () => {
|
||||
const input = ' example.com\r\n\tfoo.bar , bar.baz ';
|
||||
expect(sanitizeAllowedDomains(input)).toBe('example.com,foo.bar,bar.baz');
|
||||
});
|
||||
|
||||
it('removes empty values from repeated commas', () => {
|
||||
const input = ',,example.com,,foo.bar,,';
|
||||
expect(sanitizeAllowedDomains(input)).toBe('example.com,foo.bar');
|
||||
});
|
||||
|
||||
it('lowercases entries and de-duplicates preserving order', () => {
|
||||
const input = 'Example.com,FOO.bar,example.com,Bar.Baz,foo.BAR';
|
||||
expect(sanitizeAllowedDomains(input)).toBe('example.com,foo.bar,bar.baz');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -177,7 +177,8 @@
|
||||
"REFERER_LINK": "Referrer Link",
|
||||
"ASSIGNEE_NAME": "Assignee",
|
||||
"TEAM_NAME": "Team",
|
||||
"PRIORITY": "Priority"
|
||||
"PRIORITY": "Priority",
|
||||
"LABELS": "Labels"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -554,10 +554,12 @@
|
||||
"WROTE": "wrote",
|
||||
"YOU": "You",
|
||||
"SAVE": "Save note",
|
||||
"ADD_NOTE": "Add contact note",
|
||||
"EXPAND": "Expand",
|
||||
"COLLAPSE": "ሰብስብ",
|
||||
"NO_NOTES": "ማስታወሻዎች የሉም፣ ከእውቂያው ዝርዝር ገፅ ላይ ማስታወሻዎችን መጨመር ይችላሉ።",
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above."
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above.",
|
||||
"CONVERSATION_EMPTY_STATE": "There are no notes yet. Use the Add note button to create one."
|
||||
}
|
||||
},
|
||||
"EMPTY_STATE": {
|
||||
|
||||
@@ -741,7 +741,8 @@
|
||||
"LIVE_CHAT_WIDGET": {
|
||||
"LABEL": "Live chat widget",
|
||||
"PLACEHOLDER": "Select live chat widget",
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center"
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center",
|
||||
"NONE_OPTION": "No widget"
|
||||
},
|
||||
"BRAND_COLOR": {
|
||||
"LABEL": "Brand color"
|
||||
|
||||
@@ -272,8 +272,8 @@
|
||||
},
|
||||
"SUBMIT_BUTTON": "Create WhatsApp Channel",
|
||||
"EMBEDDED_SIGNUP": {
|
||||
"TITLE": "Quick Setup with Meta",
|
||||
"DESC": "You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"TITLE": "Quick setup with Meta",
|
||||
"DESC": "Use the WhatsApp Embedded Signup flow to quickly connect new numbers. You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"BENEFITS": {
|
||||
"TITLE": "Benefits of Embedded Signup:",
|
||||
"EASY_SETUP": "No manual configuration required",
|
||||
@@ -281,9 +281,8 @@
|
||||
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
|
||||
},
|
||||
"LEARN_MORE": {
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
|
||||
"LINK_TEXT": "this link.",
|
||||
"LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit {link}.",
|
||||
"LINK_TEXT": "this link"
|
||||
},
|
||||
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
|
||||
"AUTH_PROCESSING": "Authenticating with Meta",
|
||||
@@ -296,7 +295,9 @@
|
||||
"INVALID_BUSINESS_DATA": "Invalid business data received from Facebook. Please try again.",
|
||||
"SIGNUP_ERROR": "Signup error occurred",
|
||||
"AUTH_NOT_COMPLETED": "Authentication not completed. Please restart the process.",
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured"
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured",
|
||||
"MANUAL_FALLBACK": "If your number is already connected to the WhatsApp Business Platform (API), or if you’re a tech provider onboarding your own number, please use the {link} flow",
|
||||
"MANUAL_LINK_TEXT": "manual setup flow"
|
||||
},
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "We were not able to save the WhatsApp channel"
|
||||
|
||||
@@ -761,6 +761,7 @@
|
||||
"SELECTED": "{count} selected",
|
||||
"SELECT_ALL": "Select all ({count})",
|
||||
"UNSELECT_ALL": "Unselect all ({count})",
|
||||
"SEARCH_PLACEHOLDER": "Search FAQs...",
|
||||
"BULK_APPROVE_BUTTON": "Approve",
|
||||
"BULK_DELETE_BUTTON": "Delete",
|
||||
"BULK_APPROVE": {
|
||||
|
||||
@@ -22,6 +22,20 @@
|
||||
},
|
||||
"FORGOT_PASSWORD": "Forgot your password?",
|
||||
"CREATE_NEW_ACCOUNT": "Create a new account",
|
||||
"SUBMIT": "Login"
|
||||
"SUBMIT": "Login",
|
||||
"SAML": {
|
||||
"LABEL": "Log in via SSO",
|
||||
"TITLE": "Initiate Single Sign-on (SSO)",
|
||||
"SUBTITLE": "Enter your work email to access your organization",
|
||||
"BACK_TO_LOGIN": "Login via Password",
|
||||
"WORK_EMAIL": {
|
||||
"LABEL": "Work Email",
|
||||
"PLACEHOLDER": "Enter your work email"
|
||||
},
|
||||
"SUBMIT": "Continue with SSO",
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "SSO authentication failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"MFA_SETTINGS": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"SUBTITLE": "Secure your account with TOTP-based authentication",
|
||||
"DESCRIPTION": "Add an extra layer of security to your account using a time-based one-time password (TOTP)",
|
||||
"STATUS_TITLE": "Authentication Status",
|
||||
"STATUS_DESCRIPTION": "Manage your two-factor authentication settings and backup recovery codes",
|
||||
"ENABLED": "Enabled",
|
||||
"DISABLED": "Disabled",
|
||||
"STATUS_ENABLED": "Two-factor authentication is active",
|
||||
"STATUS_ENABLED_DESC": "Your account is protected with an additional layer of security",
|
||||
"ENABLE_BUTTON": "Enable Two-Factor Authentication",
|
||||
"ENHANCE_SECURITY": "Enhance Your Account Security",
|
||||
"ENHANCE_SECURITY_DESC": "Two-factor authentication adds an extra layer of security by requiring a verification code from your authenticator app in addition to your password.",
|
||||
"SETUP": {
|
||||
"STEP_NUMBER_1": "1",
|
||||
"STEP_NUMBER_2": "2",
|
||||
"STEP1_TITLE": "Scan QR Code with Your Authenticator App",
|
||||
"STEP1_DESCRIPTION": "Use Google Authenticator, Authy, or any TOTP-compatible app",
|
||||
"LOADING_QR": "Loading...",
|
||||
"MANUAL_ENTRY": "Can't scan? Enter code manually",
|
||||
"SECRET_KEY": "Secret Key",
|
||||
"COPY": "Copy",
|
||||
"ENTER_CODE": "Enter the 6-digit code from your authenticator app",
|
||||
"ENTER_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify & Continue",
|
||||
"CANCEL": "Cancel",
|
||||
"ERROR_STARTING": "MFA not enabled. Please contact administrator.",
|
||||
"INVALID_CODE": "Invalid verification code",
|
||||
"SECRET_COPIED": "Secret key copied to clipboard",
|
||||
"SUCCESS": "Two-factor authentication has been enabled successfully"
|
||||
},
|
||||
"BACKUP": {
|
||||
"TITLE": "Save Your Backup Codes",
|
||||
"DESCRIPTION": "Keep these codes safe. Each can be used once if you lose access to your authenticator",
|
||||
"IMPORTANT": "Important:",
|
||||
"IMPORTANT_NOTE": " Save these codes in a secure location. You won't be able to see them again.",
|
||||
"DOWNLOAD": "Download",
|
||||
"COPY_ALL": "Copy All",
|
||||
"CONFIRM": "I have saved my backup codes in a secure location and understand that I won't be able to see them again",
|
||||
"COMPLETE_SETUP": "Complete Setup",
|
||||
"CODES_COPIED": "Backup codes copied to clipboard"
|
||||
},
|
||||
"MANAGEMENT": {
|
||||
"BACKUP_CODES": "Backup Codes",
|
||||
"BACKUP_CODES_DESC": "Generate new codes if you've lost or used your existing ones",
|
||||
"REGENERATE": "Regenerate Backup Codes",
|
||||
"DISABLE_MFA": "Disable 2FA",
|
||||
"DISABLE_MFA_DESC": "Remove two-factor authentication from your account",
|
||||
"DISABLE_BUTTON": "Disable Two-Factor Authentication"
|
||||
},
|
||||
"DISABLE": {
|
||||
"TITLE": "Disable Two-Factor Authentication",
|
||||
"DESCRIPTION": "You'll need to enter your password and a verification code to disable two-factor authentication.",
|
||||
"PASSWORD": "Password",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Disable 2FA",
|
||||
"CANCEL": "Cancel",
|
||||
"SUCCESS": "Two-factor authentication has been disabled",
|
||||
"ERROR": "Failed to disable MFA. Please check your credentials."
|
||||
},
|
||||
"REGENERATE": {
|
||||
"TITLE": "Regenerate Backup Codes",
|
||||
"DESCRIPTION": "This will invalidate your existing backup codes and generate new ones. Enter your verification code to continue.",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Generate New Codes",
|
||||
"CANCEL": "Cancel",
|
||||
"NEW_CODES_TITLE": "New Backup Codes Generated",
|
||||
"NEW_CODES_DESC": "Your old backup codes have been invalidated. Save these new codes in a secure location.",
|
||||
"CODES_IMPORTANT": "Important:",
|
||||
"CODES_IMPORTANT_NOTE": " Each code can only be used once. Save them before closing this window.",
|
||||
"DOWNLOAD_CODES": "Download Codes",
|
||||
"COPY_ALL_CODES": "Copy All Codes",
|
||||
"CODES_SAVED": "I've Saved My Codes",
|
||||
"SUCCESS": "New backup codes have been generated",
|
||||
"ERROR": "Failed to regenerate backup codes"
|
||||
}
|
||||
},
|
||||
"MFA_VERIFICATION": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"DESCRIPTION": "Enter your verification code to continue",
|
||||
"AUTHENTICATOR_APP": "Authenticator App",
|
||||
"BACKUP_CODE": "Backup Code",
|
||||
"ENTER_OTP_CODE": "Enter 6-digit code from your authenticator app",
|
||||
"ENTER_BACKUP_CODE": "Enter one of your backup codes",
|
||||
"BACKUP_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify",
|
||||
"TRY_ANOTHER_METHOD": "Try another verification method",
|
||||
"CANCEL_LOGIN": "Cancel and return to login",
|
||||
"HELP_TEXT": "Having trouble signing in?",
|
||||
"LEARN_MORE": "Learn more about 2FA",
|
||||
"HELP_MODAL": {
|
||||
"TITLE": "Two-Factor Authentication Help",
|
||||
"AUTHENTICATOR_TITLE": "Using an Authenticator App",
|
||||
"AUTHENTICATOR_DESC": "Open your authenticator app (Google Authenticator, Authy, etc.) and enter the 6-digit code shown for your account.",
|
||||
"BACKUP_TITLE": "Using a Backup Code",
|
||||
"BACKUP_DESC": "If you don't have access to your authenticator app, you can use one of the backup codes you saved when setting up 2FA. Each code can only be used once.",
|
||||
"CONTACT_TITLE": "Need More Help?",
|
||||
"CONTACT_DESC_CLOUD": "If you've lost access to both your authenticator app and backup codes, please reach out to Chatwoot support for assistance.",
|
||||
"CONTACT_DESC_SELF_HOSTED": "If you've lost access to both your authenticator app and backup codes, please contact your administrator for assistance."
|
||||
},
|
||||
"VERIFICATION_FAILED": "Verification failed. Please try again."
|
||||
}
|
||||
}
|
||||
@@ -80,6 +80,11 @@
|
||||
"NOTE": "Updating your password would reset your logins in multiple devices.",
|
||||
"BTN_TEXT": "Change password"
|
||||
},
|
||||
"SECURITY_SECTION": {
|
||||
"TITLE": "Security",
|
||||
"NOTE": "Manage additional security features for your account.",
|
||||
"MFA_BUTTON": "Manage Two-Factor Authentication"
|
||||
},
|
||||
"ACCESS_TOKEN": {
|
||||
"TITLE": "Access Token",
|
||||
"NOTE": "This token can be used if you are building an API based integration",
|
||||
@@ -358,7 +363,8 @@
|
||||
"INFO_TEXT": "Let the system automatically mark you offline when you aren't using the app or dashboard.",
|
||||
"INFO_SHORT": "Automatically mark offline when you aren't using the app."
|
||||
},
|
||||
"DOCS": "Read docs"
|
||||
"DOCS": "Read docs",
|
||||
"SECURITY": "Security"
|
||||
},
|
||||
"BILLING_SETTINGS": {
|
||||
"TITLE": "Billing",
|
||||
@@ -390,6 +396,77 @@
|
||||
},
|
||||
"NO_BILLING_USER": "Your billing account is being configured. Please refresh the page and try again."
|
||||
},
|
||||
"SECURITY_SETTINGS": {
|
||||
"TITLE": "Security",
|
||||
"DESCRIPTION": "Manage your account security settings.",
|
||||
"LINK_TEXT": "Learn more about SAML SSO",
|
||||
"SAML": {
|
||||
"TITLE": "SAML SSO",
|
||||
"NOTE": "Configure SAML single sign-on for your account. Users will authenticate through your identity provider instead of using email/password.",
|
||||
"ACS_URL": {
|
||||
"LABEL": "ACS URL",
|
||||
"TOOLTIP": "Assertion Consumer Service URL - Configure this URL in your IdP as the destination for SAML responses"
|
||||
},
|
||||
"SSO_URL": {
|
||||
"LABEL": "SSO URL",
|
||||
"HELP": "The URL where SAML authentication requests will be sent",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml/sso"
|
||||
},
|
||||
"CERTIFICATE": {
|
||||
"LABEL": "Signing certificate in PEM format",
|
||||
"HELP": "The public certificate from your identity provider used to verify SAML responses",
|
||||
"PLACEHOLDER": "-----BEGIN CERTIFICATE-----\nMIIC..."
|
||||
},
|
||||
"FINGERPRINT": {
|
||||
"LABEL": "Fingerprint",
|
||||
"TOOLTIP": "SHA-1 fingerprint of the certificate - Use this to verify the certificate in your IdP configuration"
|
||||
},
|
||||
"COPY_SUCCESS": "Copied to clipboard",
|
||||
"SP_ENTITY_ID": {
|
||||
"LABEL": "SP Entity ID",
|
||||
"HELP": "Unique identifier for this application as a service provider (auto-generated).",
|
||||
"TOOLTIP": "Unique identifier for Chatwoot as the Service Provider - Configure this in your IdP settings"
|
||||
},
|
||||
"IDP_ENTITY_ID": {
|
||||
"LABEL": "Identity Provider Entity ID",
|
||||
"HELP": "Unique identifier for your identity provider (usually found in IdP configuration)",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml"
|
||||
},
|
||||
"UPDATE_BUTTON": "Update SAML Settings",
|
||||
"API": {
|
||||
"SUCCESS": "SAML settings updated successfully",
|
||||
"ERROR": "Failed to update SAML settings",
|
||||
"ERROR_LOADING": "Failed to load SAML settings",
|
||||
"DISABLED": "SAML settings disabled successfully"
|
||||
},
|
||||
"VALIDATION": {
|
||||
"REQUIRED_FIELDS": "SSO URL, Identity Provider Entity ID, and Certificate are required fields",
|
||||
"SSO_URL_ERROR": "Please enter a valid SSO URL",
|
||||
"CERTIFICATE_ERROR": "Certificate is required",
|
||||
"IDP_ENTITY_ID_ERROR": "Identity Provider Entity ID is required"
|
||||
},
|
||||
"ENTERPRISE_PAYWALL": {
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade to an Enterprise plan to access SAML single sign-on and other advanced security features.",
|
||||
"ASK_ADMIN": "Please reach out to your administrator for the upgrade."
|
||||
},
|
||||
"PAYWALL": {
|
||||
"TITLE": "Upgrade to enable SAML SSO",
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade your plan to get access to SAML single sign-on and other advanced features.",
|
||||
"UPGRADE_NOW": "Upgrade now",
|
||||
"CANCEL_ANYTIME": "You can change or cancel your plan anytime"
|
||||
},
|
||||
"ATTRIBUTE_MAPPING": {
|
||||
"TITLE": "SAML Attribute Setup",
|
||||
"DESCRIPTION": "The following attribute mappings must be configured in your identity provider"
|
||||
},
|
||||
"INFO_SECTION": {
|
||||
"TITLE": "Service Provider Information",
|
||||
"TOOLTIP": "Copy these values and configure them in your Identity Provider to establish the SAML connection"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CREATE_ACCOUNT": {
|
||||
"NO_ACCOUNT_WARNING": "Uh oh! We could not find any Chatwoot accounts. Please create a new account to continue.",
|
||||
"NEW_ACCOUNT": "New Account",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"BUTTON_LABEL": "Button {index}",
|
||||
"COUPON_CODE": "Enter coupon code (max 15 chars)",
|
||||
"MEDIA_URL_LABEL": "Enter {type} URL",
|
||||
"DOCUMENT_NAME_PLACEHOLDER": "Enter document filename (e.g., Invoice_2025.pdf)",
|
||||
"BUTTON_PARAMETER": "Enter button parameter"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -177,7 +177,8 @@
|
||||
"REFERER_LINK": "Referrer Link",
|
||||
"ASSIGNEE_NAME": "المكلَّف",
|
||||
"TEAM_NAME": "الفريق",
|
||||
"PRIORITY": "الأولوية"
|
||||
"PRIORITY": "الأولوية",
|
||||
"LABELS": "الوسوم"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -554,10 +554,12 @@
|
||||
"WROTE": "كتب",
|
||||
"YOU": "أنت",
|
||||
"SAVE": "Save note",
|
||||
"ADD_NOTE": "Add contact note",
|
||||
"EXPAND": "Expand",
|
||||
"COLLAPSE": "Collapse",
|
||||
"NO_NOTES": "No notes, you can add notes from the contact details page.",
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above."
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above.",
|
||||
"CONVERSATION_EMPTY_STATE": "There are no notes yet. Use the Add note button to create one."
|
||||
}
|
||||
},
|
||||
"EMPTY_STATE": {
|
||||
|
||||
@@ -741,7 +741,8 @@
|
||||
"LIVE_CHAT_WIDGET": {
|
||||
"LABEL": "Live chat widget",
|
||||
"PLACEHOLDER": "Select live chat widget",
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center"
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center",
|
||||
"NONE_OPTION": "No widget"
|
||||
},
|
||||
"BRAND_COLOR": {
|
||||
"LABEL": "Brand color"
|
||||
|
||||
@@ -272,8 +272,8 @@
|
||||
},
|
||||
"SUBMIT_BUTTON": "إنشاء قناة واتساب",
|
||||
"EMBEDDED_SIGNUP": {
|
||||
"TITLE": "Quick Setup with Meta",
|
||||
"DESC": "You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"TITLE": "Quick setup with Meta",
|
||||
"DESC": "Use the WhatsApp Embedded Signup flow to quickly connect new numbers. You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"BENEFITS": {
|
||||
"TITLE": "Benefits of Embedded Signup:",
|
||||
"EASY_SETUP": "No manual configuration required",
|
||||
@@ -281,9 +281,8 @@
|
||||
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
|
||||
},
|
||||
"LEARN_MORE": {
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
|
||||
"LINK_TEXT": "this link.",
|
||||
"LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit {link}.",
|
||||
"LINK_TEXT": "this link"
|
||||
},
|
||||
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
|
||||
"AUTH_PROCESSING": "Authenticating with Meta",
|
||||
@@ -296,7 +295,9 @@
|
||||
"INVALID_BUSINESS_DATA": "Invalid business data received from Facebook. Please try again.",
|
||||
"SIGNUP_ERROR": "Signup error occurred",
|
||||
"AUTH_NOT_COMPLETED": "Authentication not completed. Please restart the process.",
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured"
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured",
|
||||
"MANUAL_FALLBACK": "If your number is already connected to the WhatsApp Business Platform (API), or if you’re a tech provider onboarding your own number, please use the {link} flow",
|
||||
"MANUAL_LINK_TEXT": "manual setup flow"
|
||||
},
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "لم نتمكن من حفظ قناة واتساب"
|
||||
|
||||
@@ -761,6 +761,7 @@
|
||||
"SELECTED": "{count} selected",
|
||||
"SELECT_ALL": "Select all ({count})",
|
||||
"UNSELECT_ALL": "Unselect all ({count})",
|
||||
"SEARCH_PLACEHOLDER": "Search FAQs...",
|
||||
"BULK_APPROVE_BUTTON": "Approve",
|
||||
"BULK_DELETE_BUTTON": "حذف",
|
||||
"BULK_APPROVE": {
|
||||
|
||||
@@ -22,6 +22,20 @@
|
||||
},
|
||||
"FORGOT_PASSWORD": "نسيت كلمة المرور؟",
|
||||
"CREATE_NEW_ACCOUNT": "إنشاء حساب جديد",
|
||||
"SUBMIT": "تسجيل الدخول"
|
||||
"SUBMIT": "تسجيل الدخول",
|
||||
"SAML": {
|
||||
"LABEL": "Log in via SSO",
|
||||
"TITLE": "Initiate Single Sign-on (SSO)",
|
||||
"SUBTITLE": "Enter your work email to access your organization",
|
||||
"BACK_TO_LOGIN": "Login via Password",
|
||||
"WORK_EMAIL": {
|
||||
"LABEL": "Work Email",
|
||||
"PLACEHOLDER": "Enter your work email"
|
||||
},
|
||||
"SUBMIT": "Continue with SSO",
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "SSO authentication failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"MFA_SETTINGS": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"SUBTITLE": "Secure your account with TOTP-based authentication",
|
||||
"DESCRIPTION": "Add an extra layer of security to your account using a time-based one-time password (TOTP)",
|
||||
"STATUS_TITLE": "Authentication Status",
|
||||
"STATUS_DESCRIPTION": "Manage your two-factor authentication settings and backup recovery codes",
|
||||
"ENABLED": "مفعل",
|
||||
"DISABLED": "معطّل",
|
||||
"STATUS_ENABLED": "Two-factor authentication is active",
|
||||
"STATUS_ENABLED_DESC": "Your account is protected with an additional layer of security",
|
||||
"ENABLE_BUTTON": "Enable Two-Factor Authentication",
|
||||
"ENHANCE_SECURITY": "Enhance Your Account Security",
|
||||
"ENHANCE_SECURITY_DESC": "Two-factor authentication adds an extra layer of security by requiring a verification code from your authenticator app in addition to your password.",
|
||||
"SETUP": {
|
||||
"STEP_NUMBER_1": "1",
|
||||
"STEP_NUMBER_2": "2",
|
||||
"STEP1_TITLE": "Scan QR Code with Your Authenticator App",
|
||||
"STEP1_DESCRIPTION": "Use Google Authenticator, Authy, or any TOTP-compatible app",
|
||||
"LOADING_QR": "جار التحميل...",
|
||||
"MANUAL_ENTRY": "Can't scan? Enter code manually",
|
||||
"SECRET_KEY": "Secret Key",
|
||||
"COPY": "نسخ",
|
||||
"ENTER_CODE": "Enter the 6-digit code from your authenticator app",
|
||||
"ENTER_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify & Continue",
|
||||
"CANCEL": "إلغاء",
|
||||
"ERROR_STARTING": "MFA not enabled. Please contact administrator.",
|
||||
"INVALID_CODE": "Invalid verification code",
|
||||
"SECRET_COPIED": "Secret key copied to clipboard",
|
||||
"SUCCESS": "Two-factor authentication has been enabled successfully"
|
||||
},
|
||||
"BACKUP": {
|
||||
"TITLE": "Save Your Backup Codes",
|
||||
"DESCRIPTION": "Keep these codes safe. Each can be used once if you lose access to your authenticator",
|
||||
"IMPORTANT": "Important:",
|
||||
"IMPORTANT_NOTE": " Save these codes in a secure location. You won't be able to see them again.",
|
||||
"DOWNLOAD": "تحميل",
|
||||
"COPY_ALL": "Copy All",
|
||||
"CONFIRM": "I have saved my backup codes in a secure location and understand that I won't be able to see them again",
|
||||
"COMPLETE_SETUP": "Complete Setup",
|
||||
"CODES_COPIED": "Backup codes copied to clipboard"
|
||||
},
|
||||
"MANAGEMENT": {
|
||||
"BACKUP_CODES": "Backup Codes",
|
||||
"BACKUP_CODES_DESC": "Generate new codes if you've lost or used your existing ones",
|
||||
"REGENERATE": "Regenerate Backup Codes",
|
||||
"DISABLE_MFA": "Disable 2FA",
|
||||
"DISABLE_MFA_DESC": "Remove two-factor authentication from your account",
|
||||
"DISABLE_BUTTON": "Disable Two-Factor Authentication"
|
||||
},
|
||||
"DISABLE": {
|
||||
"TITLE": "Disable Two-Factor Authentication",
|
||||
"DESCRIPTION": "You'll need to enter your password and a verification code to disable two-factor authentication.",
|
||||
"PASSWORD": "كلمة المرور",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Disable 2FA",
|
||||
"CANCEL": "إلغاء",
|
||||
"SUCCESS": "Two-factor authentication has been disabled",
|
||||
"ERROR": "Failed to disable MFA. Please check your credentials."
|
||||
},
|
||||
"REGENERATE": {
|
||||
"TITLE": "Regenerate Backup Codes",
|
||||
"DESCRIPTION": "This will invalidate your existing backup codes and generate new ones. Enter your verification code to continue.",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Generate New Codes",
|
||||
"CANCEL": "إلغاء",
|
||||
"NEW_CODES_TITLE": "New Backup Codes Generated",
|
||||
"NEW_CODES_DESC": "Your old backup codes have been invalidated. Save these new codes in a secure location.",
|
||||
"CODES_IMPORTANT": "Important:",
|
||||
"CODES_IMPORTANT_NOTE": " Each code can only be used once. Save them before closing this window.",
|
||||
"DOWNLOAD_CODES": "Download Codes",
|
||||
"COPY_ALL_CODES": "Copy All Codes",
|
||||
"CODES_SAVED": "I've Saved My Codes",
|
||||
"SUCCESS": "New backup codes have been generated",
|
||||
"ERROR": "Failed to regenerate backup codes"
|
||||
}
|
||||
},
|
||||
"MFA_VERIFICATION": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"DESCRIPTION": "Enter your verification code to continue",
|
||||
"AUTHENTICATOR_APP": "Authenticator App",
|
||||
"BACKUP_CODE": "Backup Code",
|
||||
"ENTER_OTP_CODE": "Enter 6-digit code from your authenticator app",
|
||||
"ENTER_BACKUP_CODE": "Enter one of your backup codes",
|
||||
"BACKUP_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify",
|
||||
"TRY_ANOTHER_METHOD": "Try another verification method",
|
||||
"CANCEL_LOGIN": "Cancel and return to login",
|
||||
"HELP_TEXT": "Having trouble signing in?",
|
||||
"LEARN_MORE": "Learn more about 2FA",
|
||||
"HELP_MODAL": {
|
||||
"TITLE": "Two-Factor Authentication Help",
|
||||
"AUTHENTICATOR_TITLE": "Using an Authenticator App",
|
||||
"AUTHENTICATOR_DESC": "Open your authenticator app (Google Authenticator, Authy, etc.) and enter the 6-digit code shown for your account.",
|
||||
"BACKUP_TITLE": "Using a Backup Code",
|
||||
"BACKUP_DESC": "If you don't have access to your authenticator app, you can use one of the backup codes you saved when setting up 2FA. Each code can only be used once.",
|
||||
"CONTACT_TITLE": "Need More Help?",
|
||||
"CONTACT_DESC_CLOUD": "If you've lost access to both your authenticator app and backup codes, please reach out to Chatwoot support for assistance.",
|
||||
"CONTACT_DESC_SELF_HOSTED": "If you've lost access to both your authenticator app and backup codes, please contact your administrator for assistance."
|
||||
},
|
||||
"VERIFICATION_FAILED": "Verification failed. Please try again."
|
||||
}
|
||||
}
|
||||
@@ -80,6 +80,11 @@
|
||||
"NOTE": "تعديل كلمة المرور الخاصة بك سيعيد ضبط تسجيلات الدخول الخاصة بك في الأجهزة الأخرى.",
|
||||
"BTN_TEXT": "تغيير كلمة المرور"
|
||||
},
|
||||
"SECURITY_SECTION": {
|
||||
"TITLE": "Security",
|
||||
"NOTE": "Manage additional security features for your account.",
|
||||
"MFA_BUTTON": "Manage Two-Factor Authentication"
|
||||
},
|
||||
"ACCESS_TOKEN": {
|
||||
"TITLE": "رمز المصادقة",
|
||||
"NOTE": "يمكن استخدام هذا رمز المصادقة إذا كنت تبني تطبيقات API للتكامل مع Chatwoot",
|
||||
@@ -358,7 +363,8 @@
|
||||
"INFO_TEXT": "السماح للنظام بوضع علامة غير متصل تلقائياً عند عدم استخدام التطبيق أو لوحة التحكم.",
|
||||
"INFO_SHORT": "Automatically mark offline when you aren't using the app."
|
||||
},
|
||||
"DOCS": "قراءة المستندات"
|
||||
"DOCS": "قراءة المستندات",
|
||||
"SECURITY": "Security"
|
||||
},
|
||||
"BILLING_SETTINGS": {
|
||||
"TITLE": "الفواتير",
|
||||
@@ -390,6 +396,77 @@
|
||||
},
|
||||
"NO_BILLING_USER": "حساب الفوترة الخاص بك قيد الإعداد. الرجاء تحديث الصفحة وحاول مرة أخرى."
|
||||
},
|
||||
"SECURITY_SETTINGS": {
|
||||
"TITLE": "Security",
|
||||
"DESCRIPTION": "Manage your account security settings.",
|
||||
"LINK_TEXT": "Learn more about SAML SSO",
|
||||
"SAML": {
|
||||
"TITLE": "SAML SSO",
|
||||
"NOTE": "Configure SAML single sign-on for your account. Users will authenticate through your identity provider instead of using email/password.",
|
||||
"ACS_URL": {
|
||||
"LABEL": "ACS URL",
|
||||
"TOOLTIP": "Assertion Consumer Service URL - Configure this URL in your IdP as the destination for SAML responses"
|
||||
},
|
||||
"SSO_URL": {
|
||||
"LABEL": "SSO URL",
|
||||
"HELP": "The URL where SAML authentication requests will be sent",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml/sso"
|
||||
},
|
||||
"CERTIFICATE": {
|
||||
"LABEL": "Signing certificate in PEM format",
|
||||
"HELP": "The public certificate from your identity provider used to verify SAML responses",
|
||||
"PLACEHOLDER": "-----BEGIN CERTIFICATE-----\nMIIC..."
|
||||
},
|
||||
"FINGERPRINT": {
|
||||
"LABEL": "Fingerprint",
|
||||
"TOOLTIP": "SHA-1 fingerprint of the certificate - Use this to verify the certificate in your IdP configuration"
|
||||
},
|
||||
"COPY_SUCCESS": "تم نسخ الكود إلى الحافظة بنجاح",
|
||||
"SP_ENTITY_ID": {
|
||||
"LABEL": "SP Entity ID",
|
||||
"HELP": "Unique identifier for this application as a service provider (auto-generated).",
|
||||
"TOOLTIP": "Unique identifier for Chatwoot as the Service Provider - Configure this in your IdP settings"
|
||||
},
|
||||
"IDP_ENTITY_ID": {
|
||||
"LABEL": "Identity Provider Entity ID",
|
||||
"HELP": "Unique identifier for your identity provider (usually found in IdP configuration)",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml"
|
||||
},
|
||||
"UPDATE_BUTTON": "Update SAML Settings",
|
||||
"API": {
|
||||
"SUCCESS": "SAML settings updated successfully",
|
||||
"ERROR": "Failed to update SAML settings",
|
||||
"ERROR_LOADING": "Failed to load SAML settings",
|
||||
"DISABLED": "SAML settings disabled successfully"
|
||||
},
|
||||
"VALIDATION": {
|
||||
"REQUIRED_FIELDS": "SSO URL, Identity Provider Entity ID, and Certificate are required fields",
|
||||
"SSO_URL_ERROR": "Please enter a valid SSO URL",
|
||||
"CERTIFICATE_ERROR": "Certificate is required",
|
||||
"IDP_ENTITY_ID_ERROR": "Identity Provider Entity ID is required"
|
||||
},
|
||||
"ENTERPRISE_PAYWALL": {
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade to an Enterprise plan to access SAML single sign-on and other advanced security features.",
|
||||
"ASK_ADMIN": "Please reach out to your administrator for the upgrade."
|
||||
},
|
||||
"PAYWALL": {
|
||||
"TITLE": "Upgrade to enable SAML SSO",
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade your plan to get access to SAML single sign-on and other advanced features.",
|
||||
"UPGRADE_NOW": "Upgrade now",
|
||||
"CANCEL_ANYTIME": "You can change or cancel your plan anytime"
|
||||
},
|
||||
"ATTRIBUTE_MAPPING": {
|
||||
"TITLE": "SAML Attribute Setup",
|
||||
"DESCRIPTION": "The following attribute mappings must be configured in your identity provider"
|
||||
},
|
||||
"INFO_SECTION": {
|
||||
"TITLE": "Service Provider Information",
|
||||
"TOOLTIP": "Copy these values and configure them in your Identity Provider to establish the SAML connection"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CREATE_ACCOUNT": {
|
||||
"NO_ACCOUNT_WARNING": "أوه! لم نتمكن من العثور على الحساب. الرجاء إنشاء حساب جديد للمتابعة.",
|
||||
"NEW_ACCOUNT": "حساب جديد",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"BUTTON_LABEL": "Button {index}",
|
||||
"COUPON_CODE": "Enter coupon code (max 15 chars)",
|
||||
"MEDIA_URL_LABEL": "Enter {type} URL",
|
||||
"DOCUMENT_NAME_PLACEHOLDER": "Enter document filename (e.g., Invoice_2025.pdf)",
|
||||
"BUTTON_PARAMETER": "Enter button parameter"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -177,7 +177,8 @@
|
||||
"REFERER_LINK": "Referrer Link",
|
||||
"ASSIGNEE_NAME": "Assignee",
|
||||
"TEAM_NAME": "Team",
|
||||
"PRIORITY": "Priority"
|
||||
"PRIORITY": "Priority",
|
||||
"LABELS": "Labels"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -554,10 +554,12 @@
|
||||
"WROTE": "wrote",
|
||||
"YOU": "You",
|
||||
"SAVE": "Save note",
|
||||
"ADD_NOTE": "Add contact note",
|
||||
"EXPAND": "Expand",
|
||||
"COLLAPSE": "Collapse",
|
||||
"NO_NOTES": "No notes, you can add notes from the contact details page.",
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above."
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above.",
|
||||
"CONVERSATION_EMPTY_STATE": "There are no notes yet. Use the Add note button to create one."
|
||||
}
|
||||
},
|
||||
"EMPTY_STATE": {
|
||||
|
||||
@@ -741,7 +741,8 @@
|
||||
"LIVE_CHAT_WIDGET": {
|
||||
"LABEL": "Live chat widget",
|
||||
"PLACEHOLDER": "Select live chat widget",
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center"
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center",
|
||||
"NONE_OPTION": "No widget"
|
||||
},
|
||||
"BRAND_COLOR": {
|
||||
"LABEL": "Brand color"
|
||||
|
||||
@@ -272,8 +272,8 @@
|
||||
},
|
||||
"SUBMIT_BUTTON": "Create WhatsApp Channel",
|
||||
"EMBEDDED_SIGNUP": {
|
||||
"TITLE": "Quick Setup with Meta",
|
||||
"DESC": "You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"TITLE": "Quick setup with Meta",
|
||||
"DESC": "Use the WhatsApp Embedded Signup flow to quickly connect new numbers. You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"BENEFITS": {
|
||||
"TITLE": "Benefits of Embedded Signup:",
|
||||
"EASY_SETUP": "No manual configuration required",
|
||||
@@ -281,9 +281,8 @@
|
||||
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
|
||||
},
|
||||
"LEARN_MORE": {
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
|
||||
"LINK_TEXT": "this link.",
|
||||
"LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit {link}.",
|
||||
"LINK_TEXT": "this link"
|
||||
},
|
||||
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
|
||||
"AUTH_PROCESSING": "Authenticating with Meta",
|
||||
@@ -296,7 +295,9 @@
|
||||
"INVALID_BUSINESS_DATA": "Invalid business data received from Facebook. Please try again.",
|
||||
"SIGNUP_ERROR": "Signup error occurred",
|
||||
"AUTH_NOT_COMPLETED": "Authentication not completed. Please restart the process.",
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured"
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured",
|
||||
"MANUAL_FALLBACK": "If your number is already connected to the WhatsApp Business Platform (API), or if you’re a tech provider onboarding your own number, please use the {link} flow",
|
||||
"MANUAL_LINK_TEXT": "manual setup flow"
|
||||
},
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "We were not able to save the WhatsApp channel"
|
||||
|
||||
@@ -761,6 +761,7 @@
|
||||
"SELECTED": "{count} selected",
|
||||
"SELECT_ALL": "Select all ({count})",
|
||||
"UNSELECT_ALL": "Unselect all ({count})",
|
||||
"SEARCH_PLACEHOLDER": "Search FAQs...",
|
||||
"BULK_APPROVE_BUTTON": "Approve",
|
||||
"BULK_DELETE_BUTTON": "Delete",
|
||||
"BULK_APPROVE": {
|
||||
|
||||
@@ -22,6 +22,20 @@
|
||||
},
|
||||
"FORGOT_PASSWORD": "Forgot your password?",
|
||||
"CREATE_NEW_ACCOUNT": "Create a new account",
|
||||
"SUBMIT": "Login"
|
||||
"SUBMIT": "Login",
|
||||
"SAML": {
|
||||
"LABEL": "Log in via SSO",
|
||||
"TITLE": "Initiate Single Sign-on (SSO)",
|
||||
"SUBTITLE": "Enter your work email to access your organization",
|
||||
"BACK_TO_LOGIN": "Login via Password",
|
||||
"WORK_EMAIL": {
|
||||
"LABEL": "Work Email",
|
||||
"PLACEHOLDER": "Enter your work email"
|
||||
},
|
||||
"SUBMIT": "Continue with SSO",
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "SSO authentication failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"MFA_SETTINGS": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"SUBTITLE": "Secure your account with TOTP-based authentication",
|
||||
"DESCRIPTION": "Add an extra layer of security to your account using a time-based one-time password (TOTP)",
|
||||
"STATUS_TITLE": "Authentication Status",
|
||||
"STATUS_DESCRIPTION": "Manage your two-factor authentication settings and backup recovery codes",
|
||||
"ENABLED": "Enabled",
|
||||
"DISABLED": "Disabled",
|
||||
"STATUS_ENABLED": "Two-factor authentication is active",
|
||||
"STATUS_ENABLED_DESC": "Your account is protected with an additional layer of security",
|
||||
"ENABLE_BUTTON": "Enable Two-Factor Authentication",
|
||||
"ENHANCE_SECURITY": "Enhance Your Account Security",
|
||||
"ENHANCE_SECURITY_DESC": "Two-factor authentication adds an extra layer of security by requiring a verification code from your authenticator app in addition to your password.",
|
||||
"SETUP": {
|
||||
"STEP_NUMBER_1": "1",
|
||||
"STEP_NUMBER_2": "2",
|
||||
"STEP1_TITLE": "Scan QR Code with Your Authenticator App",
|
||||
"STEP1_DESCRIPTION": "Use Google Authenticator, Authy, or any TOTP-compatible app",
|
||||
"LOADING_QR": "Loading...",
|
||||
"MANUAL_ENTRY": "Can't scan? Enter code manually",
|
||||
"SECRET_KEY": "Secret Key",
|
||||
"COPY": "Copy",
|
||||
"ENTER_CODE": "Enter the 6-digit code from your authenticator app",
|
||||
"ENTER_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify & Continue",
|
||||
"CANCEL": "Cancel",
|
||||
"ERROR_STARTING": "MFA not enabled. Please contact administrator.",
|
||||
"INVALID_CODE": "Invalid verification code",
|
||||
"SECRET_COPIED": "Secret key copied to clipboard",
|
||||
"SUCCESS": "Two-factor authentication has been enabled successfully"
|
||||
},
|
||||
"BACKUP": {
|
||||
"TITLE": "Save Your Backup Codes",
|
||||
"DESCRIPTION": "Keep these codes safe. Each can be used once if you lose access to your authenticator",
|
||||
"IMPORTANT": "Important:",
|
||||
"IMPORTANT_NOTE": " Save these codes in a secure location. You won't be able to see them again.",
|
||||
"DOWNLOAD": "Download",
|
||||
"COPY_ALL": "Copy All",
|
||||
"CONFIRM": "I have saved my backup codes in a secure location and understand that I won't be able to see them again",
|
||||
"COMPLETE_SETUP": "Complete Setup",
|
||||
"CODES_COPIED": "Backup codes copied to clipboard"
|
||||
},
|
||||
"MANAGEMENT": {
|
||||
"BACKUP_CODES": "Backup Codes",
|
||||
"BACKUP_CODES_DESC": "Generate new codes if you've lost or used your existing ones",
|
||||
"REGENERATE": "Regenerate Backup Codes",
|
||||
"DISABLE_MFA": "Disable 2FA",
|
||||
"DISABLE_MFA_DESC": "Remove two-factor authentication from your account",
|
||||
"DISABLE_BUTTON": "Disable Two-Factor Authentication"
|
||||
},
|
||||
"DISABLE": {
|
||||
"TITLE": "Disable Two-Factor Authentication",
|
||||
"DESCRIPTION": "You'll need to enter your password and a verification code to disable two-factor authentication.",
|
||||
"PASSWORD": "Password",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Disable 2FA",
|
||||
"CANCEL": "Cancel",
|
||||
"SUCCESS": "Two-factor authentication has been disabled",
|
||||
"ERROR": "Failed to disable MFA. Please check your credentials."
|
||||
},
|
||||
"REGENERATE": {
|
||||
"TITLE": "Regenerate Backup Codes",
|
||||
"DESCRIPTION": "This will invalidate your existing backup codes and generate new ones. Enter your verification code to continue.",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Generate New Codes",
|
||||
"CANCEL": "Cancel",
|
||||
"NEW_CODES_TITLE": "New Backup Codes Generated",
|
||||
"NEW_CODES_DESC": "Your old backup codes have been invalidated. Save these new codes in a secure location.",
|
||||
"CODES_IMPORTANT": "Important:",
|
||||
"CODES_IMPORTANT_NOTE": " Each code can only be used once. Save them before closing this window.",
|
||||
"DOWNLOAD_CODES": "Download Codes",
|
||||
"COPY_ALL_CODES": "Copy All Codes",
|
||||
"CODES_SAVED": "I've Saved My Codes",
|
||||
"SUCCESS": "New backup codes have been generated",
|
||||
"ERROR": "Failed to regenerate backup codes"
|
||||
}
|
||||
},
|
||||
"MFA_VERIFICATION": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"DESCRIPTION": "Enter your verification code to continue",
|
||||
"AUTHENTICATOR_APP": "Authenticator App",
|
||||
"BACKUP_CODE": "Backup Code",
|
||||
"ENTER_OTP_CODE": "Enter 6-digit code from your authenticator app",
|
||||
"ENTER_BACKUP_CODE": "Enter one of your backup codes",
|
||||
"BACKUP_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify",
|
||||
"TRY_ANOTHER_METHOD": "Try another verification method",
|
||||
"CANCEL_LOGIN": "Cancel and return to login",
|
||||
"HELP_TEXT": "Having trouble signing in?",
|
||||
"LEARN_MORE": "Learn more about 2FA",
|
||||
"HELP_MODAL": {
|
||||
"TITLE": "Two-Factor Authentication Help",
|
||||
"AUTHENTICATOR_TITLE": "Using an Authenticator App",
|
||||
"AUTHENTICATOR_DESC": "Open your authenticator app (Google Authenticator, Authy, etc.) and enter the 6-digit code shown for your account.",
|
||||
"BACKUP_TITLE": "Using a Backup Code",
|
||||
"BACKUP_DESC": "If you don't have access to your authenticator app, you can use one of the backup codes you saved when setting up 2FA. Each code can only be used once.",
|
||||
"CONTACT_TITLE": "Need More Help?",
|
||||
"CONTACT_DESC_CLOUD": "If you've lost access to both your authenticator app and backup codes, please reach out to Chatwoot support for assistance.",
|
||||
"CONTACT_DESC_SELF_HOSTED": "If you've lost access to both your authenticator app and backup codes, please contact your administrator for assistance."
|
||||
},
|
||||
"VERIFICATION_FAILED": "Verification failed. Please try again."
|
||||
}
|
||||
}
|
||||
@@ -80,6 +80,11 @@
|
||||
"NOTE": "Updating your password would reset your logins in multiple devices.",
|
||||
"BTN_TEXT": "Change password"
|
||||
},
|
||||
"SECURITY_SECTION": {
|
||||
"TITLE": "Security",
|
||||
"NOTE": "Manage additional security features for your account.",
|
||||
"MFA_BUTTON": "Manage Two-Factor Authentication"
|
||||
},
|
||||
"ACCESS_TOKEN": {
|
||||
"TITLE": "Access Token",
|
||||
"NOTE": "This token can be used if you are building an API based integration",
|
||||
@@ -358,7 +363,8 @@
|
||||
"INFO_TEXT": "Let the system automatically mark you offline when you aren't using the app or dashboard.",
|
||||
"INFO_SHORT": "Automatically mark offline when you aren't using the app."
|
||||
},
|
||||
"DOCS": "Read docs"
|
||||
"DOCS": "Read docs",
|
||||
"SECURITY": "Security"
|
||||
},
|
||||
"BILLING_SETTINGS": {
|
||||
"TITLE": "Billing",
|
||||
@@ -390,6 +396,77 @@
|
||||
},
|
||||
"NO_BILLING_USER": "Your billing account is being configured. Please refresh the page and try again."
|
||||
},
|
||||
"SECURITY_SETTINGS": {
|
||||
"TITLE": "Security",
|
||||
"DESCRIPTION": "Manage your account security settings.",
|
||||
"LINK_TEXT": "Learn more about SAML SSO",
|
||||
"SAML": {
|
||||
"TITLE": "SAML SSO",
|
||||
"NOTE": "Configure SAML single sign-on for your account. Users will authenticate through your identity provider instead of using email/password.",
|
||||
"ACS_URL": {
|
||||
"LABEL": "ACS URL",
|
||||
"TOOLTIP": "Assertion Consumer Service URL - Configure this URL in your IdP as the destination for SAML responses"
|
||||
},
|
||||
"SSO_URL": {
|
||||
"LABEL": "SSO URL",
|
||||
"HELP": "The URL where SAML authentication requests will be sent",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml/sso"
|
||||
},
|
||||
"CERTIFICATE": {
|
||||
"LABEL": "Signing certificate in PEM format",
|
||||
"HELP": "The public certificate from your identity provider used to verify SAML responses",
|
||||
"PLACEHOLDER": "-----BEGIN CERTIFICATE-----\nMIIC..."
|
||||
},
|
||||
"FINGERPRINT": {
|
||||
"LABEL": "Fingerprint",
|
||||
"TOOLTIP": "SHA-1 fingerprint of the certificate - Use this to verify the certificate in your IdP configuration"
|
||||
},
|
||||
"COPY_SUCCESS": "Copied to clipboard",
|
||||
"SP_ENTITY_ID": {
|
||||
"LABEL": "SP Entity ID",
|
||||
"HELP": "Unique identifier for this application as a service provider (auto-generated).",
|
||||
"TOOLTIP": "Unique identifier for Chatwoot as the Service Provider - Configure this in your IdP settings"
|
||||
},
|
||||
"IDP_ENTITY_ID": {
|
||||
"LABEL": "Identity Provider Entity ID",
|
||||
"HELP": "Unique identifier for your identity provider (usually found in IdP configuration)",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml"
|
||||
},
|
||||
"UPDATE_BUTTON": "Update SAML Settings",
|
||||
"API": {
|
||||
"SUCCESS": "SAML settings updated successfully",
|
||||
"ERROR": "Failed to update SAML settings",
|
||||
"ERROR_LOADING": "Failed to load SAML settings",
|
||||
"DISABLED": "SAML settings disabled successfully"
|
||||
},
|
||||
"VALIDATION": {
|
||||
"REQUIRED_FIELDS": "SSO URL, Identity Provider Entity ID, and Certificate are required fields",
|
||||
"SSO_URL_ERROR": "Please enter a valid SSO URL",
|
||||
"CERTIFICATE_ERROR": "Certificate is required",
|
||||
"IDP_ENTITY_ID_ERROR": "Identity Provider Entity ID is required"
|
||||
},
|
||||
"ENTERPRISE_PAYWALL": {
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade to an Enterprise plan to access SAML single sign-on and other advanced security features.",
|
||||
"ASK_ADMIN": "Please reach out to your administrator for the upgrade."
|
||||
},
|
||||
"PAYWALL": {
|
||||
"TITLE": "Upgrade to enable SAML SSO",
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade your plan to get access to SAML single sign-on and other advanced features.",
|
||||
"UPGRADE_NOW": "Upgrade now",
|
||||
"CANCEL_ANYTIME": "You can change or cancel your plan anytime"
|
||||
},
|
||||
"ATTRIBUTE_MAPPING": {
|
||||
"TITLE": "SAML Attribute Setup",
|
||||
"DESCRIPTION": "The following attribute mappings must be configured in your identity provider"
|
||||
},
|
||||
"INFO_SECTION": {
|
||||
"TITLE": "Service Provider Information",
|
||||
"TOOLTIP": "Copy these values and configure them in your Identity Provider to establish the SAML connection"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CREATE_ACCOUNT": {
|
||||
"NO_ACCOUNT_WARNING": "Uh oh! We could not find any Chatwoot accounts. Please create a new account to continue.",
|
||||
"NEW_ACCOUNT": "New Account",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"BUTTON_LABEL": "Button {index}",
|
||||
"COUPON_CODE": "Enter coupon code (max 15 chars)",
|
||||
"MEDIA_URL_LABEL": "Enter {type} URL",
|
||||
"DOCUMENT_NAME_PLACEHOLDER": "Enter document filename (e.g., Invoice_2025.pdf)",
|
||||
"BUTTON_PARAMETER": "Enter button parameter"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -177,7 +177,8 @@
|
||||
"REFERER_LINK": "Referrer Link",
|
||||
"ASSIGNEE_NAME": "Assignee",
|
||||
"TEAM_NAME": "Team",
|
||||
"PRIORITY": "Priority"
|
||||
"PRIORITY": "Priority",
|
||||
"LABELS": "Labels"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -554,10 +554,12 @@
|
||||
"WROTE": "wrote",
|
||||
"YOU": "You",
|
||||
"SAVE": "Save note",
|
||||
"ADD_NOTE": "Add contact note",
|
||||
"EXPAND": "Expand",
|
||||
"COLLAPSE": "Collapse",
|
||||
"NO_NOTES": "No notes, you can add notes from the contact details page.",
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above."
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above.",
|
||||
"CONVERSATION_EMPTY_STATE": "There are no notes yet. Use the Add note button to create one."
|
||||
}
|
||||
},
|
||||
"EMPTY_STATE": {
|
||||
|
||||
@@ -741,7 +741,8 @@
|
||||
"LIVE_CHAT_WIDGET": {
|
||||
"LABEL": "Live chat widget",
|
||||
"PLACEHOLDER": "Select live chat widget",
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center"
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center",
|
||||
"NONE_OPTION": "No widget"
|
||||
},
|
||||
"BRAND_COLOR": {
|
||||
"LABEL": "Brand color"
|
||||
|
||||
@@ -272,8 +272,8 @@
|
||||
},
|
||||
"SUBMIT_BUTTON": "Create WhatsApp Channel",
|
||||
"EMBEDDED_SIGNUP": {
|
||||
"TITLE": "Quick Setup with Meta",
|
||||
"DESC": "You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"TITLE": "Quick setup with Meta",
|
||||
"DESC": "Use the WhatsApp Embedded Signup flow to quickly connect new numbers. You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"BENEFITS": {
|
||||
"TITLE": "Benefits of Embedded Signup:",
|
||||
"EASY_SETUP": "No manual configuration required",
|
||||
@@ -281,9 +281,8 @@
|
||||
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
|
||||
},
|
||||
"LEARN_MORE": {
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
|
||||
"LINK_TEXT": "this link.",
|
||||
"LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit {link}.",
|
||||
"LINK_TEXT": "this link"
|
||||
},
|
||||
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
|
||||
"AUTH_PROCESSING": "Authenticating with Meta",
|
||||
@@ -296,7 +295,9 @@
|
||||
"INVALID_BUSINESS_DATA": "Invalid business data received from Facebook. Please try again.",
|
||||
"SIGNUP_ERROR": "Signup error occurred",
|
||||
"AUTH_NOT_COMPLETED": "Authentication not completed. Please restart the process.",
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured"
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured",
|
||||
"MANUAL_FALLBACK": "If your number is already connected to the WhatsApp Business Platform (API), or if you’re a tech provider onboarding your own number, please use the {link} flow",
|
||||
"MANUAL_LINK_TEXT": "manual setup flow"
|
||||
},
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "We were not able to save the WhatsApp channel"
|
||||
|
||||
@@ -761,6 +761,7 @@
|
||||
"SELECTED": "{count} selected",
|
||||
"SELECT_ALL": "Select all ({count})",
|
||||
"UNSELECT_ALL": "Unselect all ({count})",
|
||||
"SEARCH_PLACEHOLDER": "Search FAQs...",
|
||||
"BULK_APPROVE_BUTTON": "Approve",
|
||||
"BULK_DELETE_BUTTON": "Изтрий",
|
||||
"BULK_APPROVE": {
|
||||
|
||||
@@ -22,6 +22,20 @@
|
||||
},
|
||||
"FORGOT_PASSWORD": "Forgot your password?",
|
||||
"CREATE_NEW_ACCOUNT": "Create new account",
|
||||
"SUBMIT": "Login"
|
||||
"SUBMIT": "Login",
|
||||
"SAML": {
|
||||
"LABEL": "Log in via SSO",
|
||||
"TITLE": "Initiate Single Sign-on (SSO)",
|
||||
"SUBTITLE": "Enter your work email to access your organization",
|
||||
"BACK_TO_LOGIN": "Login via Password",
|
||||
"WORK_EMAIL": {
|
||||
"LABEL": "Work Email",
|
||||
"PLACEHOLDER": "Enter your work email"
|
||||
},
|
||||
"SUBMIT": "Continue with SSO",
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "SSO authentication failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"MFA_SETTINGS": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"SUBTITLE": "Secure your account with TOTP-based authentication",
|
||||
"DESCRIPTION": "Add an extra layer of security to your account using a time-based one-time password (TOTP)",
|
||||
"STATUS_TITLE": "Authentication Status",
|
||||
"STATUS_DESCRIPTION": "Manage your two-factor authentication settings and backup recovery codes",
|
||||
"ENABLED": "Enabled",
|
||||
"DISABLED": "Disabled",
|
||||
"STATUS_ENABLED": "Two-factor authentication is active",
|
||||
"STATUS_ENABLED_DESC": "Your account is protected with an additional layer of security",
|
||||
"ENABLE_BUTTON": "Enable Two-Factor Authentication",
|
||||
"ENHANCE_SECURITY": "Enhance Your Account Security",
|
||||
"ENHANCE_SECURITY_DESC": "Two-factor authentication adds an extra layer of security by requiring a verification code from your authenticator app in addition to your password.",
|
||||
"SETUP": {
|
||||
"STEP_NUMBER_1": "1",
|
||||
"STEP_NUMBER_2": "2",
|
||||
"STEP1_TITLE": "Scan QR Code with Your Authenticator App",
|
||||
"STEP1_DESCRIPTION": "Use Google Authenticator, Authy, or any TOTP-compatible app",
|
||||
"LOADING_QR": "Loading...",
|
||||
"MANUAL_ENTRY": "Can't scan? Enter code manually",
|
||||
"SECRET_KEY": "Secret Key",
|
||||
"COPY": "Copy",
|
||||
"ENTER_CODE": "Enter the 6-digit code from your authenticator app",
|
||||
"ENTER_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify & Continue",
|
||||
"CANCEL": "Отмени",
|
||||
"ERROR_STARTING": "MFA not enabled. Please contact administrator.",
|
||||
"INVALID_CODE": "Invalid verification code",
|
||||
"SECRET_COPIED": "Secret key copied to clipboard",
|
||||
"SUCCESS": "Two-factor authentication has been enabled successfully"
|
||||
},
|
||||
"BACKUP": {
|
||||
"TITLE": "Save Your Backup Codes",
|
||||
"DESCRIPTION": "Keep these codes safe. Each can be used once if you lose access to your authenticator",
|
||||
"IMPORTANT": "Important:",
|
||||
"IMPORTANT_NOTE": " Save these codes in a secure location. You won't be able to see them again.",
|
||||
"DOWNLOAD": "Download",
|
||||
"COPY_ALL": "Copy All",
|
||||
"CONFIRM": "I have saved my backup codes in a secure location and understand that I won't be able to see them again",
|
||||
"COMPLETE_SETUP": "Complete Setup",
|
||||
"CODES_COPIED": "Backup codes copied to clipboard"
|
||||
},
|
||||
"MANAGEMENT": {
|
||||
"BACKUP_CODES": "Backup Codes",
|
||||
"BACKUP_CODES_DESC": "Generate new codes if you've lost or used your existing ones",
|
||||
"REGENERATE": "Regenerate Backup Codes",
|
||||
"DISABLE_MFA": "Disable 2FA",
|
||||
"DISABLE_MFA_DESC": "Remove two-factor authentication from your account",
|
||||
"DISABLE_BUTTON": "Disable Two-Factor Authentication"
|
||||
},
|
||||
"DISABLE": {
|
||||
"TITLE": "Disable Two-Factor Authentication",
|
||||
"DESCRIPTION": "You'll need to enter your password and a verification code to disable two-factor authentication.",
|
||||
"PASSWORD": "Password",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Disable 2FA",
|
||||
"CANCEL": "Отмени",
|
||||
"SUCCESS": "Two-factor authentication has been disabled",
|
||||
"ERROR": "Failed to disable MFA. Please check your credentials."
|
||||
},
|
||||
"REGENERATE": {
|
||||
"TITLE": "Regenerate Backup Codes",
|
||||
"DESCRIPTION": "This will invalidate your existing backup codes and generate new ones. Enter your verification code to continue.",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Generate New Codes",
|
||||
"CANCEL": "Отмени",
|
||||
"NEW_CODES_TITLE": "New Backup Codes Generated",
|
||||
"NEW_CODES_DESC": "Your old backup codes have been invalidated. Save these new codes in a secure location.",
|
||||
"CODES_IMPORTANT": "Important:",
|
||||
"CODES_IMPORTANT_NOTE": " Each code can only be used once. Save them before closing this window.",
|
||||
"DOWNLOAD_CODES": "Download Codes",
|
||||
"COPY_ALL_CODES": "Copy All Codes",
|
||||
"CODES_SAVED": "I've Saved My Codes",
|
||||
"SUCCESS": "New backup codes have been generated",
|
||||
"ERROR": "Failed to regenerate backup codes"
|
||||
}
|
||||
},
|
||||
"MFA_VERIFICATION": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"DESCRIPTION": "Enter your verification code to continue",
|
||||
"AUTHENTICATOR_APP": "Authenticator App",
|
||||
"BACKUP_CODE": "Backup Code",
|
||||
"ENTER_OTP_CODE": "Enter 6-digit code from your authenticator app",
|
||||
"ENTER_BACKUP_CODE": "Enter one of your backup codes",
|
||||
"BACKUP_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify",
|
||||
"TRY_ANOTHER_METHOD": "Try another verification method",
|
||||
"CANCEL_LOGIN": "Cancel and return to login",
|
||||
"HELP_TEXT": "Having trouble signing in?",
|
||||
"LEARN_MORE": "Learn more about 2FA",
|
||||
"HELP_MODAL": {
|
||||
"TITLE": "Two-Factor Authentication Help",
|
||||
"AUTHENTICATOR_TITLE": "Using an Authenticator App",
|
||||
"AUTHENTICATOR_DESC": "Open your authenticator app (Google Authenticator, Authy, etc.) and enter the 6-digit code shown for your account.",
|
||||
"BACKUP_TITLE": "Using a Backup Code",
|
||||
"BACKUP_DESC": "If you don't have access to your authenticator app, you can use one of the backup codes you saved when setting up 2FA. Each code can only be used once.",
|
||||
"CONTACT_TITLE": "Need More Help?",
|
||||
"CONTACT_DESC_CLOUD": "If you've lost access to both your authenticator app and backup codes, please reach out to Chatwoot support for assistance.",
|
||||
"CONTACT_DESC_SELF_HOSTED": "If you've lost access to both your authenticator app and backup codes, please contact your administrator for assistance."
|
||||
},
|
||||
"VERIFICATION_FAILED": "Verification failed. Please try again."
|
||||
}
|
||||
}
|
||||
@@ -80,6 +80,11 @@
|
||||
"NOTE": "Updating your password would reset your logins in multiple devices.",
|
||||
"BTN_TEXT": "Change password"
|
||||
},
|
||||
"SECURITY_SECTION": {
|
||||
"TITLE": "Security",
|
||||
"NOTE": "Manage additional security features for your account.",
|
||||
"MFA_BUTTON": "Manage Two-Factor Authentication"
|
||||
},
|
||||
"ACCESS_TOKEN": {
|
||||
"TITLE": "Access Token",
|
||||
"NOTE": "This token can be used if you are building an API based integration",
|
||||
@@ -358,7 +363,8 @@
|
||||
"INFO_TEXT": "Let the system automatically mark you offline when you aren't using the app or dashboard.",
|
||||
"INFO_SHORT": "Automatically mark offline when you aren't using the app."
|
||||
},
|
||||
"DOCS": "Read docs"
|
||||
"DOCS": "Read docs",
|
||||
"SECURITY": "Security"
|
||||
},
|
||||
"BILLING_SETTINGS": {
|
||||
"TITLE": "Billing",
|
||||
@@ -390,6 +396,77 @@
|
||||
},
|
||||
"NO_BILLING_USER": "Your billing account is being configured. Please refresh the page and try again."
|
||||
},
|
||||
"SECURITY_SETTINGS": {
|
||||
"TITLE": "Security",
|
||||
"DESCRIPTION": "Manage your account security settings.",
|
||||
"LINK_TEXT": "Learn more about SAML SSO",
|
||||
"SAML": {
|
||||
"TITLE": "SAML SSO",
|
||||
"NOTE": "Configure SAML single sign-on for your account. Users will authenticate through your identity provider instead of using email/password.",
|
||||
"ACS_URL": {
|
||||
"LABEL": "ACS URL",
|
||||
"TOOLTIP": "Assertion Consumer Service URL - Configure this URL in your IdP as the destination for SAML responses"
|
||||
},
|
||||
"SSO_URL": {
|
||||
"LABEL": "SSO URL",
|
||||
"HELP": "The URL where SAML authentication requests will be sent",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml/sso"
|
||||
},
|
||||
"CERTIFICATE": {
|
||||
"LABEL": "Signing certificate in PEM format",
|
||||
"HELP": "The public certificate from your identity provider used to verify SAML responses",
|
||||
"PLACEHOLDER": "-----BEGIN CERTIFICATE-----\nMIIC..."
|
||||
},
|
||||
"FINGERPRINT": {
|
||||
"LABEL": "Fingerprint",
|
||||
"TOOLTIP": "SHA-1 fingerprint of the certificate - Use this to verify the certificate in your IdP configuration"
|
||||
},
|
||||
"COPY_SUCCESS": "Code copied to clipboard successfully",
|
||||
"SP_ENTITY_ID": {
|
||||
"LABEL": "SP Entity ID",
|
||||
"HELP": "Unique identifier for this application as a service provider (auto-generated).",
|
||||
"TOOLTIP": "Unique identifier for Chatwoot as the Service Provider - Configure this in your IdP settings"
|
||||
},
|
||||
"IDP_ENTITY_ID": {
|
||||
"LABEL": "Identity Provider Entity ID",
|
||||
"HELP": "Unique identifier for your identity provider (usually found in IdP configuration)",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml"
|
||||
},
|
||||
"UPDATE_BUTTON": "Update SAML Settings",
|
||||
"API": {
|
||||
"SUCCESS": "SAML settings updated successfully",
|
||||
"ERROR": "Failed to update SAML settings",
|
||||
"ERROR_LOADING": "Failed to load SAML settings",
|
||||
"DISABLED": "SAML settings disabled successfully"
|
||||
},
|
||||
"VALIDATION": {
|
||||
"REQUIRED_FIELDS": "SSO URL, Identity Provider Entity ID, and Certificate are required fields",
|
||||
"SSO_URL_ERROR": "Please enter a valid SSO URL",
|
||||
"CERTIFICATE_ERROR": "Certificate is required",
|
||||
"IDP_ENTITY_ID_ERROR": "Identity Provider Entity ID is required"
|
||||
},
|
||||
"ENTERPRISE_PAYWALL": {
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade to an Enterprise plan to access SAML single sign-on and other advanced security features.",
|
||||
"ASK_ADMIN": "Please reach out to your administrator for the upgrade."
|
||||
},
|
||||
"PAYWALL": {
|
||||
"TITLE": "Upgrade to enable SAML SSO",
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade your plan to get access to SAML single sign-on and other advanced features.",
|
||||
"UPGRADE_NOW": "Upgrade now",
|
||||
"CANCEL_ANYTIME": "You can change or cancel your plan anytime"
|
||||
},
|
||||
"ATTRIBUTE_MAPPING": {
|
||||
"TITLE": "SAML Attribute Setup",
|
||||
"DESCRIPTION": "The following attribute mappings must be configured in your identity provider"
|
||||
},
|
||||
"INFO_SECTION": {
|
||||
"TITLE": "Service Provider Information",
|
||||
"TOOLTIP": "Copy these values and configure them in your Identity Provider to establish the SAML connection"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CREATE_ACCOUNT": {
|
||||
"NO_ACCOUNT_WARNING": "Uh oh! We could not find any Chatwoot accounts. Please create a new account to continue.",
|
||||
"NEW_ACCOUNT": "New Account",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"BUTTON_LABEL": "Button {index}",
|
||||
"COUPON_CODE": "Enter coupon code (max 15 chars)",
|
||||
"MEDIA_URL_LABEL": "Enter {type} URL",
|
||||
"DOCUMENT_NAME_PLACEHOLDER": "Enter document filename (e.g., Invoice_2025.pdf)",
|
||||
"BUTTON_PARAMETER": "Enter button parameter"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -177,7 +177,8 @@
|
||||
"REFERER_LINK": "Referrer Link",
|
||||
"ASSIGNEE_NAME": "Cessionari",
|
||||
"TEAM_NAME": "Equip",
|
||||
"PRIORITY": "Prioritat"
|
||||
"PRIORITY": "Prioritat",
|
||||
"LABELS": "Etiquetes"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -554,10 +554,12 @@
|
||||
"WROTE": "va escriure",
|
||||
"YOU": "Tu",
|
||||
"SAVE": "Save note",
|
||||
"ADD_NOTE": "Add contact note",
|
||||
"EXPAND": "Expandeix",
|
||||
"COLLAPSE": "Collapse",
|
||||
"NO_NOTES": "No notes, you can add notes from the contact details page.",
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above."
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above.",
|
||||
"CONVERSATION_EMPTY_STATE": "There are no notes yet. Use the Add note button to create one."
|
||||
}
|
||||
},
|
||||
"EMPTY_STATE": {
|
||||
|
||||
@@ -741,7 +741,8 @@
|
||||
"LIVE_CHAT_WIDGET": {
|
||||
"LABEL": "Live chat widget",
|
||||
"PLACEHOLDER": "Select live chat widget",
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center"
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center",
|
||||
"NONE_OPTION": "No widget"
|
||||
},
|
||||
"BRAND_COLOR": {
|
||||
"LABEL": "Brand color"
|
||||
|
||||
@@ -272,8 +272,8 @@
|
||||
},
|
||||
"SUBMIT_BUTTON": "Crea un canal de WhatsApp",
|
||||
"EMBEDDED_SIGNUP": {
|
||||
"TITLE": "Quick Setup with Meta",
|
||||
"DESC": "You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"TITLE": "Quick setup with Meta",
|
||||
"DESC": "Use the WhatsApp Embedded Signup flow to quickly connect new numbers. You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"BENEFITS": {
|
||||
"TITLE": "Benefits of Embedded Signup:",
|
||||
"EASY_SETUP": "No manual configuration required",
|
||||
@@ -281,9 +281,8 @@
|
||||
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
|
||||
},
|
||||
"LEARN_MORE": {
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
|
||||
"LINK_TEXT": "this link.",
|
||||
"LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit {link}.",
|
||||
"LINK_TEXT": "this link"
|
||||
},
|
||||
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
|
||||
"AUTH_PROCESSING": "Authenticating with Meta",
|
||||
@@ -296,7 +295,9 @@
|
||||
"INVALID_BUSINESS_DATA": "Invalid business data received from Facebook. Please try again.",
|
||||
"SIGNUP_ERROR": "Signup error occurred",
|
||||
"AUTH_NOT_COMPLETED": "Authentication not completed. Please restart the process.",
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured"
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured",
|
||||
"MANUAL_FALLBACK": "If your number is already connected to the WhatsApp Business Platform (API), or if you’re a tech provider onboarding your own number, please use the {link} flow",
|
||||
"MANUAL_LINK_TEXT": "manual setup flow"
|
||||
},
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "No hem pogut desar el canal WhatsApp"
|
||||
|
||||
@@ -761,6 +761,7 @@
|
||||
"SELECTED": "{count} selected",
|
||||
"SELECT_ALL": "Select all ({count})",
|
||||
"UNSELECT_ALL": "Unselect all ({count})",
|
||||
"SEARCH_PLACEHOLDER": "Search FAQs...",
|
||||
"BULK_APPROVE_BUTTON": "Approve",
|
||||
"BULK_DELETE_BUTTON": "Esborrar",
|
||||
"BULK_APPROVE": {
|
||||
|
||||
@@ -22,6 +22,20 @@
|
||||
},
|
||||
"FORGOT_PASSWORD": "Has oblidat la contrasenya?",
|
||||
"CREATE_NEW_ACCOUNT": "Crear un nou compte",
|
||||
"SUBMIT": "Inicia la sessió"
|
||||
"SUBMIT": "Inicia la sessió",
|
||||
"SAML": {
|
||||
"LABEL": "Log in via SSO",
|
||||
"TITLE": "Initiate Single Sign-on (SSO)",
|
||||
"SUBTITLE": "Enter your work email to access your organization",
|
||||
"BACK_TO_LOGIN": "Login via Password",
|
||||
"WORK_EMAIL": {
|
||||
"LABEL": "Work Email",
|
||||
"PLACEHOLDER": "Enter your work email"
|
||||
},
|
||||
"SUBMIT": "Continue with SSO",
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "SSO authentication failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"MFA_SETTINGS": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"SUBTITLE": "Secure your account with TOTP-based authentication",
|
||||
"DESCRIPTION": "Add an extra layer of security to your account using a time-based one-time password (TOTP)",
|
||||
"STATUS_TITLE": "Authentication Status",
|
||||
"STATUS_DESCRIPTION": "Manage your two-factor authentication settings and backup recovery codes",
|
||||
"ENABLED": "Habilita",
|
||||
"DISABLED": "Inhabilita",
|
||||
"STATUS_ENABLED": "Two-factor authentication is active",
|
||||
"STATUS_ENABLED_DESC": "Your account is protected with an additional layer of security",
|
||||
"ENABLE_BUTTON": "Enable Two-Factor Authentication",
|
||||
"ENHANCE_SECURITY": "Enhance Your Account Security",
|
||||
"ENHANCE_SECURITY_DESC": "Two-factor authentication adds an extra layer of security by requiring a verification code from your authenticator app in addition to your password.",
|
||||
"SETUP": {
|
||||
"STEP_NUMBER_1": "1",
|
||||
"STEP_NUMBER_2": "2",
|
||||
"STEP1_TITLE": "Scan QR Code with Your Authenticator App",
|
||||
"STEP1_DESCRIPTION": "Use Google Authenticator, Authy, or any TOTP-compatible app",
|
||||
"LOADING_QR": "Loading...",
|
||||
"MANUAL_ENTRY": "Can't scan? Enter code manually",
|
||||
"SECRET_KEY": "Secret Key",
|
||||
"COPY": "Copia",
|
||||
"ENTER_CODE": "Enter the 6-digit code from your authenticator app",
|
||||
"ENTER_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify & Continue",
|
||||
"CANCEL": "Cancel·la",
|
||||
"ERROR_STARTING": "MFA not enabled. Please contact administrator.",
|
||||
"INVALID_CODE": "Invalid verification code",
|
||||
"SECRET_COPIED": "Secret key copied to clipboard",
|
||||
"SUCCESS": "Two-factor authentication has been enabled successfully"
|
||||
},
|
||||
"BACKUP": {
|
||||
"TITLE": "Save Your Backup Codes",
|
||||
"DESCRIPTION": "Keep these codes safe. Each can be used once if you lose access to your authenticator",
|
||||
"IMPORTANT": "Important:",
|
||||
"IMPORTANT_NOTE": " Save these codes in a secure location. You won't be able to see them again.",
|
||||
"DOWNLOAD": "Descarrega",
|
||||
"COPY_ALL": "Copy All",
|
||||
"CONFIRM": "I have saved my backup codes in a secure location and understand that I won't be able to see them again",
|
||||
"COMPLETE_SETUP": "Complete Setup",
|
||||
"CODES_COPIED": "Backup codes copied to clipboard"
|
||||
},
|
||||
"MANAGEMENT": {
|
||||
"BACKUP_CODES": "Backup Codes",
|
||||
"BACKUP_CODES_DESC": "Generate new codes if you've lost or used your existing ones",
|
||||
"REGENERATE": "Regenerate Backup Codes",
|
||||
"DISABLE_MFA": "Disable 2FA",
|
||||
"DISABLE_MFA_DESC": "Remove two-factor authentication from your account",
|
||||
"DISABLE_BUTTON": "Disable Two-Factor Authentication"
|
||||
},
|
||||
"DISABLE": {
|
||||
"TITLE": "Disable Two-Factor Authentication",
|
||||
"DESCRIPTION": "You'll need to enter your password and a verification code to disable two-factor authentication.",
|
||||
"PASSWORD": "Contrasenya",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Disable 2FA",
|
||||
"CANCEL": "Cancel·la",
|
||||
"SUCCESS": "Two-factor authentication has been disabled",
|
||||
"ERROR": "Failed to disable MFA. Please check your credentials."
|
||||
},
|
||||
"REGENERATE": {
|
||||
"TITLE": "Regenerate Backup Codes",
|
||||
"DESCRIPTION": "This will invalidate your existing backup codes and generate new ones. Enter your verification code to continue.",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Generate New Codes",
|
||||
"CANCEL": "Cancel·la",
|
||||
"NEW_CODES_TITLE": "New Backup Codes Generated",
|
||||
"NEW_CODES_DESC": "Your old backup codes have been invalidated. Save these new codes in a secure location.",
|
||||
"CODES_IMPORTANT": "Important:",
|
||||
"CODES_IMPORTANT_NOTE": " Each code can only be used once. Save them before closing this window.",
|
||||
"DOWNLOAD_CODES": "Download Codes",
|
||||
"COPY_ALL_CODES": "Copy All Codes",
|
||||
"CODES_SAVED": "I've Saved My Codes",
|
||||
"SUCCESS": "New backup codes have been generated",
|
||||
"ERROR": "Failed to regenerate backup codes"
|
||||
}
|
||||
},
|
||||
"MFA_VERIFICATION": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"DESCRIPTION": "Enter your verification code to continue",
|
||||
"AUTHENTICATOR_APP": "Authenticator App",
|
||||
"BACKUP_CODE": "Backup Code",
|
||||
"ENTER_OTP_CODE": "Enter 6-digit code from your authenticator app",
|
||||
"ENTER_BACKUP_CODE": "Enter one of your backup codes",
|
||||
"BACKUP_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify",
|
||||
"TRY_ANOTHER_METHOD": "Try another verification method",
|
||||
"CANCEL_LOGIN": "Cancel and return to login",
|
||||
"HELP_TEXT": "Having trouble signing in?",
|
||||
"LEARN_MORE": "Learn more about 2FA",
|
||||
"HELP_MODAL": {
|
||||
"TITLE": "Two-Factor Authentication Help",
|
||||
"AUTHENTICATOR_TITLE": "Using an Authenticator App",
|
||||
"AUTHENTICATOR_DESC": "Open your authenticator app (Google Authenticator, Authy, etc.) and enter the 6-digit code shown for your account.",
|
||||
"BACKUP_TITLE": "Using a Backup Code",
|
||||
"BACKUP_DESC": "If you don't have access to your authenticator app, you can use one of the backup codes you saved when setting up 2FA. Each code can only be used once.",
|
||||
"CONTACT_TITLE": "Need More Help?",
|
||||
"CONTACT_DESC_CLOUD": "If you've lost access to both your authenticator app and backup codes, please reach out to Chatwoot support for assistance.",
|
||||
"CONTACT_DESC_SELF_HOSTED": "If you've lost access to both your authenticator app and backup codes, please contact your administrator for assistance."
|
||||
},
|
||||
"VERIFICATION_FAILED": "Verification failed. Please try again."
|
||||
}
|
||||
}
|
||||
@@ -80,6 +80,11 @@
|
||||
"NOTE": "L'actualització de la contrasenya restableix els vostres inicis de sessió en múltiples dispositius.",
|
||||
"BTN_TEXT": "Canvia la contrasenya"
|
||||
},
|
||||
"SECURITY_SECTION": {
|
||||
"TITLE": "Security",
|
||||
"NOTE": "Manage additional security features for your account.",
|
||||
"MFA_BUTTON": "Manage Two-Factor Authentication"
|
||||
},
|
||||
"ACCESS_TOKEN": {
|
||||
"TITLE": "Token d'accés",
|
||||
"NOTE": "Aquest token es pot utilitzar si creeu una integració basada en l'API",
|
||||
@@ -358,7 +363,8 @@
|
||||
"INFO_TEXT": "Permet que el sistema et marqui automàticament fora de línia quan no facis servir l'aplicació o el tauler.",
|
||||
"INFO_SHORT": "Automatically mark offline when you aren't using the app."
|
||||
},
|
||||
"DOCS": "Llegir documents"
|
||||
"DOCS": "Llegir documents",
|
||||
"SECURITY": "Security"
|
||||
},
|
||||
"BILLING_SETTINGS": {
|
||||
"TITLE": "Facturació",
|
||||
@@ -390,6 +396,77 @@
|
||||
},
|
||||
"NO_BILLING_USER": "El teu compte de facturació s'està configurant. Actualitza la pàgina i torna-ho a provar."
|
||||
},
|
||||
"SECURITY_SETTINGS": {
|
||||
"TITLE": "Security",
|
||||
"DESCRIPTION": "Manage your account security settings.",
|
||||
"LINK_TEXT": "Learn more about SAML SSO",
|
||||
"SAML": {
|
||||
"TITLE": "SAML SSO",
|
||||
"NOTE": "Configure SAML single sign-on for your account. Users will authenticate through your identity provider instead of using email/password.",
|
||||
"ACS_URL": {
|
||||
"LABEL": "ACS URL",
|
||||
"TOOLTIP": "Assertion Consumer Service URL - Configure this URL in your IdP as the destination for SAML responses"
|
||||
},
|
||||
"SSO_URL": {
|
||||
"LABEL": "SSO URL",
|
||||
"HELP": "The URL where SAML authentication requests will be sent",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml/sso"
|
||||
},
|
||||
"CERTIFICATE": {
|
||||
"LABEL": "Signing certificate in PEM format",
|
||||
"HELP": "The public certificate from your identity provider used to verify SAML responses",
|
||||
"PLACEHOLDER": "-----BEGIN CERTIFICATE-----\nMIIC..."
|
||||
},
|
||||
"FINGERPRINT": {
|
||||
"LABEL": "Fingerprint",
|
||||
"TOOLTIP": "SHA-1 fingerprint of the certificate - Use this to verify the certificate in your IdP configuration"
|
||||
},
|
||||
"COPY_SUCCESS": "El codi s'ha copiat al porta-retalls amb èxit",
|
||||
"SP_ENTITY_ID": {
|
||||
"LABEL": "SP Entity ID",
|
||||
"HELP": "Unique identifier for this application as a service provider (auto-generated).",
|
||||
"TOOLTIP": "Unique identifier for Chatwoot as the Service Provider - Configure this in your IdP settings"
|
||||
},
|
||||
"IDP_ENTITY_ID": {
|
||||
"LABEL": "Identity Provider Entity ID",
|
||||
"HELP": "Unique identifier for your identity provider (usually found in IdP configuration)",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml"
|
||||
},
|
||||
"UPDATE_BUTTON": "Update SAML Settings",
|
||||
"API": {
|
||||
"SUCCESS": "SAML settings updated successfully",
|
||||
"ERROR": "Failed to update SAML settings",
|
||||
"ERROR_LOADING": "Failed to load SAML settings",
|
||||
"DISABLED": "SAML settings disabled successfully"
|
||||
},
|
||||
"VALIDATION": {
|
||||
"REQUIRED_FIELDS": "SSO URL, Identity Provider Entity ID, and Certificate are required fields",
|
||||
"SSO_URL_ERROR": "Please enter a valid SSO URL",
|
||||
"CERTIFICATE_ERROR": "Certificate is required",
|
||||
"IDP_ENTITY_ID_ERROR": "Identity Provider Entity ID is required"
|
||||
},
|
||||
"ENTERPRISE_PAYWALL": {
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade to an Enterprise plan to access SAML single sign-on and other advanced security features.",
|
||||
"ASK_ADMIN": "Posa't en contacte amb el vostre administrador per obtenir l'actualització."
|
||||
},
|
||||
"PAYWALL": {
|
||||
"TITLE": "Upgrade to enable SAML SSO",
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade your plan to get access to SAML single sign-on and other advanced features.",
|
||||
"UPGRADE_NOW": "Actualitza ara",
|
||||
"CANCEL_ANYTIME": "Pots canviar o cancel·lar el teu pla en qualsevol moment"
|
||||
},
|
||||
"ATTRIBUTE_MAPPING": {
|
||||
"TITLE": "SAML Attribute Setup",
|
||||
"DESCRIPTION": "The following attribute mappings must be configured in your identity provider"
|
||||
},
|
||||
"INFO_SECTION": {
|
||||
"TITLE": "Service Provider Information",
|
||||
"TOOLTIP": "Copy these values and configure them in your Identity Provider to establish the SAML connection"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CREATE_ACCOUNT": {
|
||||
"NO_ACCOUNT_WARNING": "Uh oh! No hem trobat cap compte de Chatwoot. Crea un compte nou per continuar.",
|
||||
"NEW_ACCOUNT": "Compte nou",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"BUTTON_LABEL": "Button {index}",
|
||||
"COUPON_CODE": "Enter coupon code (max 15 chars)",
|
||||
"MEDIA_URL_LABEL": "Enter {type} URL",
|
||||
"DOCUMENT_NAME_PLACEHOLDER": "Enter document filename (e.g., Invoice_2025.pdf)",
|
||||
"BUTTON_PARAMETER": "Enter button parameter"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -177,7 +177,8 @@
|
||||
"REFERER_LINK": "Referrer Link",
|
||||
"ASSIGNEE_NAME": "Assignee",
|
||||
"TEAM_NAME": "Team",
|
||||
"PRIORITY": "Priority"
|
||||
"PRIORITY": "Priority",
|
||||
"LABELS": "Štítky"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -554,10 +554,12 @@
|
||||
"WROTE": "wrote",
|
||||
"YOU": "Vy",
|
||||
"SAVE": "Save note",
|
||||
"ADD_NOTE": "Add contact note",
|
||||
"EXPAND": "Expand",
|
||||
"COLLAPSE": "Collapse",
|
||||
"NO_NOTES": "No notes, you can add notes from the contact details page.",
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above."
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above.",
|
||||
"CONVERSATION_EMPTY_STATE": "There are no notes yet. Use the Add note button to create one."
|
||||
}
|
||||
},
|
||||
"EMPTY_STATE": {
|
||||
|
||||
@@ -741,7 +741,8 @@
|
||||
"LIVE_CHAT_WIDGET": {
|
||||
"LABEL": "Live chat widget",
|
||||
"PLACEHOLDER": "Select live chat widget",
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center"
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center",
|
||||
"NONE_OPTION": "No widget"
|
||||
},
|
||||
"BRAND_COLOR": {
|
||||
"LABEL": "Brand color"
|
||||
|
||||
@@ -272,8 +272,8 @@
|
||||
},
|
||||
"SUBMIT_BUTTON": "Create WhatsApp Channel",
|
||||
"EMBEDDED_SIGNUP": {
|
||||
"TITLE": "Quick Setup with Meta",
|
||||
"DESC": "You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"TITLE": "Quick setup with Meta",
|
||||
"DESC": "Use the WhatsApp Embedded Signup flow to quickly connect new numbers. You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"BENEFITS": {
|
||||
"TITLE": "Benefits of Embedded Signup:",
|
||||
"EASY_SETUP": "No manual configuration required",
|
||||
@@ -281,9 +281,8 @@
|
||||
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
|
||||
},
|
||||
"LEARN_MORE": {
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
|
||||
"LINK_TEXT": "this link.",
|
||||
"LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit {link}.",
|
||||
"LINK_TEXT": "this link"
|
||||
},
|
||||
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
|
||||
"AUTH_PROCESSING": "Authenticating with Meta",
|
||||
@@ -296,7 +295,9 @@
|
||||
"INVALID_BUSINESS_DATA": "Invalid business data received from Facebook. Please try again.",
|
||||
"SIGNUP_ERROR": "Signup error occurred",
|
||||
"AUTH_NOT_COMPLETED": "Authentication not completed. Please restart the process.",
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured"
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured",
|
||||
"MANUAL_FALLBACK": "If your number is already connected to the WhatsApp Business Platform (API), or if you’re a tech provider onboarding your own number, please use the {link} flow",
|
||||
"MANUAL_LINK_TEXT": "manual setup flow"
|
||||
},
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "We were not able to save the WhatsApp channel"
|
||||
|
||||
@@ -761,6 +761,7 @@
|
||||
"SELECTED": "{count} selected",
|
||||
"SELECT_ALL": "Select all ({count})",
|
||||
"UNSELECT_ALL": "Unselect all ({count})",
|
||||
"SEARCH_PLACEHOLDER": "Search FAQs...",
|
||||
"BULK_APPROVE_BUTTON": "Approve",
|
||||
"BULK_DELETE_BUTTON": "Vymazat",
|
||||
"BULK_APPROVE": {
|
||||
|
||||
@@ -22,6 +22,20 @@
|
||||
},
|
||||
"FORGOT_PASSWORD": "Zapomněli jste heslo?",
|
||||
"CREATE_NEW_ACCOUNT": "Vytvořit nový účet",
|
||||
"SUBMIT": "Přihlásit se"
|
||||
"SUBMIT": "Přihlásit se",
|
||||
"SAML": {
|
||||
"LABEL": "Log in via SSO",
|
||||
"TITLE": "Initiate Single Sign-on (SSO)",
|
||||
"SUBTITLE": "Enter your work email to access your organization",
|
||||
"BACK_TO_LOGIN": "Login via Password",
|
||||
"WORK_EMAIL": {
|
||||
"LABEL": "Work Email",
|
||||
"PLACEHOLDER": "Enter your work email"
|
||||
},
|
||||
"SUBMIT": "Continue with SSO",
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "SSO authentication failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"MFA_SETTINGS": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"SUBTITLE": "Secure your account with TOTP-based authentication",
|
||||
"DESCRIPTION": "Add an extra layer of security to your account using a time-based one-time password (TOTP)",
|
||||
"STATUS_TITLE": "Authentication Status",
|
||||
"STATUS_DESCRIPTION": "Manage your two-factor authentication settings and backup recovery codes",
|
||||
"ENABLED": "Povoleno",
|
||||
"DISABLED": "Zakázáno",
|
||||
"STATUS_ENABLED": "Two-factor authentication is active",
|
||||
"STATUS_ENABLED_DESC": "Your account is protected with an additional layer of security",
|
||||
"ENABLE_BUTTON": "Enable Two-Factor Authentication",
|
||||
"ENHANCE_SECURITY": "Enhance Your Account Security",
|
||||
"ENHANCE_SECURITY_DESC": "Two-factor authentication adds an extra layer of security by requiring a verification code from your authenticator app in addition to your password.",
|
||||
"SETUP": {
|
||||
"STEP_NUMBER_1": "1",
|
||||
"STEP_NUMBER_2": "2",
|
||||
"STEP1_TITLE": "Scan QR Code with Your Authenticator App",
|
||||
"STEP1_DESCRIPTION": "Use Google Authenticator, Authy, or any TOTP-compatible app",
|
||||
"LOADING_QR": "Loading...",
|
||||
"MANUAL_ENTRY": "Can't scan? Enter code manually",
|
||||
"SECRET_KEY": "Secret Key",
|
||||
"COPY": "Kopírovat",
|
||||
"ENTER_CODE": "Enter the 6-digit code from your authenticator app",
|
||||
"ENTER_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify & Continue",
|
||||
"CANCEL": "Zrušit",
|
||||
"ERROR_STARTING": "MFA not enabled. Please contact administrator.",
|
||||
"INVALID_CODE": "Invalid verification code",
|
||||
"SECRET_COPIED": "Secret key copied to clipboard",
|
||||
"SUCCESS": "Two-factor authentication has been enabled successfully"
|
||||
},
|
||||
"BACKUP": {
|
||||
"TITLE": "Save Your Backup Codes",
|
||||
"DESCRIPTION": "Keep these codes safe. Each can be used once if you lose access to your authenticator",
|
||||
"IMPORTANT": "Important:",
|
||||
"IMPORTANT_NOTE": " Save these codes in a secure location. You won't be able to see them again.",
|
||||
"DOWNLOAD": "Stáhnout",
|
||||
"COPY_ALL": "Copy All",
|
||||
"CONFIRM": "I have saved my backup codes in a secure location and understand that I won't be able to see them again",
|
||||
"COMPLETE_SETUP": "Complete Setup",
|
||||
"CODES_COPIED": "Backup codes copied to clipboard"
|
||||
},
|
||||
"MANAGEMENT": {
|
||||
"BACKUP_CODES": "Backup Codes",
|
||||
"BACKUP_CODES_DESC": "Generate new codes if you've lost or used your existing ones",
|
||||
"REGENERATE": "Regenerate Backup Codes",
|
||||
"DISABLE_MFA": "Disable 2FA",
|
||||
"DISABLE_MFA_DESC": "Remove two-factor authentication from your account",
|
||||
"DISABLE_BUTTON": "Disable Two-Factor Authentication"
|
||||
},
|
||||
"DISABLE": {
|
||||
"TITLE": "Disable Two-Factor Authentication",
|
||||
"DESCRIPTION": "You'll need to enter your password and a verification code to disable two-factor authentication.",
|
||||
"PASSWORD": "Heslo",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Disable 2FA",
|
||||
"CANCEL": "Zrušit",
|
||||
"SUCCESS": "Two-factor authentication has been disabled",
|
||||
"ERROR": "Failed to disable MFA. Please check your credentials."
|
||||
},
|
||||
"REGENERATE": {
|
||||
"TITLE": "Regenerate Backup Codes",
|
||||
"DESCRIPTION": "This will invalidate your existing backup codes and generate new ones. Enter your verification code to continue.",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Generate New Codes",
|
||||
"CANCEL": "Zrušit",
|
||||
"NEW_CODES_TITLE": "New Backup Codes Generated",
|
||||
"NEW_CODES_DESC": "Your old backup codes have been invalidated. Save these new codes in a secure location.",
|
||||
"CODES_IMPORTANT": "Important:",
|
||||
"CODES_IMPORTANT_NOTE": " Each code can only be used once. Save them before closing this window.",
|
||||
"DOWNLOAD_CODES": "Download Codes",
|
||||
"COPY_ALL_CODES": "Copy All Codes",
|
||||
"CODES_SAVED": "I've Saved My Codes",
|
||||
"SUCCESS": "New backup codes have been generated",
|
||||
"ERROR": "Failed to regenerate backup codes"
|
||||
}
|
||||
},
|
||||
"MFA_VERIFICATION": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"DESCRIPTION": "Enter your verification code to continue",
|
||||
"AUTHENTICATOR_APP": "Authenticator App",
|
||||
"BACKUP_CODE": "Backup Code",
|
||||
"ENTER_OTP_CODE": "Enter 6-digit code from your authenticator app",
|
||||
"ENTER_BACKUP_CODE": "Enter one of your backup codes",
|
||||
"BACKUP_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify",
|
||||
"TRY_ANOTHER_METHOD": "Try another verification method",
|
||||
"CANCEL_LOGIN": "Cancel and return to login",
|
||||
"HELP_TEXT": "Having trouble signing in?",
|
||||
"LEARN_MORE": "Learn more about 2FA",
|
||||
"HELP_MODAL": {
|
||||
"TITLE": "Two-Factor Authentication Help",
|
||||
"AUTHENTICATOR_TITLE": "Using an Authenticator App",
|
||||
"AUTHENTICATOR_DESC": "Open your authenticator app (Google Authenticator, Authy, etc.) and enter the 6-digit code shown for your account.",
|
||||
"BACKUP_TITLE": "Using a Backup Code",
|
||||
"BACKUP_DESC": "If you don't have access to your authenticator app, you can use one of the backup codes you saved when setting up 2FA. Each code can only be used once.",
|
||||
"CONTACT_TITLE": "Need More Help?",
|
||||
"CONTACT_DESC_CLOUD": "If you've lost access to both your authenticator app and backup codes, please reach out to Chatwoot support for assistance.",
|
||||
"CONTACT_DESC_SELF_HOSTED": "If you've lost access to both your authenticator app and backup codes, please contact your administrator for assistance."
|
||||
},
|
||||
"VERIFICATION_FAILED": "Verification failed. Please try again."
|
||||
}
|
||||
}
|
||||
@@ -80,6 +80,11 @@
|
||||
"NOTE": "Aktualizace hesla by obnovila vaše přihlašovací údaje na více zařízeních.",
|
||||
"BTN_TEXT": "Change password"
|
||||
},
|
||||
"SECURITY_SECTION": {
|
||||
"TITLE": "Security",
|
||||
"NOTE": "Manage additional security features for your account.",
|
||||
"MFA_BUTTON": "Manage Two-Factor Authentication"
|
||||
},
|
||||
"ACCESS_TOKEN": {
|
||||
"TITLE": "Přístupový token",
|
||||
"NOTE": "Tento token může být použit při vytváření integrace založené na API",
|
||||
@@ -358,7 +363,8 @@
|
||||
"INFO_TEXT": "Let the system automatically mark you offline when you aren't using the app or dashboard.",
|
||||
"INFO_SHORT": "Automatically mark offline when you aren't using the app."
|
||||
},
|
||||
"DOCS": "Read docs"
|
||||
"DOCS": "Read docs",
|
||||
"SECURITY": "Security"
|
||||
},
|
||||
"BILLING_SETTINGS": {
|
||||
"TITLE": "Billing",
|
||||
@@ -390,6 +396,77 @@
|
||||
},
|
||||
"NO_BILLING_USER": "Your billing account is being configured. Please refresh the page and try again."
|
||||
},
|
||||
"SECURITY_SETTINGS": {
|
||||
"TITLE": "Security",
|
||||
"DESCRIPTION": "Manage your account security settings.",
|
||||
"LINK_TEXT": "Learn more about SAML SSO",
|
||||
"SAML": {
|
||||
"TITLE": "SAML SSO",
|
||||
"NOTE": "Configure SAML single sign-on for your account. Users will authenticate through your identity provider instead of using email/password.",
|
||||
"ACS_URL": {
|
||||
"LABEL": "ACS URL",
|
||||
"TOOLTIP": "Assertion Consumer Service URL - Configure this URL in your IdP as the destination for SAML responses"
|
||||
},
|
||||
"SSO_URL": {
|
||||
"LABEL": "SSO URL",
|
||||
"HELP": "The URL where SAML authentication requests will be sent",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml/sso"
|
||||
},
|
||||
"CERTIFICATE": {
|
||||
"LABEL": "Signing certificate in PEM format",
|
||||
"HELP": "The public certificate from your identity provider used to verify SAML responses",
|
||||
"PLACEHOLDER": "-----BEGIN CERTIFICATE-----\nMIIC..."
|
||||
},
|
||||
"FINGERPRINT": {
|
||||
"LABEL": "Fingerprint",
|
||||
"TOOLTIP": "SHA-1 fingerprint of the certificate - Use this to verify the certificate in your IdP configuration"
|
||||
},
|
||||
"COPY_SUCCESS": "Kód byl úspěšně zkopírován do schránky",
|
||||
"SP_ENTITY_ID": {
|
||||
"LABEL": "SP Entity ID",
|
||||
"HELP": "Unique identifier for this application as a service provider (auto-generated).",
|
||||
"TOOLTIP": "Unique identifier for Chatwoot as the Service Provider - Configure this in your IdP settings"
|
||||
},
|
||||
"IDP_ENTITY_ID": {
|
||||
"LABEL": "Identity Provider Entity ID",
|
||||
"HELP": "Unique identifier for your identity provider (usually found in IdP configuration)",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml"
|
||||
},
|
||||
"UPDATE_BUTTON": "Update SAML Settings",
|
||||
"API": {
|
||||
"SUCCESS": "SAML settings updated successfully",
|
||||
"ERROR": "Failed to update SAML settings",
|
||||
"ERROR_LOADING": "Failed to load SAML settings",
|
||||
"DISABLED": "SAML settings disabled successfully"
|
||||
},
|
||||
"VALIDATION": {
|
||||
"REQUIRED_FIELDS": "SSO URL, Identity Provider Entity ID, and Certificate are required fields",
|
||||
"SSO_URL_ERROR": "Please enter a valid SSO URL",
|
||||
"CERTIFICATE_ERROR": "Certificate is required",
|
||||
"IDP_ENTITY_ID_ERROR": "Identity Provider Entity ID is required"
|
||||
},
|
||||
"ENTERPRISE_PAYWALL": {
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade to an Enterprise plan to access SAML single sign-on and other advanced security features.",
|
||||
"ASK_ADMIN": "Please reach out to your administrator for the upgrade."
|
||||
},
|
||||
"PAYWALL": {
|
||||
"TITLE": "Upgrade to enable SAML SSO",
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade your plan to get access to SAML single sign-on and other advanced features.",
|
||||
"UPGRADE_NOW": "Upgrade now",
|
||||
"CANCEL_ANYTIME": "You can change or cancel your plan anytime"
|
||||
},
|
||||
"ATTRIBUTE_MAPPING": {
|
||||
"TITLE": "SAML Attribute Setup",
|
||||
"DESCRIPTION": "The following attribute mappings must be configured in your identity provider"
|
||||
},
|
||||
"INFO_SECTION": {
|
||||
"TITLE": "Service Provider Information",
|
||||
"TOOLTIP": "Copy these values and configure them in your Identity Provider to establish the SAML connection"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CREATE_ACCOUNT": {
|
||||
"NO_ACCOUNT_WARNING": "Uh oh! We could not find any Chatwoot accounts. Please create a new account to continue.",
|
||||
"NEW_ACCOUNT": "Nový účet",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"BUTTON_LABEL": "Button {index}",
|
||||
"COUPON_CODE": "Enter coupon code (max 15 chars)",
|
||||
"MEDIA_URL_LABEL": "Enter {type} URL",
|
||||
"DOCUMENT_NAME_PLACEHOLDER": "Enter document filename (e.g., Invoice_2025.pdf)",
|
||||
"BUTTON_PARAMETER": "Enter button parameter"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -177,7 +177,8 @@
|
||||
"REFERER_LINK": "Referrer Link",
|
||||
"ASSIGNEE_NAME": "Assignee",
|
||||
"TEAM_NAME": "Team",
|
||||
"PRIORITY": "Priority"
|
||||
"PRIORITY": "Priority",
|
||||
"LABELS": "Etiketter"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -554,10 +554,12 @@
|
||||
"WROTE": "wrote",
|
||||
"YOU": "Dig",
|
||||
"SAVE": "Save note",
|
||||
"ADD_NOTE": "Add contact note",
|
||||
"EXPAND": "Expand",
|
||||
"COLLAPSE": "Collapse",
|
||||
"NO_NOTES": "No notes, you can add notes from the contact details page.",
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above."
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above.",
|
||||
"CONVERSATION_EMPTY_STATE": "There are no notes yet. Use the Add note button to create one."
|
||||
}
|
||||
},
|
||||
"EMPTY_STATE": {
|
||||
|
||||
@@ -741,7 +741,8 @@
|
||||
"LIVE_CHAT_WIDGET": {
|
||||
"LABEL": "Live chat widget",
|
||||
"PLACEHOLDER": "Select live chat widget",
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center"
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center",
|
||||
"NONE_OPTION": "No widget"
|
||||
},
|
||||
"BRAND_COLOR": {
|
||||
"LABEL": "Brand color"
|
||||
|
||||
@@ -272,8 +272,8 @@
|
||||
},
|
||||
"SUBMIT_BUTTON": "Opret WhatsApp Kanal",
|
||||
"EMBEDDED_SIGNUP": {
|
||||
"TITLE": "Quick Setup with Meta",
|
||||
"DESC": "You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"TITLE": "Quick setup with Meta",
|
||||
"DESC": "Use the WhatsApp Embedded Signup flow to quickly connect new numbers. You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"BENEFITS": {
|
||||
"TITLE": "Benefits of Embedded Signup:",
|
||||
"EASY_SETUP": "No manual configuration required",
|
||||
@@ -281,9 +281,8 @@
|
||||
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
|
||||
},
|
||||
"LEARN_MORE": {
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
|
||||
"LINK_TEXT": "this link.",
|
||||
"LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit {link}.",
|
||||
"LINK_TEXT": "this link"
|
||||
},
|
||||
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
|
||||
"AUTH_PROCESSING": "Authenticating with Meta",
|
||||
@@ -296,7 +295,9 @@
|
||||
"INVALID_BUSINESS_DATA": "Invalid business data received from Facebook. Please try again.",
|
||||
"SIGNUP_ERROR": "Signup error occurred",
|
||||
"AUTH_NOT_COMPLETED": "Authentication not completed. Please restart the process.",
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured"
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured",
|
||||
"MANUAL_FALLBACK": "If your number is already connected to the WhatsApp Business Platform (API), or if you’re a tech provider onboarding your own number, please use the {link} flow",
|
||||
"MANUAL_LINK_TEXT": "manual setup flow"
|
||||
},
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "Vi kunne ikke gemme WhatsApp-kanalen"
|
||||
|
||||
@@ -761,6 +761,7 @@
|
||||
"SELECTED": "{count} selected",
|
||||
"SELECT_ALL": "Select all ({count})",
|
||||
"UNSELECT_ALL": "Unselect all ({count})",
|
||||
"SEARCH_PLACEHOLDER": "Search FAQs...",
|
||||
"BULK_APPROVE_BUTTON": "Approve",
|
||||
"BULK_DELETE_BUTTON": "Slet",
|
||||
"BULK_APPROVE": {
|
||||
|
||||
@@ -22,6 +22,20 @@
|
||||
},
|
||||
"FORGOT_PASSWORD": "Glemt din adgangskode?",
|
||||
"CREATE_NEW_ACCOUNT": "Opret ny konto",
|
||||
"SUBMIT": "Log Ind"
|
||||
"SUBMIT": "Log Ind",
|
||||
"SAML": {
|
||||
"LABEL": "Log in via SSO",
|
||||
"TITLE": "Initiate Single Sign-on (SSO)",
|
||||
"SUBTITLE": "Enter your work email to access your organization",
|
||||
"BACK_TO_LOGIN": "Login via Password",
|
||||
"WORK_EMAIL": {
|
||||
"LABEL": "Work Email",
|
||||
"PLACEHOLDER": "Enter your work email"
|
||||
},
|
||||
"SUBMIT": "Continue with SSO",
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "SSO authentication failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"MFA_SETTINGS": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"SUBTITLE": "Secure your account with TOTP-based authentication",
|
||||
"DESCRIPTION": "Add an extra layer of security to your account using a time-based one-time password (TOTP)",
|
||||
"STATUS_TITLE": "Authentication Status",
|
||||
"STATUS_DESCRIPTION": "Manage your two-factor authentication settings and backup recovery codes",
|
||||
"ENABLED": "Aktiveret",
|
||||
"DISABLED": "Deaktiveret",
|
||||
"STATUS_ENABLED": "Two-factor authentication is active",
|
||||
"STATUS_ENABLED_DESC": "Your account is protected with an additional layer of security",
|
||||
"ENABLE_BUTTON": "Enable Two-Factor Authentication",
|
||||
"ENHANCE_SECURITY": "Enhance Your Account Security",
|
||||
"ENHANCE_SECURITY_DESC": "Two-factor authentication adds an extra layer of security by requiring a verification code from your authenticator app in addition to your password.",
|
||||
"SETUP": {
|
||||
"STEP_NUMBER_1": "1",
|
||||
"STEP_NUMBER_2": "2",
|
||||
"STEP1_TITLE": "Scan QR Code with Your Authenticator App",
|
||||
"STEP1_DESCRIPTION": "Use Google Authenticator, Authy, or any TOTP-compatible app",
|
||||
"LOADING_QR": "Loading...",
|
||||
"MANUAL_ENTRY": "Can't scan? Enter code manually",
|
||||
"SECRET_KEY": "Secret Key",
|
||||
"COPY": "Kopiér",
|
||||
"ENTER_CODE": "Enter the 6-digit code from your authenticator app",
|
||||
"ENTER_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify & Continue",
|
||||
"CANCEL": "Annuller",
|
||||
"ERROR_STARTING": "MFA not enabled. Please contact administrator.",
|
||||
"INVALID_CODE": "Invalid verification code",
|
||||
"SECRET_COPIED": "Secret key copied to clipboard",
|
||||
"SUCCESS": "Two-factor authentication has been enabled successfully"
|
||||
},
|
||||
"BACKUP": {
|
||||
"TITLE": "Save Your Backup Codes",
|
||||
"DESCRIPTION": "Keep these codes safe. Each can be used once if you lose access to your authenticator",
|
||||
"IMPORTANT": "Important:",
|
||||
"IMPORTANT_NOTE": " Save these codes in a secure location. You won't be able to see them again.",
|
||||
"DOWNLOAD": "Download",
|
||||
"COPY_ALL": "Copy All",
|
||||
"CONFIRM": "I have saved my backup codes in a secure location and understand that I won't be able to see them again",
|
||||
"COMPLETE_SETUP": "Complete Setup",
|
||||
"CODES_COPIED": "Backup codes copied to clipboard"
|
||||
},
|
||||
"MANAGEMENT": {
|
||||
"BACKUP_CODES": "Backup Codes",
|
||||
"BACKUP_CODES_DESC": "Generate new codes if you've lost or used your existing ones",
|
||||
"REGENERATE": "Regenerate Backup Codes",
|
||||
"DISABLE_MFA": "Disable 2FA",
|
||||
"DISABLE_MFA_DESC": "Remove two-factor authentication from your account",
|
||||
"DISABLE_BUTTON": "Disable Two-Factor Authentication"
|
||||
},
|
||||
"DISABLE": {
|
||||
"TITLE": "Disable Two-Factor Authentication",
|
||||
"DESCRIPTION": "You'll need to enter your password and a verification code to disable two-factor authentication.",
|
||||
"PASSWORD": "Adgangskode",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Disable 2FA",
|
||||
"CANCEL": "Annuller",
|
||||
"SUCCESS": "Two-factor authentication has been disabled",
|
||||
"ERROR": "Failed to disable MFA. Please check your credentials."
|
||||
},
|
||||
"REGENERATE": {
|
||||
"TITLE": "Regenerate Backup Codes",
|
||||
"DESCRIPTION": "This will invalidate your existing backup codes and generate new ones. Enter your verification code to continue.",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Generate New Codes",
|
||||
"CANCEL": "Annuller",
|
||||
"NEW_CODES_TITLE": "New Backup Codes Generated",
|
||||
"NEW_CODES_DESC": "Your old backup codes have been invalidated. Save these new codes in a secure location.",
|
||||
"CODES_IMPORTANT": "Important:",
|
||||
"CODES_IMPORTANT_NOTE": " Each code can only be used once. Save them before closing this window.",
|
||||
"DOWNLOAD_CODES": "Download Codes",
|
||||
"COPY_ALL_CODES": "Copy All Codes",
|
||||
"CODES_SAVED": "I've Saved My Codes",
|
||||
"SUCCESS": "New backup codes have been generated",
|
||||
"ERROR": "Failed to regenerate backup codes"
|
||||
}
|
||||
},
|
||||
"MFA_VERIFICATION": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"DESCRIPTION": "Enter your verification code to continue",
|
||||
"AUTHENTICATOR_APP": "Authenticator App",
|
||||
"BACKUP_CODE": "Backup Code",
|
||||
"ENTER_OTP_CODE": "Enter 6-digit code from your authenticator app",
|
||||
"ENTER_BACKUP_CODE": "Enter one of your backup codes",
|
||||
"BACKUP_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify",
|
||||
"TRY_ANOTHER_METHOD": "Try another verification method",
|
||||
"CANCEL_LOGIN": "Cancel and return to login",
|
||||
"HELP_TEXT": "Having trouble signing in?",
|
||||
"LEARN_MORE": "Learn more about 2FA",
|
||||
"HELP_MODAL": {
|
||||
"TITLE": "Two-Factor Authentication Help",
|
||||
"AUTHENTICATOR_TITLE": "Using an Authenticator App",
|
||||
"AUTHENTICATOR_DESC": "Open your authenticator app (Google Authenticator, Authy, etc.) and enter the 6-digit code shown for your account.",
|
||||
"BACKUP_TITLE": "Using a Backup Code",
|
||||
"BACKUP_DESC": "If you don't have access to your authenticator app, you can use one of the backup codes you saved when setting up 2FA. Each code can only be used once.",
|
||||
"CONTACT_TITLE": "Need More Help?",
|
||||
"CONTACT_DESC_CLOUD": "If you've lost access to both your authenticator app and backup codes, please reach out to Chatwoot support for assistance.",
|
||||
"CONTACT_DESC_SELF_HOSTED": "If you've lost access to both your authenticator app and backup codes, please contact your administrator for assistance."
|
||||
},
|
||||
"VERIFICATION_FAILED": "Verification failed. Please try again."
|
||||
}
|
||||
}
|
||||
@@ -80,6 +80,11 @@
|
||||
"NOTE": "Opdatering af din adgangskode vil nulstille dine logins på flere enheder.",
|
||||
"BTN_TEXT": "Skift adgangskode"
|
||||
},
|
||||
"SECURITY_SECTION": {
|
||||
"TITLE": "Security",
|
||||
"NOTE": "Manage additional security features for your account.",
|
||||
"MFA_BUTTON": "Manage Two-Factor Authentication"
|
||||
},
|
||||
"ACCESS_TOKEN": {
|
||||
"TITLE": "Adgangs Token",
|
||||
"NOTE": "Denne token kan bruges, hvis du bygger en API-baseret integration",
|
||||
@@ -358,7 +363,8 @@
|
||||
"INFO_TEXT": "Let the system automatically mark you offline when you aren't using the app or dashboard.",
|
||||
"INFO_SHORT": "Automatically mark offline when you aren't using the app."
|
||||
},
|
||||
"DOCS": "Læs dokumenter"
|
||||
"DOCS": "Læs dokumenter",
|
||||
"SECURITY": "Security"
|
||||
},
|
||||
"BILLING_SETTINGS": {
|
||||
"TITLE": "Fakturering",
|
||||
@@ -390,6 +396,77 @@
|
||||
},
|
||||
"NO_BILLING_USER": "Din faktureringskonto er ved at blive konfigureret. Opdater venligst siden og prøv igen."
|
||||
},
|
||||
"SECURITY_SETTINGS": {
|
||||
"TITLE": "Security",
|
||||
"DESCRIPTION": "Manage your account security settings.",
|
||||
"LINK_TEXT": "Learn more about SAML SSO",
|
||||
"SAML": {
|
||||
"TITLE": "SAML SSO",
|
||||
"NOTE": "Configure SAML single sign-on for your account. Users will authenticate through your identity provider instead of using email/password.",
|
||||
"ACS_URL": {
|
||||
"LABEL": "ACS URL",
|
||||
"TOOLTIP": "Assertion Consumer Service URL - Configure this URL in your IdP as the destination for SAML responses"
|
||||
},
|
||||
"SSO_URL": {
|
||||
"LABEL": "SSO URL",
|
||||
"HELP": "The URL where SAML authentication requests will be sent",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml/sso"
|
||||
},
|
||||
"CERTIFICATE": {
|
||||
"LABEL": "Signing certificate in PEM format",
|
||||
"HELP": "The public certificate from your identity provider used to verify SAML responses",
|
||||
"PLACEHOLDER": "-----BEGIN CERTIFICATE-----\nMIIC..."
|
||||
},
|
||||
"FINGERPRINT": {
|
||||
"LABEL": "Fingerprint",
|
||||
"TOOLTIP": "SHA-1 fingerprint of the certificate - Use this to verify the certificate in your IdP configuration"
|
||||
},
|
||||
"COPY_SUCCESS": "Kode kopieret til udklipsholder med succes",
|
||||
"SP_ENTITY_ID": {
|
||||
"LABEL": "SP Entity ID",
|
||||
"HELP": "Unique identifier for this application as a service provider (auto-generated).",
|
||||
"TOOLTIP": "Unique identifier for Chatwoot as the Service Provider - Configure this in your IdP settings"
|
||||
},
|
||||
"IDP_ENTITY_ID": {
|
||||
"LABEL": "Identity Provider Entity ID",
|
||||
"HELP": "Unique identifier for your identity provider (usually found in IdP configuration)",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml"
|
||||
},
|
||||
"UPDATE_BUTTON": "Update SAML Settings",
|
||||
"API": {
|
||||
"SUCCESS": "SAML settings updated successfully",
|
||||
"ERROR": "Failed to update SAML settings",
|
||||
"ERROR_LOADING": "Failed to load SAML settings",
|
||||
"DISABLED": "SAML settings disabled successfully"
|
||||
},
|
||||
"VALIDATION": {
|
||||
"REQUIRED_FIELDS": "SSO URL, Identity Provider Entity ID, and Certificate are required fields",
|
||||
"SSO_URL_ERROR": "Please enter a valid SSO URL",
|
||||
"CERTIFICATE_ERROR": "Certificate is required",
|
||||
"IDP_ENTITY_ID_ERROR": "Identity Provider Entity ID is required"
|
||||
},
|
||||
"ENTERPRISE_PAYWALL": {
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade to an Enterprise plan to access SAML single sign-on and other advanced security features.",
|
||||
"ASK_ADMIN": "Please reach out to your administrator for the upgrade."
|
||||
},
|
||||
"PAYWALL": {
|
||||
"TITLE": "Upgrade to enable SAML SSO",
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade your plan to get access to SAML single sign-on and other advanced features.",
|
||||
"UPGRADE_NOW": "Upgrade now",
|
||||
"CANCEL_ANYTIME": "You can change or cancel your plan anytime"
|
||||
},
|
||||
"ATTRIBUTE_MAPPING": {
|
||||
"TITLE": "SAML Attribute Setup",
|
||||
"DESCRIPTION": "The following attribute mappings must be configured in your identity provider"
|
||||
},
|
||||
"INFO_SECTION": {
|
||||
"TITLE": "Service Provider Information",
|
||||
"TOOLTIP": "Copy these values and configure them in your Identity Provider to establish the SAML connection"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CREATE_ACCOUNT": {
|
||||
"NO_ACCOUNT_WARNING": "Uh oh! Vi kunne ikke finde nogen Chatwoot-konti. Opret venligst en ny konto for at fortsætte.",
|
||||
"NEW_ACCOUNT": "Ny Konto",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"BUTTON_LABEL": "Button {index}",
|
||||
"COUPON_CODE": "Enter coupon code (max 15 chars)",
|
||||
"MEDIA_URL_LABEL": "Enter {type} URL",
|
||||
"DOCUMENT_NAME_PLACEHOLDER": "Enter document filename (e.g., Invoice_2025.pdf)",
|
||||
"BUTTON_PARAMETER": "Enter button parameter"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -177,7 +177,8 @@
|
||||
"REFERER_LINK": "Referrer Link",
|
||||
"ASSIGNEE_NAME": "Zugewiesener",
|
||||
"TEAM_NAME": "Team",
|
||||
"PRIORITY": "Priorität"
|
||||
"PRIORITY": "Priorität",
|
||||
"LABELS": "Labels"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -554,10 +554,12 @@
|
||||
"WROTE": "schrieb",
|
||||
"YOU": "Sie",
|
||||
"SAVE": "Notiz speichern",
|
||||
"ADD_NOTE": "Add contact note",
|
||||
"EXPAND": "Erweitern",
|
||||
"COLLAPSE": "Einklappen",
|
||||
"NO_NOTES": "Keine Notizen, Sie können Notizen auf der Kontakt-Detailseite hinzufügen.",
|
||||
"EMPTY_STATE": "Es gibt keine Notizen zu diesem Kontakt. Sie können eine Notiz hinzufügen, indem Sie diese in das obige Feld eingeben."
|
||||
"EMPTY_STATE": "Es gibt keine Notizen zu diesem Kontakt. Sie können eine Notiz hinzufügen, indem Sie diese in das obige Feld eingeben.",
|
||||
"CONVERSATION_EMPTY_STATE": "There are no notes yet. Use the Add note button to create one."
|
||||
}
|
||||
},
|
||||
"EMPTY_STATE": {
|
||||
|
||||
@@ -741,7 +741,8 @@
|
||||
"LIVE_CHAT_WIDGET": {
|
||||
"LABEL": "Live chat widget",
|
||||
"PLACEHOLDER": "Select live chat widget",
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center"
|
||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center",
|
||||
"NONE_OPTION": "No widget"
|
||||
},
|
||||
"BRAND_COLOR": {
|
||||
"LABEL": "Brand color"
|
||||
|
||||
@@ -272,8 +272,8 @@
|
||||
},
|
||||
"SUBMIT_BUTTON": "WhatsApp-Kanal erstellen",
|
||||
"EMBEDDED_SIGNUP": {
|
||||
"TITLE": "Quick Setup with Meta",
|
||||
"DESC": "You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"TITLE": "Quick setup with Meta",
|
||||
"DESC": "Use the WhatsApp Embedded Signup flow to quickly connect new numbers. You will be redirected to Meta to log into your WhatsApp Business account. Having admin access will help make the setup smooth and easy.",
|
||||
"BENEFITS": {
|
||||
"TITLE": "Benefits of Embedded Signup:",
|
||||
"EASY_SETUP": "No manual configuration required",
|
||||
@@ -281,9 +281,8 @@
|
||||
"AUTO_CONFIG": "Automatic webhook and phone number configuration"
|
||||
},
|
||||
"LEARN_MORE": {
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit",
|
||||
"LINK_TEXT": "this link.",
|
||||
"LINK_URL": "https://developers.facebook.com/docs/whatsapp/embedded-signup/custom-flows/onboarding-business-app-users#limitations"
|
||||
"TEXT": "To learn more about integrated signup, pricing, and limitations, visit {link}.",
|
||||
"LINK_TEXT": "this link"
|
||||
},
|
||||
"SUBMIT_BUTTON": "Connect with WhatsApp Business",
|
||||
"AUTH_PROCESSING": "Authenticating with Meta",
|
||||
@@ -296,7 +295,9 @@
|
||||
"INVALID_BUSINESS_DATA": "Invalid business data received from Facebook. Please try again.",
|
||||
"SIGNUP_ERROR": "Signup error occurred",
|
||||
"AUTH_NOT_COMPLETED": "Authentication not completed. Please restart the process.",
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured"
|
||||
"SUCCESS_FALLBACK": "WhatsApp Business Account has been successfully configured",
|
||||
"MANUAL_FALLBACK": "If your number is already connected to the WhatsApp Business Platform (API), or if you’re a tech provider onboarding your own number, please use the {link} flow",
|
||||
"MANUAL_LINK_TEXT": "manual setup flow"
|
||||
},
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "Wir konnten den WhatsApp-Kanal nicht speichern"
|
||||
|
||||
@@ -761,6 +761,7 @@
|
||||
"SELECTED": "{count} selected",
|
||||
"SELECT_ALL": "Select all ({count})",
|
||||
"UNSELECT_ALL": "Unselect all ({count})",
|
||||
"SEARCH_PLACEHOLDER": "Search FAQs...",
|
||||
"BULK_APPROVE_BUTTON": "Approve",
|
||||
"BULK_DELETE_BUTTON": "Löschen",
|
||||
"BULK_APPROVE": {
|
||||
|
||||
@@ -22,6 +22,20 @@
|
||||
},
|
||||
"FORGOT_PASSWORD": "Haben Sie Ihr Passwort vergessen?",
|
||||
"CREATE_NEW_ACCOUNT": "Neuen Account erstellen",
|
||||
"SUBMIT": "Einloggen"
|
||||
"SUBMIT": "Einloggen",
|
||||
"SAML": {
|
||||
"LABEL": "Log in via SSO",
|
||||
"TITLE": "Initiate Single Sign-on (SSO)",
|
||||
"SUBTITLE": "Enter your work email to access your organization",
|
||||
"BACK_TO_LOGIN": "Login via Password",
|
||||
"WORK_EMAIL": {
|
||||
"LABEL": "Work Email",
|
||||
"PLACEHOLDER": "Enter your work email"
|
||||
},
|
||||
"SUBMIT": "Continue with SSO",
|
||||
"API": {
|
||||
"ERROR_MESSAGE": "SSO authentication failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"MFA_SETTINGS": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"SUBTITLE": "Secure your account with TOTP-based authentication",
|
||||
"DESCRIPTION": "Add an extra layer of security to your account using a time-based one-time password (TOTP)",
|
||||
"STATUS_TITLE": "Authentication Status",
|
||||
"STATUS_DESCRIPTION": "Manage your two-factor authentication settings and backup recovery codes",
|
||||
"ENABLED": "Aktiviert",
|
||||
"DISABLED": "Deaktiviert",
|
||||
"STATUS_ENABLED": "Two-factor authentication is active",
|
||||
"STATUS_ENABLED_DESC": "Your account is protected with an additional layer of security",
|
||||
"ENABLE_BUTTON": "Enable Two-Factor Authentication",
|
||||
"ENHANCE_SECURITY": "Enhance Your Account Security",
|
||||
"ENHANCE_SECURITY_DESC": "Two-factor authentication adds an extra layer of security by requiring a verification code from your authenticator app in addition to your password.",
|
||||
"SETUP": {
|
||||
"STEP_NUMBER_1": "1",
|
||||
"STEP_NUMBER_2": "2",
|
||||
"STEP1_TITLE": "Scan QR Code with Your Authenticator App",
|
||||
"STEP1_DESCRIPTION": "Use Google Authenticator, Authy, or any TOTP-compatible app",
|
||||
"LOADING_QR": "Laden...",
|
||||
"MANUAL_ENTRY": "Can't scan? Enter code manually",
|
||||
"SECRET_KEY": "Secret Key",
|
||||
"COPY": "Kopieren",
|
||||
"ENTER_CODE": "Enter the 6-digit code from your authenticator app",
|
||||
"ENTER_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify & Continue",
|
||||
"CANCEL": "Stornieren",
|
||||
"ERROR_STARTING": "MFA not enabled. Please contact administrator.",
|
||||
"INVALID_CODE": "Invalid verification code",
|
||||
"SECRET_COPIED": "Secret key copied to clipboard",
|
||||
"SUCCESS": "Two-factor authentication has been enabled successfully"
|
||||
},
|
||||
"BACKUP": {
|
||||
"TITLE": "Save Your Backup Codes",
|
||||
"DESCRIPTION": "Keep these codes safe. Each can be used once if you lose access to your authenticator",
|
||||
"IMPORTANT": "Important:",
|
||||
"IMPORTANT_NOTE": " Save these codes in a secure location. You won't be able to see them again.",
|
||||
"DOWNLOAD": "Herunterladen",
|
||||
"COPY_ALL": "Copy All",
|
||||
"CONFIRM": "I have saved my backup codes in a secure location and understand that I won't be able to see them again",
|
||||
"COMPLETE_SETUP": "Complete Setup",
|
||||
"CODES_COPIED": "Backup codes copied to clipboard"
|
||||
},
|
||||
"MANAGEMENT": {
|
||||
"BACKUP_CODES": "Backup Codes",
|
||||
"BACKUP_CODES_DESC": "Generate new codes if you've lost or used your existing ones",
|
||||
"REGENERATE": "Regenerate Backup Codes",
|
||||
"DISABLE_MFA": "Disable 2FA",
|
||||
"DISABLE_MFA_DESC": "Remove two-factor authentication from your account",
|
||||
"DISABLE_BUTTON": "Disable Two-Factor Authentication"
|
||||
},
|
||||
"DISABLE": {
|
||||
"TITLE": "Disable Two-Factor Authentication",
|
||||
"DESCRIPTION": "You'll need to enter your password and a verification code to disable two-factor authentication.",
|
||||
"PASSWORD": "Passwort",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Disable 2FA",
|
||||
"CANCEL": "Stornieren",
|
||||
"SUCCESS": "Two-factor authentication has been disabled",
|
||||
"ERROR": "Failed to disable MFA. Please check your credentials."
|
||||
},
|
||||
"REGENERATE": {
|
||||
"TITLE": "Regenerate Backup Codes",
|
||||
"DESCRIPTION": "This will invalidate your existing backup codes and generate new ones. Enter your verification code to continue.",
|
||||
"OTP_CODE": "Verification Code",
|
||||
"OTP_CODE_PLACEHOLDER": "000000",
|
||||
"CONFIRM": "Generate New Codes",
|
||||
"CANCEL": "Stornieren",
|
||||
"NEW_CODES_TITLE": "New Backup Codes Generated",
|
||||
"NEW_CODES_DESC": "Your old backup codes have been invalidated. Save these new codes in a secure location.",
|
||||
"CODES_IMPORTANT": "Important:",
|
||||
"CODES_IMPORTANT_NOTE": " Each code can only be used once. Save them before closing this window.",
|
||||
"DOWNLOAD_CODES": "Download Codes",
|
||||
"COPY_ALL_CODES": "Copy All Codes",
|
||||
"CODES_SAVED": "I've Saved My Codes",
|
||||
"SUCCESS": "New backup codes have been generated",
|
||||
"ERROR": "Failed to regenerate backup codes"
|
||||
}
|
||||
},
|
||||
"MFA_VERIFICATION": {
|
||||
"TITLE": "Two-Factor Authentication",
|
||||
"DESCRIPTION": "Enter your verification code to continue",
|
||||
"AUTHENTICATOR_APP": "Authenticator App",
|
||||
"BACKUP_CODE": "Backup Code",
|
||||
"ENTER_OTP_CODE": "Enter 6-digit code from your authenticator app",
|
||||
"ENTER_BACKUP_CODE": "Enter one of your backup codes",
|
||||
"BACKUP_CODE_PLACEHOLDER": "000000",
|
||||
"VERIFY_BUTTON": "Verify",
|
||||
"TRY_ANOTHER_METHOD": "Try another verification method",
|
||||
"CANCEL_LOGIN": "Cancel and return to login",
|
||||
"HELP_TEXT": "Having trouble signing in?",
|
||||
"LEARN_MORE": "Learn more about 2FA",
|
||||
"HELP_MODAL": {
|
||||
"TITLE": "Two-Factor Authentication Help",
|
||||
"AUTHENTICATOR_TITLE": "Using an Authenticator App",
|
||||
"AUTHENTICATOR_DESC": "Open your authenticator app (Google Authenticator, Authy, etc.) and enter the 6-digit code shown for your account.",
|
||||
"BACKUP_TITLE": "Using a Backup Code",
|
||||
"BACKUP_DESC": "If you don't have access to your authenticator app, you can use one of the backup codes you saved when setting up 2FA. Each code can only be used once.",
|
||||
"CONTACT_TITLE": "Need More Help?",
|
||||
"CONTACT_DESC_CLOUD": "If you've lost access to both your authenticator app and backup codes, please reach out to Chatwoot support for assistance.",
|
||||
"CONTACT_DESC_SELF_HOSTED": "If you've lost access to both your authenticator app and backup codes, please contact your administrator for assistance."
|
||||
},
|
||||
"VERIFICATION_FAILED": "Verification failed. Please try again."
|
||||
}
|
||||
}
|
||||
@@ -80,6 +80,11 @@
|
||||
"NOTE": "Durch das Aktualisieren Ihres Kennworts werden Ihre Anmeldungen auf mehreren Geräten zurückgesetzt.",
|
||||
"BTN_TEXT": "Passwort ändern"
|
||||
},
|
||||
"SECURITY_SECTION": {
|
||||
"TITLE": "Security",
|
||||
"NOTE": "Manage additional security features for your account.",
|
||||
"MFA_BUTTON": "Manage Two-Factor Authentication"
|
||||
},
|
||||
"ACCESS_TOKEN": {
|
||||
"TITLE": "Zugangstoken",
|
||||
"NOTE": "Dieses Token kann verwendet werden, wenn Sie eine API-basierte Integration erstellen",
|
||||
@@ -358,7 +363,8 @@
|
||||
"INFO_TEXT": "Lassen Sie sich vom System automatisch als offline markieren, wenn Sie die App oder das Dashboard nicht verwenden.",
|
||||
"INFO_SHORT": "Automatically mark offline when you aren't using the app."
|
||||
},
|
||||
"DOCS": "Dokumente lesen"
|
||||
"DOCS": "Dokumente lesen",
|
||||
"SECURITY": "Security"
|
||||
},
|
||||
"BILLING_SETTINGS": {
|
||||
"TITLE": "Rechnungen",
|
||||
@@ -390,6 +396,77 @@
|
||||
},
|
||||
"NO_BILLING_USER": "Ihr Rechnungskonto wird konfiguriert. Bitte aktualisieren Sie die Seite und versuchen Sie es erneut."
|
||||
},
|
||||
"SECURITY_SETTINGS": {
|
||||
"TITLE": "Security",
|
||||
"DESCRIPTION": "Manage your account security settings.",
|
||||
"LINK_TEXT": "Learn more about SAML SSO",
|
||||
"SAML": {
|
||||
"TITLE": "SAML SSO",
|
||||
"NOTE": "Configure SAML single sign-on for your account. Users will authenticate through your identity provider instead of using email/password.",
|
||||
"ACS_URL": {
|
||||
"LABEL": "ACS URL",
|
||||
"TOOLTIP": "Assertion Consumer Service URL - Configure this URL in your IdP as the destination for SAML responses"
|
||||
},
|
||||
"SSO_URL": {
|
||||
"LABEL": "SSO URL",
|
||||
"HELP": "The URL where SAML authentication requests will be sent",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml/sso"
|
||||
},
|
||||
"CERTIFICATE": {
|
||||
"LABEL": "Signing certificate in PEM format",
|
||||
"HELP": "The public certificate from your identity provider used to verify SAML responses",
|
||||
"PLACEHOLDER": "-----BEGIN CERTIFICATE-----\nMIIC..."
|
||||
},
|
||||
"FINGERPRINT": {
|
||||
"LABEL": "Fingerprint",
|
||||
"TOOLTIP": "SHA-1 fingerprint of the certificate - Use this to verify the certificate in your IdP configuration"
|
||||
},
|
||||
"COPY_SUCCESS": "Code erfolgreich in die Zwischenablage kopiert",
|
||||
"SP_ENTITY_ID": {
|
||||
"LABEL": "SP Entity ID",
|
||||
"HELP": "Unique identifier for this application as a service provider (auto-generated).",
|
||||
"TOOLTIP": "Unique identifier for Chatwoot as the Service Provider - Configure this in your IdP settings"
|
||||
},
|
||||
"IDP_ENTITY_ID": {
|
||||
"LABEL": "Identity Provider Entity ID",
|
||||
"HELP": "Unique identifier for your identity provider (usually found in IdP configuration)",
|
||||
"PLACEHOLDER": "https://your-idp.com/saml"
|
||||
},
|
||||
"UPDATE_BUTTON": "Update SAML Settings",
|
||||
"API": {
|
||||
"SUCCESS": "SAML settings updated successfully",
|
||||
"ERROR": "Failed to update SAML settings",
|
||||
"ERROR_LOADING": "Failed to load SAML settings",
|
||||
"DISABLED": "SAML settings disabled successfully"
|
||||
},
|
||||
"VALIDATION": {
|
||||
"REQUIRED_FIELDS": "SSO URL, Identity Provider Entity ID, and Certificate are required fields",
|
||||
"SSO_URL_ERROR": "Please enter a valid SSO URL",
|
||||
"CERTIFICATE_ERROR": "Certificate is required",
|
||||
"IDP_ENTITY_ID_ERROR": "Identity Provider Entity ID is required"
|
||||
},
|
||||
"ENTERPRISE_PAYWALL": {
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade to an Enterprise plan to access SAML single sign-on and other advanced security features.",
|
||||
"ASK_ADMIN": "Please reach out to your administrator for the upgrade."
|
||||
},
|
||||
"PAYWALL": {
|
||||
"TITLE": "Upgrade to enable SAML SSO",
|
||||
"AVAILABLE_ON": "The SAML SSO feature is only available in the Enterprise plans.",
|
||||
"UPGRADE_PROMPT": "Upgrade your plan to get access to SAML single sign-on and other advanced features.",
|
||||
"UPGRADE_NOW": "Upgrade now",
|
||||
"CANCEL_ANYTIME": "You can change or cancel your plan anytime"
|
||||
},
|
||||
"ATTRIBUTE_MAPPING": {
|
||||
"TITLE": "SAML Attribute Setup",
|
||||
"DESCRIPTION": "The following attribute mappings must be configured in your identity provider"
|
||||
},
|
||||
"INFO_SECTION": {
|
||||
"TITLE": "Service Provider Information",
|
||||
"TOOLTIP": "Copy these values and configure them in your Identity Provider to establish the SAML connection"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CREATE_ACCOUNT": {
|
||||
"NO_ACCOUNT_WARNING": "Oh oh! Wir konnten keine Chatwoot-Konten finden. Bitte erstellen Sie ein neues Konto um fortzufahren.",
|
||||
"NEW_ACCOUNT": "Neuer Account",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"BUTTON_LABEL": "Button {index}",
|
||||
"COUPON_CODE": "Enter coupon code (max 15 chars)",
|
||||
"MEDIA_URL_LABEL": "Enter {type} URL",
|
||||
"DOCUMENT_NAME_PLACEHOLDER": "Enter document filename (e.g., Invoice_2025.pdf)",
|
||||
"BUTTON_PARAMETER": "Enter button parameter"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -177,7 +177,8 @@
|
||||
"REFERER_LINK": "Referrer Link",
|
||||
"ASSIGNEE_NAME": "Assignee",
|
||||
"TEAM_NAME": "Ομάδα",
|
||||
"PRIORITY": "Priority"
|
||||
"PRIORITY": "Priority",
|
||||
"LABELS": "Ετικέτες"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -554,10 +554,12 @@
|
||||
"WROTE": "wrote",
|
||||
"YOU": "You",
|
||||
"SAVE": "Save note",
|
||||
"ADD_NOTE": "Add contact note",
|
||||
"EXPAND": "Expand",
|
||||
"COLLAPSE": "Collapse",
|
||||
"NO_NOTES": "No notes, you can add notes from the contact details page.",
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above."
|
||||
"EMPTY_STATE": "There are no notes associated to this contact. You can add a note by typing in the box above.",
|
||||
"CONVERSATION_EMPTY_STATE": "There are no notes yet. Use the Add note button to create one."
|
||||
}
|
||||
},
|
||||
"EMPTY_STATE": {
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user