Initial commit
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
.idea
|
||||||
|
target
|
660
LICENSE.md
Normal file
@ -0,0 +1,660 @@
|
|||||||
|
### GNU AFFERO GENERAL PUBLIC LICENSE
|
||||||
|
|
||||||
|
Version 3, 19 November 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc.
|
||||||
|
<https://fsf.org/>
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies of this
|
||||||
|
license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
### Preamble
|
||||||
|
|
||||||
|
The GNU Affero General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works, specifically designed to ensure
|
||||||
|
cooperation with the community in the case of network server software.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
our General Public Licenses are intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains
|
||||||
|
free software for all its users.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
Developers that use our General Public Licenses protect your rights
|
||||||
|
with two steps: (1) assert copyright on the software, and (2) offer
|
||||||
|
you this License which gives you legal permission to copy, distribute
|
||||||
|
and/or modify the software.
|
||||||
|
|
||||||
|
A secondary benefit of defending all users' freedom is that
|
||||||
|
improvements made in alternate versions of the program, if they
|
||||||
|
receive widespread use, become available for other developers to
|
||||||
|
incorporate. Many developers of free software are heartened and
|
||||||
|
encouraged by the resulting cooperation. However, in the case of
|
||||||
|
software used on network servers, this result may fail to come about.
|
||||||
|
The GNU General Public License permits making a modified version and
|
||||||
|
letting the public access it on a server without ever releasing its
|
||||||
|
source code to the public.
|
||||||
|
|
||||||
|
The GNU Affero General Public License is designed specifically to
|
||||||
|
ensure that, in such cases, the modified source code becomes available
|
||||||
|
to the community. It requires the operator of a network server to
|
||||||
|
provide the source code of the modified version running there to the
|
||||||
|
users of that server. Therefore, public use of a modified version, on
|
||||||
|
a publicly accessible server, gives the public access to the source
|
||||||
|
code of the modified version.
|
||||||
|
|
||||||
|
An older license, called the Affero General Public License and
|
||||||
|
published by Affero, was designed to accomplish similar goals. This is
|
||||||
|
a different license, not a version of the Affero GPL, but Affero has
|
||||||
|
released a new version of the Affero GPL which permits relicensing
|
||||||
|
under this license.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
### TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
#### 0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU Affero General Public
|
||||||
|
License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds
|
||||||
|
of works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of
|
||||||
|
an exact copy. The resulting work is called a "modified version" of
|
||||||
|
the earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user
|
||||||
|
through a computer network, with no transfer of a copy, is not
|
||||||
|
conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices" to
|
||||||
|
the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
#### 1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work for
|
||||||
|
making modifications to it. "Object code" means any non-source form of
|
||||||
|
a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users can
|
||||||
|
regenerate automatically from other parts of the Corresponding Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that same
|
||||||
|
work.
|
||||||
|
|
||||||
|
#### 2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not convey,
|
||||||
|
without conditions so long as your license otherwise remains in force.
|
||||||
|
You may convey covered works to others for the sole purpose of having
|
||||||
|
them make modifications exclusively for you, or provide you with
|
||||||
|
facilities for running those works, provided that you comply with the
|
||||||
|
terms of this License in conveying all material for which you do not
|
||||||
|
control copyright. Those thus making or running the covered works for
|
||||||
|
you must do so exclusively on your behalf, under your direction and
|
||||||
|
control, on terms that prohibit them from making any copies of your
|
||||||
|
copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under the
|
||||||
|
conditions stated below. Sublicensing is not allowed; section 10 makes
|
||||||
|
it unnecessary.
|
||||||
|
|
||||||
|
#### 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such
|
||||||
|
circumvention is effected by exercising rights under this License with
|
||||||
|
respect to the covered work, and you disclaim any intention to limit
|
||||||
|
operation or modification of the work as a means of enforcing, against
|
||||||
|
the work's users, your or third parties' legal rights to forbid
|
||||||
|
circumvention of technological measures.
|
||||||
|
|
||||||
|
#### 4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
#### 5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these
|
||||||
|
conditions:
|
||||||
|
|
||||||
|
- a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
- b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under
|
||||||
|
section 7. This requirement modifies the requirement in section 4
|
||||||
|
to "keep intact all notices".
|
||||||
|
- c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
- d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
#### 6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms of
|
||||||
|
sections 4 and 5, provided that you also convey the machine-readable
|
||||||
|
Corresponding Source under the terms of this License, in one of these
|
||||||
|
ways:
|
||||||
|
|
||||||
|
- a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
- b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the Corresponding
|
||||||
|
Source from a network server at no charge.
|
||||||
|
- c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
- d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
- e) Convey the object code using peer-to-peer transmission,
|
||||||
|
provided you inform other peers where the object code and
|
||||||
|
Corresponding Source of the work are being offered to the general
|
||||||
|
public at no charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal,
|
||||||
|
family, or household purposes, or (2) anything designed or sold for
|
||||||
|
incorporation into a dwelling. In determining whether a product is a
|
||||||
|
consumer product, doubtful cases shall be resolved in favor of
|
||||||
|
coverage. For a particular product received by a particular user,
|
||||||
|
"normally used" refers to a typical or common use of that class of
|
||||||
|
product, regardless of the status of the particular user or of the way
|
||||||
|
in which the particular user actually uses, or expects or is expected
|
||||||
|
to use, the product. A product is a consumer product regardless of
|
||||||
|
whether the product has substantial commercial, industrial or
|
||||||
|
non-consumer uses, unless such uses represent the only significant
|
||||||
|
mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to
|
||||||
|
install and execute modified versions of a covered work in that User
|
||||||
|
Product from a modified version of its Corresponding Source. The
|
||||||
|
information must suffice to ensure that the continued functioning of
|
||||||
|
the modified object code is in no case prevented or interfered with
|
||||||
|
solely because modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or
|
||||||
|
updates for a work that has been modified or installed by the
|
||||||
|
recipient, or for the User Product in which it has been modified or
|
||||||
|
installed. Access to a network may be denied when the modification
|
||||||
|
itself materially and adversely affects the operation of the network
|
||||||
|
or violates the rules and protocols for communication across the
|
||||||
|
network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
#### 7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders
|
||||||
|
of that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
- a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
- b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
- c) Prohibiting misrepresentation of the origin of that material,
|
||||||
|
or requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
- d) Limiting the use for publicity purposes of names of licensors
|
||||||
|
or authors of the material; or
|
||||||
|
- e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
- f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions
|
||||||
|
of it) with contractual assumptions of liability to the recipient,
|
||||||
|
for any liability that these contractual assumptions directly
|
||||||
|
impose on those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions; the
|
||||||
|
above requirements apply either way.
|
||||||
|
|
||||||
|
#### 8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your license
|
||||||
|
from a particular copyright holder is reinstated (a) provisionally,
|
||||||
|
unless and until the copyright holder explicitly and finally
|
||||||
|
terminates your license, and (b) permanently, if the copyright holder
|
||||||
|
fails to notify you of the violation by some reasonable means prior to
|
||||||
|
60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
#### 9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or run
|
||||||
|
a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
#### 10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
#### 11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims owned
|
||||||
|
or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within the
|
||||||
|
scope of its coverage, prohibits the exercise of, or is conditioned on
|
||||||
|
the non-exercise of one or more of the rights that are specifically
|
||||||
|
granted under this License. You may not convey a covered work if you
|
||||||
|
are a party to an arrangement with a third party that is in the
|
||||||
|
business of distributing software, under which you make payment to the
|
||||||
|
third party based on the extent of your activity of conveying the
|
||||||
|
work, and under which the third party grants, to any of the parties
|
||||||
|
who would receive the covered work from you, a discriminatory patent
|
||||||
|
license (a) in connection with copies of the covered work conveyed by
|
||||||
|
you (or copies made from those copies), or (b) primarily for and in
|
||||||
|
connection with specific products or compilations that contain the
|
||||||
|
covered work, unless you entered into that arrangement, or that patent
|
||||||
|
license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
#### 12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under
|
||||||
|
this License and any other pertinent obligations, then as a
|
||||||
|
consequence you may not convey it at all. For example, if you agree to
|
||||||
|
terms that obligate you to collect a royalty for further conveying
|
||||||
|
from those to whom you convey the Program, the only way you could
|
||||||
|
satisfy both those terms and this License would be to refrain entirely
|
||||||
|
from conveying the Program.
|
||||||
|
|
||||||
|
#### 13. Remote Network Interaction; Use with the GNU General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, if you modify the
|
||||||
|
Program, your modified version must prominently offer all users
|
||||||
|
interacting with it remotely through a computer network (if your
|
||||||
|
version supports such interaction) an opportunity to receive the
|
||||||
|
Corresponding Source of your version by providing access to the
|
||||||
|
Corresponding Source from a network server at no charge, through some
|
||||||
|
standard or customary means of facilitating copying of software. This
|
||||||
|
Corresponding Source shall include the Corresponding Source for any
|
||||||
|
work covered by version 3 of the GNU General Public License that is
|
||||||
|
incorporated pursuant to the following paragraph.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the work with which it is combined will remain governed by version
|
||||||
|
3 of the GNU General Public License.
|
||||||
|
|
||||||
|
#### 14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the GNU Affero General Public License from time to time. Such new
|
||||||
|
versions will be similar in spirit to the present version, but may
|
||||||
|
differ in detail to address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies that a certain numbered version of the GNU Affero General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU Affero General Public License, you may choose any version ever
|
||||||
|
published by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future versions
|
||||||
|
of the GNU Affero General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
#### 15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
|
||||||
|
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
|
||||||
|
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
|
||||||
|
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
|
||||||
|
CORRECTION.
|
||||||
|
|
||||||
|
#### 16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
|
||||||
|
CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
|
||||||
|
ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
|
||||||
|
NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
|
||||||
|
LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
|
||||||
|
TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
|
||||||
|
PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
#### 17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
### How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these
|
||||||
|
terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest to
|
||||||
|
attach them to the start of each source file to most effectively state
|
||||||
|
the exclusion of warranty; and each file should have at least the
|
||||||
|
"copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Affero General Public License as
|
||||||
|
published by the Free Software Foundation, either version 3 of the
|
||||||
|
License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Affero General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Affero General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper
|
||||||
|
mail.
|
||||||
|
|
||||||
|
If your software can interact with users remotely through a computer
|
||||||
|
network, you should also make sure that it provides a way for users to
|
||||||
|
get its source. For example, if your program is a web application, its
|
||||||
|
interface could display a "Source" link that leads users to an archive
|
||||||
|
of the code. There are many ways you could offer source, and different
|
||||||
|
solutions will be better for different programs; see section 13 for
|
||||||
|
the specific requirements.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
|
necessary. For more information on this, and how to apply and follow
|
||||||
|
the GNU AGPL, see <https://www.gnu.org/licenses/>.
|
16
README.md
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
Converse Tauri
|
||||||
|
--------------
|
||||||
|
|
||||||
|
This is [Converse.js](https://conversejs.org/) (version 9.1.1) in [Tauri](https://tauri.app) connecting to any XMPP
|
||||||
|
server through [xmpp-proxy](https://github.com/moparisthebest/xmpp-proxy).
|
||||||
|
|
||||||
|
It's the first known client to support [QUIC](https://xmpp.org/extensions/xep-0467.html).
|
||||||
|
|
||||||
|
To build install Tauri `cargo install create-tauri-app`, then run `cargo tauri build`
|
||||||
|
|
||||||
|
If you trust me you can download these binaries, I've only tested the AppImage ([arch btw](https://www.moparisthebest.com/images/i-only-use-arch-linux.png)):
|
||||||
|
* [converse-tauri_0.1.0_amd64.AppImage](https://www.moparisthebest.com/converse-tauri_0.1.0_amd64.AppImage)
|
||||||
|
* [converse-tauri_0.1.0_amd64.deb](https://www.moparisthebest.com/converse-tauri_0.1.0_amd64.deb)
|
||||||
|
|
||||||
|
#### License
|
||||||
|
GNU/AGPLv3 - Check LICENSE.md for details
|
1
dist/3rdparty/libsignal-protocol.min.js
vendored
Normal file
43
dist/dist/converse.css
vendored
Normal file
81651
dist/dist/converse.js
vendored
Normal file
43
dist/dist/converse.min.css
vendored
Normal file
2331
dist/dist/converse.min.js
vendored
Normal file
364
dist/dist/converse.min.js.LICENSE.txt
vendored
Normal file
@ -0,0 +1,364 @@
|
|||||||
|
/*!
|
||||||
|
localForage -- Offline Storage, Improved
|
||||||
|
Version 1.10.0
|
||||||
|
https://localforage.github.io/localForage
|
||||||
|
(c) 2013-2017 Mozilla, Apache License 2.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*!
|
||||||
|
MIT License
|
||||||
|
Copyright (c) 2018 Arturas Molcanovas <a.molcanovas@gmail.com>
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* Sizzle CSS Selector Engine v2.3.6
|
||||||
|
* https://sizzlejs.com/
|
||||||
|
*
|
||||||
|
* Copyright JS Foundation and other contributors
|
||||||
|
* Released under the MIT license
|
||||||
|
* https://js.foundation/
|
||||||
|
*
|
||||||
|
* Date: 2021-02-16
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* URI.js - Mutating URLs
|
||||||
|
*
|
||||||
|
* Version: 1.19.11
|
||||||
|
*
|
||||||
|
* Author: Rodney Rehm
|
||||||
|
* Web: http://medialize.github.io/URI.js/
|
||||||
|
*
|
||||||
|
* Licensed under
|
||||||
|
* MIT License http://www.opensource.org/licenses/mit-license
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* URI.js - Mutating URLs
|
||||||
|
* IPv6 Support
|
||||||
|
*
|
||||||
|
* Version: 1.19.11
|
||||||
|
*
|
||||||
|
* Author: Rodney Rehm
|
||||||
|
* Web: http://medialize.github.io/URI.js/
|
||||||
|
*
|
||||||
|
* Licensed under
|
||||||
|
* MIT License http://www.opensource.org/licenses/mit-license
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* URI.js - Mutating URLs
|
||||||
|
* Second Level Domain (SLD) Support
|
||||||
|
*
|
||||||
|
* Version: 1.19.11
|
||||||
|
*
|
||||||
|
* Author: Rodney Rehm
|
||||||
|
* Web: http://medialize.github.io/URI.js/
|
||||||
|
*
|
||||||
|
* Licensed under
|
||||||
|
* MIT License http://www.opensource.org/licenses/mit-license
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*!
|
||||||
|
2020 Jason Mulligan <jason.mulligan@avoidwork.com>
|
||||||
|
@version 7.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*!
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2018 Arturas Molcanovas <a.molcanovas@gmail.com>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*! *****************************************************************************
|
||||||
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
|
and limitations under the License.
|
||||||
|
***************************************************************************** */
|
||||||
|
|
||||||
|
/*! @license DOMPurify 2.3.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.3.6/LICENSE */
|
||||||
|
|
||||||
|
/*! https://mths.be/punycode v1.4.0 by @mathias */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
* @description This is the form utilities module.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright Alfredo Medrano Sánchez and the Converse.js contributors
|
||||||
|
* @description
|
||||||
|
* Component inspired by the one from fa-icons
|
||||||
|
* https://github.com/obsidiansoft-io/fa-icons/blob/master/LICENSE
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright JC Brand
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
* @description A plugin which restricts Converse to only one chat.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright Shachaf Ben-Kiki and the Converse.js contributors
|
||||||
|
* @description
|
||||||
|
* Started as a fork of Shachaf Ben-Kiki's jsgif library
|
||||||
|
* https://github.com/shachaf/jsgif
|
||||||
|
* @license MIT License
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright The Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
* @description Converse.js plugin which add support for XEP-0206: XMPP Over BOSH
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright The Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
* @description Converse.js plugin which adds support for XEP-0198: Stream Management
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright The Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
* @description This is the core utilities module.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright The Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description
|
||||||
|
* Converse.js plugin which shows a list of currently open
|
||||||
|
* rooms in the "Rooms Panel" of the ControlBox.
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description
|
||||||
|
* Converse.js plugin which add support for registering
|
||||||
|
* an "App Server" as defined in XEP-0357
|
||||||
|
* @copyright 2021, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description
|
||||||
|
* Converse.js plugin which adds views for bookmarks specified in XEP-0048.
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Converse.js (A browser based XMPP chat client)
|
||||||
|
* @copyright 2021, The Converse developers
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Converse.js plugin which adds views for XEP-0048 bookmarks
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description UI code XEP-0313 Message Archive Management
|
||||||
|
* @copyright 2021, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description XEP-0313 Message Archive Management
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @license
|
||||||
|
* Copyright 2017 Google LLC
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @license
|
||||||
|
* Copyright 2019 Google LLC
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @license
|
||||||
|
* Copyright 2020 Google LLC
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @license MIT or GPL-2.0
|
||||||
|
* @fileOverview Favico animations
|
||||||
|
* @author Miroslav Magda, http://blog.ejci.net
|
||||||
|
* @source: https://github.com/ejci/favico.js
|
||||||
|
* @version 0.3.10
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-carbons
|
||||||
|
* @copyright The Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
* @description Implements support for XEP-0280 Message Carbons
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-chatboxviews
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-dragresize
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-emoji
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-fullscreen
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-headlines-view
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-minimize
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-notification
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-pubsub
|
||||||
|
* @copyright The Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-register
|
||||||
|
* @description
|
||||||
|
* This is a Converse.js plugin which add support for in-band registration
|
||||||
|
* as specified in XEP-0077.
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module converse-rsm
|
||||||
|
* @copyright The Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
* @description XEP-0059 Result Set Management
|
||||||
|
* Some code taken from the Strophe RSM plugin, licensed under the MIT License
|
||||||
|
* Copyright 2006-2017 Strophe (https://github.com/strophe/strophejs)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module i18n
|
||||||
|
* @copyright 2022, the Converse.js contributors
|
||||||
|
* @license Mozilla Public License (MPLv2)
|
||||||
|
* @description This is the internationalization module
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @preserve jed.js https://github.com/SlexAxton/Jed
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clears the specified timeout and interval.
|
||||||
|
* @method u#clearTimers
|
||||||
|
* @param {number} timeout - Id if the timeout to clear.
|
||||||
|
* @param {number} interval - Id of the interval to clear.
|
||||||
|
* @private
|
||||||
|
* @copyright Simen Bekkhus 2016
|
||||||
|
* @license MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a {@link Promise} that resolves if the passed in function returns a truthy value.
|
||||||
|
* Rejects if it throws or does not return truthy within the given max_wait.
|
||||||
|
* @method u#waitUntil
|
||||||
|
* @param {Function} func - The function called every check_delay,
|
||||||
|
* and the result of which is the resolved value of the promise.
|
||||||
|
* @param {number} [max_wait=300] - The time to wait before rejecting the promise.
|
||||||
|
* @param {number} [check_delay=3] - The time to wait before each invocation of {func}.
|
||||||
|
* @returns {Promise} A promise resolved with the value of func,
|
||||||
|
* or rejected with the exception thrown by it or it times out.
|
||||||
|
* @copyright Simen Bekkhus 2016
|
||||||
|
* @license MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*@cc_on!@*/
|
11
dist/dist/emojis.js
vendored
Normal file
BIN
dist/dist/images/custom_emojis/converse.png
vendored
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
dist/dist/images/custom_emojis/xmpp.png
vendored
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
dist/dist/images/favicon.ico
vendored
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
dist/dist/images/logo/conversejs-filled-192.png
vendored
Normal file
After Width: | Height: | Size: 7.1 KiB |
90
dist/dist/images/logo/conversejs-filled-192.svg
vendored
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="192px" height="192px" viewBox="0 0 192 192" enable-background="new 0 0 192 192" xml:space="preserve"> <image id="image0" width="192" height="192" x="0" y="0"
|
||||||
|
href="data:image/png;base64,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" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.9 KiB |
BIN
dist/dist/images/logo/conversejs-filled-512.png
vendored
Normal file
After Width: | Height: | Size: 37 KiB |
310
dist/dist/images/logo/conversejs-filled-512.svg
vendored
Normal file
@ -0,0 +1,310 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve"> <image id="image0" width="512" height="512" x="0" y="0"
|
||||||
|
href="data:image/png;base64,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" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 24 KiB |
19
dist/dist/images/logo/conversejs-filled.svg
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<svg class="converse-svg-logo"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
viewBox="0 0 364 364">
|
||||||
|
<title>Converse</title>
|
||||||
|
<g class="cls-1" id="g904">
|
||||||
|
<g data-name="Layer 2">
|
||||||
|
<g data-name="Layer 7">
|
||||||
|
<path
|
||||||
|
class="cls-3"
|
||||||
|
d="M221.46,103.71c0,18.83-29.36,18.83-29.12,0C192.1,84.88,221.46,84.88,221.46,103.71Z" />
|
||||||
|
<path
|
||||||
|
class="cls-4"
|
||||||
|
d="M179.9,4.15A175.48,175.48,0,1,0,355.38,179.63,175.48,175.48,0,0,0,179.9,4.15Zm-40.79,264.5c-.23-17.82,27.58-17.82,27.58,0S138.88,286.48,139.11,268.65ZM218.6,168.24A79.65,79.65,0,0,1,205.15,174a12.76,12.76,0,0,0-6.29,4.65L167.54,222a1.36,1.36,0,0,1-2.46-.8v-35.8a2.58,2.58,0,0,0-3.06-2.53c-15.43,3-30.23,7.7-42.73,19.94-38.8,38-29.42,105.69,16.09,133.16a162.25,162.25,0,0,1-91.47-67.27C-3.86,182.26,34.5,47.25,138.37,25.66c46.89-9.75,118.25,5.16,123.73,62.83C265.15,120.64,246.56,152.89,218.6,168.24Z" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
11
dist/dist/locales/af-LC_MESSAGES-converse-po.js
vendored
Normal file
11
dist/dist/locales/ar-LC_MESSAGES-converse-po.js
vendored
Normal file
11
dist/dist/locales/bg-LC_MESSAGES-converse-po.js
vendored
Normal file
11
dist/dist/locales/ca-LC_MESSAGES-converse-po.js
vendored
Normal file
11
dist/dist/locales/cs-LC_MESSAGES-converse-po.js
vendored
Normal file
11
dist/dist/locales/da-LC_MESSAGES-converse-po.js
vendored
Normal file
59
dist/dist/locales/dayjs/af-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[9210],{
|
||||||
|
|
||||||
|
/***/ 4862:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var n = a(e),
|
||||||
|
t = {
|
||||||
|
name: "af",
|
||||||
|
weekdays: "Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),
|
||||||
|
months: "Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),
|
||||||
|
weekdaysMin: "So_Ma_Di_Wo_Do_Vr_Sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "oor %s",
|
||||||
|
past: "%s gelede",
|
||||||
|
s: "'n paar sekondes",
|
||||||
|
m: "'n minuut",
|
||||||
|
mm: "%d minute",
|
||||||
|
h: "'n uur",
|
||||||
|
hh: "%d ure",
|
||||||
|
d: "'n dag",
|
||||||
|
dd: "%d dae",
|
||||||
|
M: "'n maand",
|
||||||
|
MM: "%d maande",
|
||||||
|
y: "'n jaar",
|
||||||
|
yy: "%d jaar"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return n.default.locale(t, null, !0), t;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=af-js.js.map
|
61
dist/dist/locales/dayjs/am-js.js
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5073],{
|
||||||
|
|
||||||
|
/***/ 2469:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, _) {
|
||||||
|
true ? module.exports = _(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function _(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = _(e),
|
||||||
|
d = {
|
||||||
|
name: "am",
|
||||||
|
weekdays: "እሑድ_ሰኞ_ማክሰኞ_ረቡዕ_ሐሙስ_አርብ_ቅዳሜ".split("_"),
|
||||||
|
weekdaysShort: "እሑድ_ሰኞ_ማክሰ_ረቡዕ_ሐሙስ_አርብ_ቅዳሜ".split("_"),
|
||||||
|
weekdaysMin: "እሑ_ሰኞ_ማክ_ረቡ_ሐሙ_አር_ቅዳ".split("_"),
|
||||||
|
months: "ጃንዋሪ_ፌብሯሪ_ማርች_ኤፕሪል_ሜይ_ጁን_ጁላይ_ኦገስት_ሴፕቴምበር_ኦክቶበር_ኖቬምበር_ዲሴምበር".split("_"),
|
||||||
|
monthsShort: "ጃንዋ_ፌብሯ_ማርች_ኤፕሪ_ሜይ_ጁን_ጁላይ_ኦገስ_ሴፕቴ_ኦክቶ_ኖቬም_ዲሴም".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
yearStart: 4,
|
||||||
|
relativeTime: {
|
||||||
|
future: "በ%s",
|
||||||
|
past: "%s በፊት",
|
||||||
|
s: "ጥቂት ሰከንዶች",
|
||||||
|
m: "አንድ ደቂቃ",
|
||||||
|
mm: "%d ደቂቃዎች",
|
||||||
|
h: "አንድ ሰዓት",
|
||||||
|
hh: "%d ሰዓታት",
|
||||||
|
d: "አንድ ቀን",
|
||||||
|
dd: "%d ቀናት",
|
||||||
|
M: "አንድ ወር",
|
||||||
|
MM: "%d ወራት",
|
||||||
|
y: "አንድ ዓመት",
|
||||||
|
yy: "%d ዓመታት"
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "MMMM D ፣ YYYY",
|
||||||
|
LLL: "MMMM D ፣ YYYY HH:mm",
|
||||||
|
LLLL: "dddd ፣ MMMM D ፣ YYYY HH:mm"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + "ኛ";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=am-js.js.map
|
61
dist/dist/locales/dayjs/ar-dz-js.js
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[9406],{
|
||||||
|
|
||||||
|
/***/ 7966:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "ar-dz",
|
||||||
|
weekdays: "الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),
|
||||||
|
months: "جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),
|
||||||
|
weekdaysShort: "احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),
|
||||||
|
monthsShort: "جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),
|
||||||
|
weekdaysMin: "أح_إث_ثلا_أر_خم_جم_سب".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
meridiem: function (_) {
|
||||||
|
return _ > 12 ? "ص" : "م";
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "في %s",
|
||||||
|
past: "منذ %s",
|
||||||
|
s: "ثوان",
|
||||||
|
m: "دقيقة",
|
||||||
|
mm: "%d دقائق",
|
||||||
|
h: "ساعة",
|
||||||
|
hh: "%d ساعات",
|
||||||
|
d: "يوم",
|
||||||
|
dd: "%d أيام",
|
||||||
|
M: "شهر",
|
||||||
|
MM: "%d أشهر",
|
||||||
|
y: "سنة",
|
||||||
|
yy: "%d سنوات"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ar-dz-js.js.map
|
63
dist/dist/locales/dayjs/ar-iq-js.js
vendored
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[2990],{
|
||||||
|
|
||||||
|
/***/ 8390:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, _) {
|
||||||
|
true ? module.exports = _(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function _(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = _(e),
|
||||||
|
d = {
|
||||||
|
name: "ar-iq",
|
||||||
|
weekdays: "الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),
|
||||||
|
months: "كانون الثاني_شباط_آذار_نيسان_أيار_حزيران_تموز_آب_أيلول_تشرين الأول_ تشرين الثاني_كانون الأول".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),
|
||||||
|
monthsShort: "كانون الثاني_شباط_آذار_نيسان_أيار_حزيران_تموز_آب_أيلول_تشرين الأول_ تشرين الثاني_كانون الأول".split("_"),
|
||||||
|
weekdaysMin: "ح_ن_ث_ر_خ_ج_س".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
meridiem: function (e) {
|
||||||
|
return e > 12 ? "ص" : "م";
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "في %s",
|
||||||
|
past: "منذ %s",
|
||||||
|
s: "ثوان",
|
||||||
|
m: "دقيقة",
|
||||||
|
mm: "%d دقائق",
|
||||||
|
h: "ساعة",
|
||||||
|
hh: "%d ساعات",
|
||||||
|
d: "يوم",
|
||||||
|
dd: "%d أيام",
|
||||||
|
M: "شهر",
|
||||||
|
MM: "%d أشهر",
|
||||||
|
y: "سنة",
|
||||||
|
yy: "%d سنوات"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ar-iq-js.js.map
|
94
dist/dist/locales/dayjs/ar-js.js
vendored
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[6755],{
|
||||||
|
|
||||||
|
/***/ 5992:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, t) {
|
||||||
|
true ? module.exports = t(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function t(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var n = t(e),
|
||||||
|
r = "يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),
|
||||||
|
_ = {
|
||||||
|
1: "١",
|
||||||
|
2: "٢",
|
||||||
|
3: "٣",
|
||||||
|
4: "٤",
|
||||||
|
5: "٥",
|
||||||
|
6: "٦",
|
||||||
|
7: "٧",
|
||||||
|
8: "٨",
|
||||||
|
9: "٩",
|
||||||
|
0: "٠"
|
||||||
|
},
|
||||||
|
d = {
|
||||||
|
"١": "1",
|
||||||
|
"٢": "2",
|
||||||
|
"٣": "3",
|
||||||
|
"٤": "4",
|
||||||
|
"٥": "5",
|
||||||
|
"٦": "6",
|
||||||
|
"٧": "7",
|
||||||
|
"٨": "8",
|
||||||
|
"٩": "9",
|
||||||
|
"٠": "0"
|
||||||
|
},
|
||||||
|
o = {
|
||||||
|
name: "ar",
|
||||||
|
weekdays: "الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),
|
||||||
|
weekdaysShort: "أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),
|
||||||
|
weekdaysMin: "ح_ن_ث_ر_خ_ج_س".split("_"),
|
||||||
|
months: r,
|
||||||
|
monthsShort: r,
|
||||||
|
weekStart: 6,
|
||||||
|
relativeTime: {
|
||||||
|
future: "بعد %s",
|
||||||
|
past: "منذ %s",
|
||||||
|
s: "ثانية واحدة",
|
||||||
|
m: "دقيقة واحدة",
|
||||||
|
mm: "%d دقائق",
|
||||||
|
h: "ساعة واحدة",
|
||||||
|
hh: "%d ساعات",
|
||||||
|
d: "يوم واحد",
|
||||||
|
dd: "%d أيام",
|
||||||
|
M: "شهر واحد",
|
||||||
|
MM: "%d أشهر",
|
||||||
|
y: "عام واحد",
|
||||||
|
yy: "%d أعوام"
|
||||||
|
},
|
||||||
|
preparse: function (e) {
|
||||||
|
return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (e) {
|
||||||
|
return d[e];
|
||||||
|
}).replace(/،/g, ",");
|
||||||
|
},
|
||||||
|
postformat: function (e) {
|
||||||
|
return e.replace(/\d/g, function (e) {
|
||||||
|
return _[e];
|
||||||
|
}).replace(/,/g, "،");
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "D/M/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return n.default.locale(o, null, !0), o;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ar-js.js.map
|
61
dist/dist/locales/dayjs/ar-kw-js.js
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[9897],{
|
||||||
|
|
||||||
|
/***/ 1781:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "ar-kw",
|
||||||
|
weekdays: "الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),
|
||||||
|
months: "يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),
|
||||||
|
weekdaysShort: "احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),
|
||||||
|
monthsShort: "يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),
|
||||||
|
weekdaysMin: "ح_ن_ث_ر_خ_ج_س".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
meridiem: function (_) {
|
||||||
|
return _ > 12 ? "ص" : "م";
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "في %s",
|
||||||
|
past: "منذ %s",
|
||||||
|
s: "ثوان",
|
||||||
|
m: "دقيقة",
|
||||||
|
mm: "%d دقائق",
|
||||||
|
h: "ساعة",
|
||||||
|
hh: "%d ساعات",
|
||||||
|
d: "يوم",
|
||||||
|
dd: "%d أيام",
|
||||||
|
M: "شهر",
|
||||||
|
MM: "%d أشهر",
|
||||||
|
y: "سنة",
|
||||||
|
yy: "%d سنوات"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ar-kw-js.js.map
|
47
dist/dist/locales/dayjs/ar-ly-js.js
vendored
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[3521],{
|
||||||
|
|
||||||
|
/***/ 7909:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
n = {
|
||||||
|
name: "ar-ly",
|
||||||
|
weekdays: "الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),
|
||||||
|
months: "يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),
|
||||||
|
weekStart: 6,
|
||||||
|
weekdaysShort: "أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),
|
||||||
|
monthsShort: "يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),
|
||||||
|
weekdaysMin: "ح_ن_ث_ر_خ_ج_س".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
meridiem: function (_) {
|
||||||
|
return _ > 12 ? "ص" : "م";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "D/M/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(n, null, !0), n;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ar-ly-js.js.map
|
63
dist/dist/locales/dayjs/ar-ma-js.js
vendored
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5313],{
|
||||||
|
|
||||||
|
/***/ 1917:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, _) {
|
||||||
|
true ? module.exports = _(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function _(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = _(e),
|
||||||
|
d = {
|
||||||
|
name: "ar-ma",
|
||||||
|
weekdays: "الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),
|
||||||
|
months: "يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),
|
||||||
|
weekStart: 6,
|
||||||
|
weekdaysShort: "احد_إثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),
|
||||||
|
monthsShort: "يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),
|
||||||
|
weekdaysMin: "ح_ن_ث_ر_خ_ج_س".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
meridiem: function (e) {
|
||||||
|
return e > 12 ? "ص" : "م";
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "في %s",
|
||||||
|
past: "منذ %s",
|
||||||
|
s: "ثوان",
|
||||||
|
m: "دقيقة",
|
||||||
|
mm: "%d دقائق",
|
||||||
|
h: "ساعة",
|
||||||
|
hh: "%d ساعات",
|
||||||
|
d: "يوم",
|
||||||
|
dd: "%d أيام",
|
||||||
|
M: "شهر",
|
||||||
|
MM: "%d أشهر",
|
||||||
|
y: "سنة",
|
||||||
|
yy: "%d سنوات"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ar-ma-js.js.map
|
61
dist/dist/locales/dayjs/ar-sa-js.js
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[485],{
|
||||||
|
|
||||||
|
/***/ 140:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "ar-sa",
|
||||||
|
weekdays: "الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),
|
||||||
|
months: "يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),
|
||||||
|
weekdaysShort: "أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),
|
||||||
|
monthsShort: "يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),
|
||||||
|
weekdaysMin: "ح_ن_ث_ر_خ_ج_س".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
meridiem: function (_) {
|
||||||
|
return _ > 12 ? "ص" : "م";
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "في %s",
|
||||||
|
past: "منذ %s",
|
||||||
|
s: "ثوان",
|
||||||
|
m: "دقيقة",
|
||||||
|
mm: "%d دقائق",
|
||||||
|
h: "ساعة",
|
||||||
|
hh: "%d ساعات",
|
||||||
|
d: "يوم",
|
||||||
|
dd: "%d أيام",
|
||||||
|
M: "شهر",
|
||||||
|
MM: "%d أشهر",
|
||||||
|
y: "سنة",
|
||||||
|
yy: "%d سنوات"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ar-sa-js.js.map
|
63
dist/dist/locales/dayjs/ar-tn-js.js
vendored
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[8040],{
|
||||||
|
|
||||||
|
/***/ 22:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, _) {
|
||||||
|
true ? module.exports = _(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function _(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = _(e),
|
||||||
|
d = {
|
||||||
|
name: "ar-tn",
|
||||||
|
weekdays: "الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),
|
||||||
|
months: "جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),
|
||||||
|
monthsShort: "جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),
|
||||||
|
weekdaysMin: "ح_ن_ث_ر_خ_ج_س".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
meridiem: function (e) {
|
||||||
|
return e > 12 ? "ص" : "م";
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "في %s",
|
||||||
|
past: "منذ %s",
|
||||||
|
s: "ثوان",
|
||||||
|
m: "دقيقة",
|
||||||
|
mm: "%d دقائق",
|
||||||
|
h: "ساعة",
|
||||||
|
hh: "%d ساعات",
|
||||||
|
d: "يوم",
|
||||||
|
dd: "%d أيام",
|
||||||
|
M: "شهر",
|
||||||
|
MM: "%d أشهر",
|
||||||
|
y: "سنة",
|
||||||
|
yy: "%d سنوات"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ar-tn-js.js.map
|
60
dist/dist/locales/dayjs/az-js.js
vendored
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[4963],{
|
||||||
|
|
||||||
|
/***/ 145:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (a, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (a) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(a) {
|
||||||
|
return a && "object" == typeof a && "default" in a ? a : {
|
||||||
|
default: a
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ = e(a),
|
||||||
|
t = {
|
||||||
|
name: "az",
|
||||||
|
weekdays: "Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə".split("_"),
|
||||||
|
weekdaysShort: "Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən".split("_"),
|
||||||
|
weekdaysMin: "Bz_BE_ÇA_Çə_CA_Cü_Şə".split("_"),
|
||||||
|
months: "yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr".split("_"),
|
||||||
|
monthsShort: "yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D MMMM YYYY г.",
|
||||||
|
LLL: "D MMMM YYYY г., H:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY г., H:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s sonra",
|
||||||
|
past: "%s əvvəl",
|
||||||
|
s: "bir neçə saniyə",
|
||||||
|
m: "bir dəqiqə",
|
||||||
|
mm: "%d dəqiqə",
|
||||||
|
h: "bir saat",
|
||||||
|
hh: "%d saat",
|
||||||
|
d: "bir gün",
|
||||||
|
dd: "%d gün",
|
||||||
|
M: "bir ay",
|
||||||
|
MM: "%d ay",
|
||||||
|
y: "bir il",
|
||||||
|
yy: "%d il"
|
||||||
|
},
|
||||||
|
ordinal: function (a) {
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return _.default.locale(t, null, !0), t;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=az-js.js.map
|
44
dist/dist/locales/dayjs/be-js.js
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[9478],{
|
||||||
|
|
||||||
|
/***/ 9811:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
n = {
|
||||||
|
name: "be",
|
||||||
|
weekdays: "нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу".split("_"),
|
||||||
|
months: "студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "нд_пн_ат_ср_чц_пт_сб".split("_"),
|
||||||
|
monthsShort: "студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж".split("_"),
|
||||||
|
weekdaysMin: "нд_пн_ат_ср_чц_пт_сб".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D MMMM YYYY г.",
|
||||||
|
LLL: "D MMMM YYYY г., HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY г., HH:mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(n, null, !0), n;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=be-js.js.map
|
64
dist/dist/locales/dayjs/bg-js.js
vendored
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[578],{
|
||||||
|
|
||||||
|
/***/ 3604:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, _) {
|
||||||
|
true ? module.exports = _(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function _(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = _(e),
|
||||||
|
d = {
|
||||||
|
name: "bg",
|
||||||
|
weekdays: "неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),
|
||||||
|
weekdaysShort: "нед_пон_вто_сря_чет_пет_съб".split("_"),
|
||||||
|
weekdaysMin: "нд_пн_вт_ср_чт_пт_сб".split("_"),
|
||||||
|
months: "януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),
|
||||||
|
monthsShort: "янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
ordinal: function (e) {
|
||||||
|
var _ = e % 100;
|
||||||
|
|
||||||
|
if (_ > 10 && _ < 20) return e + "-ти";
|
||||||
|
var t = e % 10;
|
||||||
|
return 1 === t ? e + "-ви" : 2 === t ? e + "-ри" : 7 === t || 8 === t ? e + "-ми" : e + "-ти";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "D.MM.YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY H:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY H:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "след %s",
|
||||||
|
past: "преди %s",
|
||||||
|
s: "няколко секунди",
|
||||||
|
m: "минута",
|
||||||
|
mm: "%d минути",
|
||||||
|
h: "час",
|
||||||
|
hh: "%d часа",
|
||||||
|
d: "ден",
|
||||||
|
dd: "%d дена",
|
||||||
|
M: "месец",
|
||||||
|
MM: "%d месеца",
|
||||||
|
y: "година",
|
||||||
|
yy: "%d години"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=bg-js.js.map
|
59
dist/dist/locales/dayjs/bi-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[2984],{
|
||||||
|
|
||||||
|
/***/ 1434:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var n = a(e),
|
||||||
|
_ = {
|
||||||
|
name: "bi",
|
||||||
|
weekdays: "Sande_Mande_Tusde_Wenesde_Tosde_Fraede_Sarade".split("_"),
|
||||||
|
months: "Januari_Februari_Maj_Eprel_Mei_Jun_Julae_Okis_Septemba_Oktoba_Novemba_Disemba".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "San_Man_Tus_Wen_Tos_Frae_Sar".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Maj_Epr_Mai_Jun_Jul_Oki_Sep_Okt_Nov_Dis".split("_"),
|
||||||
|
weekdaysMin: "San_Ma_Tu_We_To_Fr_Sar".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "h:mm A",
|
||||||
|
LTS: "h:mm:ss A",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY h:mm A",
|
||||||
|
LLLL: "dddd, D MMMM YYYY h:mm A"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "lo %s",
|
||||||
|
past: "%s bifo",
|
||||||
|
s: "sam seken",
|
||||||
|
m: "wan minit",
|
||||||
|
mm: "%d minit",
|
||||||
|
h: "wan haoa",
|
||||||
|
hh: "%d haoa",
|
||||||
|
d: "wan dei",
|
||||||
|
dd: "%d dei",
|
||||||
|
M: "wan manis",
|
||||||
|
MM: "%d manis",
|
||||||
|
y: "wan yia",
|
||||||
|
yy: "%d yia"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return n.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=bi-js.js.map
|
59
dist/dist/locales/dayjs/bm-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[2263],{
|
||||||
|
|
||||||
|
/***/ 6694:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (a, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (a) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(a) {
|
||||||
|
return a && "object" == typeof a && "default" in a ? a : {
|
||||||
|
default: a
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var l = e(a),
|
||||||
|
t = {
|
||||||
|
name: "bm",
|
||||||
|
weekdays: "Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri".split("_"),
|
||||||
|
months: "Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib".split("_"),
|
||||||
|
monthsShort: "Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des".split("_"),
|
||||||
|
weekdaysMin: "Ka_Nt_Ta_Ar_Al_Ju_Si".split("_"),
|
||||||
|
ordinal: function (a) {
|
||||||
|
return a;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "MMMM [tile] D [san] YYYY",
|
||||||
|
LLL: "MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm",
|
||||||
|
LLLL: "dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s kɔnɔ",
|
||||||
|
past: "a bɛ %s bɔ",
|
||||||
|
s: "sanga dama dama",
|
||||||
|
m: "miniti kelen",
|
||||||
|
mm: "miniti %d",
|
||||||
|
h: "lɛrɛ kelen",
|
||||||
|
hh: "lɛrɛ %d",
|
||||||
|
d: "tile kelen",
|
||||||
|
dd: "tile %d",
|
||||||
|
M: "kalo kelen",
|
||||||
|
MM: "kalo %d",
|
||||||
|
y: "san kelen",
|
||||||
|
yy: "san %d"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return l.default.locale(t, null, !0), t;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=bm-js.js.map
|
100
dist/dist/locales/dayjs/bn-bd-js.js
vendored
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[1351],{
|
||||||
|
|
||||||
|
/***/ 9026:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, t) {
|
||||||
|
true ? module.exports = t(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function t(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ = t(e),
|
||||||
|
n = {
|
||||||
|
1: "১",
|
||||||
|
2: "২",
|
||||||
|
3: "৩",
|
||||||
|
4: "৪",
|
||||||
|
5: "৫",
|
||||||
|
6: "৬",
|
||||||
|
7: "৭",
|
||||||
|
8: "৮",
|
||||||
|
9: "৯",
|
||||||
|
0: "০"
|
||||||
|
},
|
||||||
|
d = {
|
||||||
|
"১": "1",
|
||||||
|
"২": "2",
|
||||||
|
"৩": "3",
|
||||||
|
"৪": "4",
|
||||||
|
"৫": "5",
|
||||||
|
"৬": "6",
|
||||||
|
"৭": "7",
|
||||||
|
"৮": "8",
|
||||||
|
"৯": "9",
|
||||||
|
"০": "0"
|
||||||
|
},
|
||||||
|
r = {
|
||||||
|
name: "bn-bd",
|
||||||
|
weekdays: "রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার".split("_"),
|
||||||
|
months: "জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর".split("_"),
|
||||||
|
weekdaysShort: "রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি".split("_"),
|
||||||
|
monthsShort: "জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে".split("_"),
|
||||||
|
weekdaysMin: "রবি_সোম_মঙ্গ_বুধ_বৃহঃ_শুক্র_শনি".split("_"),
|
||||||
|
weekStart: 0,
|
||||||
|
preparse: function (e) {
|
||||||
|
return e.replace(/[১২৩৪৫৬৭৮৯০]/g, function (e) {
|
||||||
|
return d[e];
|
||||||
|
});
|
||||||
|
},
|
||||||
|
postformat: function (e) {
|
||||||
|
return e.replace(/\d/g, function (e) {
|
||||||
|
return n[e];
|
||||||
|
});
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
var t = ["ই", "লা", "রা", "ঠা", "শে"],
|
||||||
|
_ = e % 100;
|
||||||
|
|
||||||
|
return "[" + e + (t[(_ - 20) % 10] || t[_] || t[0]) + "]";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "A h:mm সময়",
|
||||||
|
LTS: "A h:mm:ss সময়",
|
||||||
|
L: "DD/MM/YYYY খ্রিস্টাব্দ",
|
||||||
|
LL: "D MMMM YYYY খ্রিস্টাব্দ",
|
||||||
|
LLL: "D MMMM YYYY খ্রিস্টাব্দ, A h:mm সময়",
|
||||||
|
LLLL: "dddd, D MMMM YYYY খ্রিস্টাব্দ, A h:mm সময়"
|
||||||
|
},
|
||||||
|
meridiem: function (e) {
|
||||||
|
return e < 4 ? "রাত" : e < 6 ? "ভোর" : e < 12 ? "সকাল" : e < 15 ? "দুপুর" : e < 18 ? "বিকাল" : e < 20 ? "সন্ধ্যা" : "রাত";
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s পরে",
|
||||||
|
past: "%s আগে",
|
||||||
|
s: "কয়েক সেকেন্ড",
|
||||||
|
m: "এক মিনিট",
|
||||||
|
mm: "%d মিনিট",
|
||||||
|
h: "এক ঘন্টা",
|
||||||
|
hh: "%d ঘন্টা",
|
||||||
|
d: "এক দিন",
|
||||||
|
dd: "%d দিন",
|
||||||
|
M: "এক মাস",
|
||||||
|
MM: "%d মাস",
|
||||||
|
y: "এক বছর",
|
||||||
|
yy: "%d বছর"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return _.default.locale(r, null, !0), r;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=bn-bd-js.js.map
|
93
dist/dist/locales/dayjs/bn-js.js
vendored
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[280],{
|
||||||
|
|
||||||
|
/***/ 6209:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, _) {
|
||||||
|
true ? module.exports = _(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function _(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = _(e),
|
||||||
|
n = {
|
||||||
|
1: "১",
|
||||||
|
2: "২",
|
||||||
|
3: "৩",
|
||||||
|
4: "৪",
|
||||||
|
5: "৫",
|
||||||
|
6: "৬",
|
||||||
|
7: "৭",
|
||||||
|
8: "৮",
|
||||||
|
9: "৯",
|
||||||
|
0: "০"
|
||||||
|
},
|
||||||
|
d = {
|
||||||
|
"১": "1",
|
||||||
|
"২": "2",
|
||||||
|
"৩": "3",
|
||||||
|
"৪": "4",
|
||||||
|
"৫": "5",
|
||||||
|
"৬": "6",
|
||||||
|
"৭": "7",
|
||||||
|
"৮": "8",
|
||||||
|
"৯": "9",
|
||||||
|
"০": "0"
|
||||||
|
},
|
||||||
|
o = {
|
||||||
|
name: "bn",
|
||||||
|
weekdays: "রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার".split("_"),
|
||||||
|
months: "জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর".split("_"),
|
||||||
|
weekdaysShort: "রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি".split("_"),
|
||||||
|
monthsShort: "জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে".split("_"),
|
||||||
|
weekdaysMin: "রবি_সোম_মঙ্গ_বুধ_বৃহঃ_শুক্র_শনি".split("_"),
|
||||||
|
preparse: function (e) {
|
||||||
|
return e.replace(/[১২৩৪৫৬৭৮৯০]/g, function (e) {
|
||||||
|
return d[e];
|
||||||
|
});
|
||||||
|
},
|
||||||
|
postformat: function (e) {
|
||||||
|
return e.replace(/\d/g, function (e) {
|
||||||
|
return n[e];
|
||||||
|
});
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "A h:mm সময়",
|
||||||
|
LTS: "A h:mm:ss সময়",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY, A h:mm সময়",
|
||||||
|
LLLL: "dddd, D MMMM YYYY, A h:mm সময়"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s পরে",
|
||||||
|
past: "%s আগে",
|
||||||
|
s: "কয়েক সেকেন্ড",
|
||||||
|
m: "এক মিনিট",
|
||||||
|
mm: "%d মিনিট",
|
||||||
|
h: "এক ঘন্টা",
|
||||||
|
hh: "%d ঘন্টা",
|
||||||
|
d: "এক দিন",
|
||||||
|
dd: "%d দিন",
|
||||||
|
M: "এক মাস",
|
||||||
|
MM: "%d মাস",
|
||||||
|
y: "এক বছর",
|
||||||
|
yy: "%d বছর"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return t.default.locale(o, null, !0), o;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=bn-js.js.map
|
58
dist/dist/locales/dayjs/bo-js.js
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[9950],{
|
||||||
|
|
||||||
|
/***/ 750:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "bo",
|
||||||
|
weekdays: "གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་".split("_"),
|
||||||
|
weekdaysShort: "ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་".split("_"),
|
||||||
|
weekdaysMin: "ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་".split("_"),
|
||||||
|
months: "ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ".split("_"),
|
||||||
|
monthsShort: "ཟླ་དང་པོ_ཟླ་གཉིས་པ_ཟླ་གསུམ་པ_ཟླ་བཞི་པ_ཟླ་ལྔ་པ_ཟླ་དྲུག་པ_ཟླ་བདུན་པ_ཟླ་བརྒྱད་པ_ཟླ་དགུ་པ_ཟླ་བཅུ་པ_ཟླ་བཅུ་གཅིག་པ_ཟླ་བཅུ་གཉིས་པ".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "A h:mm",
|
||||||
|
LTS: "A h:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY, A h:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY, A h:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s ལ་",
|
||||||
|
past: "%s སྔོན་ལ་",
|
||||||
|
s: "ཏོག་ཙམ་",
|
||||||
|
m: "སྐར་མ་གཅིག་",
|
||||||
|
mm: "སྐར་མ་ %d",
|
||||||
|
h: "ཆུ་ཚོད་གཅིག་",
|
||||||
|
hh: "ཆུ་ཚོད་ %d",
|
||||||
|
d: "ཉིན་གཅིག་",
|
||||||
|
dd: "ཉིན་ %d",
|
||||||
|
M: "ཟླ་བ་གཅིག་",
|
||||||
|
MM: "ཟླ་བ་ %d",
|
||||||
|
y: "ལོ་གཅིག་",
|
||||||
|
yy: "ལོ་ %d"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=bo-js.js.map
|
95
dist/dist/locales/dayjs/br-js.js
vendored
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[760],{
|
||||||
|
|
||||||
|
/***/ 2766:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var u = n(e);
|
||||||
|
|
||||||
|
function r(e) {
|
||||||
|
return e > 9 ? r(e % 10) : e;
|
||||||
|
}
|
||||||
|
|
||||||
|
function t(e, n, u) {
|
||||||
|
return e + " " + function (e, n) {
|
||||||
|
return 2 === n ? function (e) {
|
||||||
|
return {
|
||||||
|
m: "v",
|
||||||
|
b: "v",
|
||||||
|
d: "z"
|
||||||
|
}[e.charAt(0)] + e.substring(1);
|
||||||
|
}(e) : e;
|
||||||
|
}({
|
||||||
|
mm: "munutenn",
|
||||||
|
MM: "miz",
|
||||||
|
dd: "devezh"
|
||||||
|
}[u], e);
|
||||||
|
}
|
||||||
|
|
||||||
|
var o = {
|
||||||
|
name: "br",
|
||||||
|
weekdays: "Sul_Lun_Meurzh_Mercʼher_Yaou_Gwener_Sadorn".split("_"),
|
||||||
|
months: "Genver_Cʼhwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),
|
||||||
|
monthsShort: "Gen_Cʼhwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),
|
||||||
|
weekdaysMin: "Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "h[e]mm A",
|
||||||
|
LTS: "h[e]mm:ss A",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D [a viz] MMMM YYYY",
|
||||||
|
LLL: "D [a viz] MMMM YYYY h[e]mm A",
|
||||||
|
LLLL: "dddd, D [a viz] MMMM YYYY h[e]mm A"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "a-benn %s",
|
||||||
|
past: "%s ʼzo",
|
||||||
|
s: "un nebeud segondennoù",
|
||||||
|
m: "ur vunutenn",
|
||||||
|
mm: t,
|
||||||
|
h: "un eur",
|
||||||
|
hh: "%d eur",
|
||||||
|
d: "un devezh",
|
||||||
|
dd: t,
|
||||||
|
M: "ur miz",
|
||||||
|
MM: t,
|
||||||
|
y: "ur bloaz",
|
||||||
|
yy: function (e) {
|
||||||
|
switch (r(e)) {
|
||||||
|
case 1:
|
||||||
|
case 3:
|
||||||
|
case 4:
|
||||||
|
case 5:
|
||||||
|
case 9:
|
||||||
|
return e + " bloaz";
|
||||||
|
|
||||||
|
default:
|
||||||
|
return e + " vloaz";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
meridiem: function (e) {
|
||||||
|
return e < 12 ? "a.m." : "g.m.";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return u.default.locale(o, null, !0), o;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=br-js.js.map
|
45
dist/dist/locales/dayjs/bs-js.js
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[9833],{
|
||||||
|
|
||||||
|
/***/ 3827:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, t) {
|
||||||
|
true ? module.exports = t(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function t(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ = t(e),
|
||||||
|
a = {
|
||||||
|
name: "bs",
|
||||||
|
weekdays: "nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),
|
||||||
|
months: "januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "ned._pon._uto._sri._čet._pet._sub.".split("_"),
|
||||||
|
monthsShort: "jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),
|
||||||
|
weekdaysMin: "ne_po_ut_sr_če_pe_su".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D. MMMM YYYY",
|
||||||
|
LLL: "D. MMMM YYYY H:mm",
|
||||||
|
LLLL: "dddd, D. MMMM YYYY H:mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return _.default.locale(a, null, !0), a;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=bs-js.js.map
|
62
dist/dist/locales/dayjs/ca-js.js
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[102],{
|
||||||
|
|
||||||
|
/***/ 2914:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, s) {
|
||||||
|
true ? module.exports = s(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function s(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = s(e),
|
||||||
|
_ = {
|
||||||
|
name: "ca",
|
||||||
|
weekdays: "Diumenge_Dilluns_Dimarts_Dimecres_Dijous_Divendres_Dissabte".split("_"),
|
||||||
|
weekdaysShort: "Dg._Dl._Dt._Dc._Dj._Dv._Ds.".split("_"),
|
||||||
|
weekdaysMin: "Dg_Dl_Dt_Dc_Dj_Dv_Ds".split("_"),
|
||||||
|
months: "Gener_Febrer_Març_Abril_Maig_Juny_Juliol_Agost_Setembre_Octubre_Novembre_Desembre".split("_"),
|
||||||
|
monthsShort: "Gen._Febr._Març_Abr._Maig_Juny_Jul._Ag._Set._Oct._Nov._Des.".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM [de] YYYY",
|
||||||
|
LLL: "D MMMM [de] YYYY [a les] H:mm",
|
||||||
|
LLLL: "dddd D MMMM [de] YYYY [a les] H:mm",
|
||||||
|
ll: "D MMM YYYY",
|
||||||
|
lll: "D MMM YYYY, H:mm",
|
||||||
|
llll: "ddd D MMM YYYY, H:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "d'aquí %s",
|
||||||
|
past: "fa %s",
|
||||||
|
s: "uns segons",
|
||||||
|
m: "un minut",
|
||||||
|
mm: "%d minuts",
|
||||||
|
h: "una hora",
|
||||||
|
hh: "%d hores",
|
||||||
|
d: "un dia",
|
||||||
|
dd: "%d dies",
|
||||||
|
M: "un mes",
|
||||||
|
MM: "%d mesos",
|
||||||
|
y: "un any",
|
||||||
|
yy: "%d anys"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return "" + e + (1 === e || 3 === e ? "r" : 2 === e ? "n" : 4 === e ? "t" : "è");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ca-js.js.map
|
105
dist/dist/locales/dayjs/cs-js.js
vendored
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[7400],{
|
||||||
|
|
||||||
|
/***/ 9280:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = n(e);
|
||||||
|
|
||||||
|
function s(e) {
|
||||||
|
return e > 1 && e < 5 && 1 != ~~(e / 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
function r(e, n, t, r) {
|
||||||
|
var d = e + " ";
|
||||||
|
|
||||||
|
switch (t) {
|
||||||
|
case "s":
|
||||||
|
return n || r ? "pár sekund" : "pár sekundami";
|
||||||
|
|
||||||
|
case "m":
|
||||||
|
return n ? "minuta" : r ? "minutu" : "minutou";
|
||||||
|
|
||||||
|
case "mm":
|
||||||
|
return n || r ? d + (s(e) ? "minuty" : "minut") : d + "minutami";
|
||||||
|
|
||||||
|
case "h":
|
||||||
|
return n ? "hodina" : r ? "hodinu" : "hodinou";
|
||||||
|
|
||||||
|
case "hh":
|
||||||
|
return n || r ? d + (s(e) ? "hodiny" : "hodin") : d + "hodinami";
|
||||||
|
|
||||||
|
case "d":
|
||||||
|
return n || r ? "den" : "dnem";
|
||||||
|
|
||||||
|
case "dd":
|
||||||
|
return n || r ? d + (s(e) ? "dny" : "dní") : d + "dny";
|
||||||
|
|
||||||
|
case "M":
|
||||||
|
return n || r ? "měsíc" : "měsícem";
|
||||||
|
|
||||||
|
case "MM":
|
||||||
|
return n || r ? d + (s(e) ? "měsíce" : "měsíců") : d + "měsíci";
|
||||||
|
|
||||||
|
case "y":
|
||||||
|
return n || r ? "rok" : "rokem";
|
||||||
|
|
||||||
|
case "yy":
|
||||||
|
return n || r ? d + (s(e) ? "roky" : "let") : d + "lety";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var d = {
|
||||||
|
name: "cs",
|
||||||
|
weekdays: "neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),
|
||||||
|
weekdaysShort: "ne_po_út_st_čt_pá_so".split("_"),
|
||||||
|
weekdaysMin: "ne_po_út_st_čt_pá_so".split("_"),
|
||||||
|
months: "leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),
|
||||||
|
monthsShort: "led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
yearStart: 4,
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + ".";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D. MMMM YYYY",
|
||||||
|
LLL: "D. MMMM YYYY H:mm",
|
||||||
|
LLLL: "dddd D. MMMM YYYY H:mm",
|
||||||
|
l: "D. M. YYYY"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "za %s",
|
||||||
|
past: "před %s",
|
||||||
|
s: r,
|
||||||
|
m: r,
|
||||||
|
mm: r,
|
||||||
|
h: r,
|
||||||
|
hh: r,
|
||||||
|
d: r,
|
||||||
|
dd: r,
|
||||||
|
M: r,
|
||||||
|
MM: r,
|
||||||
|
y: r,
|
||||||
|
yy: r
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=cs-js.js.map
|
44
dist/dist/locales/dayjs/cv-js.js
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[4481],{
|
||||||
|
|
||||||
|
/***/ 1093:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
n = {
|
||||||
|
name: "cv",
|
||||||
|
weekdays: "вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун".split("_"),
|
||||||
|
months: "кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "выр_тун_ытл_юн_кӗҫ_эрн_шӑм".split("_"),
|
||||||
|
monthsShort: "кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш".split("_"),
|
||||||
|
weekdaysMin: "вр_тн_ыт_юн_кҫ_эр_шм".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD-MM-YYYY",
|
||||||
|
LL: "YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]",
|
||||||
|
LLL: "YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm",
|
||||||
|
LLLL: "dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(n, null, !0), n;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=cv-js.js.map
|
60
dist/dist/locales/dayjs/cy-js.js
vendored
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[6740],{
|
||||||
|
|
||||||
|
/***/ 8132:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (d, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (d) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(d) {
|
||||||
|
return d && "object" == typeof d && "default" in d ? d : {
|
||||||
|
default: d
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ = e(d),
|
||||||
|
a = {
|
||||||
|
name: "cy",
|
||||||
|
weekdays: "Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn".split("_"),
|
||||||
|
months: "Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Sul_Llun_Maw_Mer_Iau_Gwe_Sad".split("_"),
|
||||||
|
monthsShort: "Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag".split("_"),
|
||||||
|
weekdaysMin: "Su_Ll_Ma_Me_Ia_Gw_Sa".split("_"),
|
||||||
|
ordinal: function (d) {
|
||||||
|
return d;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "mewn %s",
|
||||||
|
past: "%s yn ôl",
|
||||||
|
s: "ychydig eiliadau",
|
||||||
|
m: "munud",
|
||||||
|
mm: "%d munud",
|
||||||
|
h: "awr",
|
||||||
|
hh: "%d awr",
|
||||||
|
d: "diwrnod",
|
||||||
|
dd: "%d diwrnod",
|
||||||
|
M: "mis",
|
||||||
|
MM: "%d mis",
|
||||||
|
y: "blwyddyn",
|
||||||
|
yy: "%d flynedd"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return _.default.locale(a, null, !0), a;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=cy-js.js.map
|
59
dist/dist/locales/dayjs/da-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[2548],{
|
||||||
|
|
||||||
|
/***/ 2817:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, t) {
|
||||||
|
true ? module.exports = t(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function t(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var d = t(e),
|
||||||
|
n = {
|
||||||
|
name: "da",
|
||||||
|
weekdays: "søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),
|
||||||
|
weekdaysShort: "søn._man._tirs._ons._tors._fre._lør.".split("_"),
|
||||||
|
weekdaysMin: "sø._ma._ti._on._to._fr._lø.".split("_"),
|
||||||
|
months: "januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),
|
||||||
|
monthsShort: "jan._feb._mar._apr._maj_juni_juli_aug._sept._okt._nov._dec.".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + ".";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D. MMMM YYYY",
|
||||||
|
LLL: "D. MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd [d.] D. MMMM YYYY [kl.] HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "om %s",
|
||||||
|
past: "%s siden",
|
||||||
|
s: "få sekunder",
|
||||||
|
m: "et minut",
|
||||||
|
mm: "%d minutter",
|
||||||
|
h: "en time",
|
||||||
|
hh: "%d timer",
|
||||||
|
d: "en dag",
|
||||||
|
dd: "%d dage",
|
||||||
|
M: "en måned",
|
||||||
|
MM: "%d måneder",
|
||||||
|
y: "et år",
|
||||||
|
yy: "%d år"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return d.default.locale(n, null, !0), n;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=da-js.js.map
|
78
dist/dist/locales/dayjs/de-at-js.js
vendored
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[7175],{
|
||||||
|
|
||||||
|
/***/ 7197:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = n(e),
|
||||||
|
i = {
|
||||||
|
s: "ein paar Sekunden",
|
||||||
|
m: ["eine Minute", "einer Minute"],
|
||||||
|
mm: "%d Minuten",
|
||||||
|
h: ["eine Stunde", "einer Stunde"],
|
||||||
|
hh: "%d Stunden",
|
||||||
|
d: ["ein Tag", "einem Tag"],
|
||||||
|
dd: ["%d Tage", "%d Tagen"],
|
||||||
|
M: ["ein Monat", "einem Monat"],
|
||||||
|
MM: ["%d Monate", "%d Monaten"],
|
||||||
|
y: ["ein Jahr", "einem Jahr"],
|
||||||
|
yy: ["%d Jahre", "%d Jahren"]
|
||||||
|
};
|
||||||
|
|
||||||
|
function a(e, n, t) {
|
||||||
|
var a = i[t];
|
||||||
|
return Array.isArray(a) && (a = a[n ? 0 : 1]), a.replace("%d", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
var r = {
|
||||||
|
name: "de-at",
|
||||||
|
weekdays: "Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),
|
||||||
|
weekdaysShort: "So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),
|
||||||
|
weekdaysMin: "So_Mo_Di_Mi_Do_Fr_Sa".split("_"),
|
||||||
|
months: "Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),
|
||||||
|
monthsShort: "Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + ".";
|
||||||
|
},
|
||||||
|
weekStart: 1,
|
||||||
|
formats: {
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
LT: "HH:mm",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D. MMMM YYYY",
|
||||||
|
LLL: "D. MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D. MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "vor %s",
|
||||||
|
s: a,
|
||||||
|
m: a,
|
||||||
|
mm: a,
|
||||||
|
h: a,
|
||||||
|
hh: a,
|
||||||
|
d: a,
|
||||||
|
dd: a,
|
||||||
|
M: a,
|
||||||
|
MM: a,
|
||||||
|
y: a,
|
||||||
|
yy: a
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(r, null, !0), r;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=de-at-js.js.map
|
78
dist/dist/locales/dayjs/de-ch-js.js
vendored
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[1679],{
|
||||||
|
|
||||||
|
/***/ 5151:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = n(e),
|
||||||
|
a = {
|
||||||
|
s: "ein paar Sekunden",
|
||||||
|
m: ["eine Minute", "einer Minute"],
|
||||||
|
mm: "%d Minuten",
|
||||||
|
h: ["eine Stunde", "einer Stunde"],
|
||||||
|
hh: "%d Stunden",
|
||||||
|
d: ["ein Tag", "einem Tag"],
|
||||||
|
dd: ["%d Tage", "%d Tagen"],
|
||||||
|
M: ["ein Monat", "einem Monat"],
|
||||||
|
MM: ["%d Monate", "%d Monaten"],
|
||||||
|
y: ["ein Jahr", "einem Jahr"],
|
||||||
|
yy: ["%d Jahre", "%d Jahren"]
|
||||||
|
};
|
||||||
|
|
||||||
|
function i(e, n, t) {
|
||||||
|
var i = a[t];
|
||||||
|
return Array.isArray(i) && (i = i[n ? 0 : 1]), i.replace("%d", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
var r = {
|
||||||
|
name: "de-ch",
|
||||||
|
weekdays: "Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),
|
||||||
|
weekdaysShort: "So_Mo_Di_Mi_Do_Fr_Sa".split("_"),
|
||||||
|
weekdaysMin: "So_Mo_Di_Mi_Do_Fr_Sa".split("_"),
|
||||||
|
months: "Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),
|
||||||
|
monthsShort: "Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + ".";
|
||||||
|
},
|
||||||
|
weekStart: 1,
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D. MMMM YYYY",
|
||||||
|
LLL: "D. MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D. MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "vor %s",
|
||||||
|
s: i,
|
||||||
|
m: i,
|
||||||
|
mm: i,
|
||||||
|
h: i,
|
||||||
|
hh: i,
|
||||||
|
d: i,
|
||||||
|
dd: i,
|
||||||
|
M: i,
|
||||||
|
MM: i,
|
||||||
|
y: i,
|
||||||
|
yy: i
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(r, null, !0), r;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=de-ch-js.js.map
|
79
dist/dist/locales/dayjs/de-js.js
vendored
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[52],{
|
||||||
|
|
||||||
|
/***/ 7360:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = n(e),
|
||||||
|
a = {
|
||||||
|
s: "ein paar Sekunden",
|
||||||
|
m: ["eine Minute", "einer Minute"],
|
||||||
|
mm: "%d Minuten",
|
||||||
|
h: ["eine Stunde", "einer Stunde"],
|
||||||
|
hh: "%d Stunden",
|
||||||
|
d: ["ein Tag", "einem Tag"],
|
||||||
|
dd: ["%d Tage", "%d Tagen"],
|
||||||
|
M: ["ein Monat", "einem Monat"],
|
||||||
|
MM: ["%d Monate", "%d Monaten"],
|
||||||
|
y: ["ein Jahr", "einem Jahr"],
|
||||||
|
yy: ["%d Jahre", "%d Jahren"]
|
||||||
|
};
|
||||||
|
|
||||||
|
function i(e, n, t) {
|
||||||
|
var i = a[t];
|
||||||
|
return Array.isArray(i) && (i = i[n ? 0 : 1]), i.replace("%d", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
var r = {
|
||||||
|
name: "de",
|
||||||
|
weekdays: "Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),
|
||||||
|
weekdaysShort: "So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),
|
||||||
|
weekdaysMin: "So_Mo_Di_Mi_Do_Fr_Sa".split("_"),
|
||||||
|
months: "Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),
|
||||||
|
monthsShort: "Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sept._Okt._Nov._Dez.".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + ".";
|
||||||
|
},
|
||||||
|
weekStart: 1,
|
||||||
|
yearStart: 4,
|
||||||
|
formats: {
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
LT: "HH:mm",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D. MMMM YYYY",
|
||||||
|
LLL: "D. MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D. MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "vor %s",
|
||||||
|
s: i,
|
||||||
|
m: i,
|
||||||
|
mm: i,
|
||||||
|
h: i,
|
||||||
|
hh: i,
|
||||||
|
d: i,
|
||||||
|
dd: i,
|
||||||
|
M: i,
|
||||||
|
MM: i,
|
||||||
|
y: i,
|
||||||
|
yy: i
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(r, null, !0), r;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=de-js.js.map
|
59
dist/dist/locales/dayjs/dv-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5569],{
|
||||||
|
|
||||||
|
/***/ 6164:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "dv",
|
||||||
|
weekdays: "އާދިއްތަ_ހޯމަ_އަންގާރަ_ބުދަ_ބުރާސްފަތި_ހުކުރު_ހޮނިހިރު".split("_"),
|
||||||
|
months: "ޖެނުއަރީ_ފެބްރުއަރީ_މާރިޗު_އޭޕްރީލު_މޭ_ޖޫން_ޖުލައި_އޯގަސްޓު_ސެޕްޓެމްބަރު_އޮކްޓޯބަރު_ނޮވެމްބަރު_ޑިސެމްބަރު".split("_"),
|
||||||
|
weekStart: 7,
|
||||||
|
weekdaysShort: "އާދިއްތަ_ހޯމަ_އަންގާރަ_ބުދަ_ބުރާސްފަތި_ހުކުރު_ހޮނިހިރު".split("_"),
|
||||||
|
monthsShort: "ޖެނުއަރީ_ފެބްރުއަރީ_މާރިޗު_އޭޕްރީލު_މޭ_ޖޫން_ޖުލައި_އޯގަސްޓު_ސެޕްޓެމްބަރު_އޮކްޓޯބަރު_ނޮވެމްބަރު_ޑިސެމްބަރު".split("_"),
|
||||||
|
weekdaysMin: "އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "D/M/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "ތެރޭގައި %s",
|
||||||
|
past: "ކުރިން %s",
|
||||||
|
s: "ސިކުންތުކޮޅެއް",
|
||||||
|
m: "މިނިޓެއް",
|
||||||
|
mm: "މިނިޓު %d",
|
||||||
|
h: "ގަޑިއިރެއް",
|
||||||
|
hh: "ގަޑިއިރު %d",
|
||||||
|
d: "ދުވަހެއް",
|
||||||
|
dd: "ދުވަސް %d",
|
||||||
|
M: "މަހެއް",
|
||||||
|
MM: "މަސް %d",
|
||||||
|
y: "އަހަރެއް",
|
||||||
|
yy: "އަހަރު %d"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=dv-js.js.map
|
60
dist/dist/locales/dayjs/el-js.js
vendored
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[1606],{
|
||||||
|
|
||||||
|
/***/ 8916:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, _) {
|
||||||
|
true ? module.exports = _(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function _(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = _(e),
|
||||||
|
d = {
|
||||||
|
name: "el",
|
||||||
|
weekdays: "Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),
|
||||||
|
weekdaysShort: "Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),
|
||||||
|
weekdaysMin: "Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),
|
||||||
|
months: "Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),
|
||||||
|
monthsShort: "Ιαν_Φεβ_Μαρ_Απρ_Μαι_Ιουν_Ιουλ_Αυγ_Σεπτ_Οκτ_Νοε_Δεκ".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
weekStart: 1,
|
||||||
|
relativeTime: {
|
||||||
|
future: "σε %s",
|
||||||
|
past: "πριν %s",
|
||||||
|
s: "μερικά δευτερόλεπτα",
|
||||||
|
m: "ένα λεπτό",
|
||||||
|
mm: "%d λεπτά",
|
||||||
|
h: "μία ώρα",
|
||||||
|
hh: "%d ώρες",
|
||||||
|
d: "μία μέρα",
|
||||||
|
dd: "%d μέρες",
|
||||||
|
M: "ένα μήνα",
|
||||||
|
MM: "%d μήνες",
|
||||||
|
y: "ένα χρόνο",
|
||||||
|
yy: "%d χρόνια"
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "h:mm A",
|
||||||
|
LTS: "h:mm:ss A",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY h:mm A",
|
||||||
|
LLLL: "dddd, D MMMM YYYY h:mm A"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=el-js.js.map
|
59
dist/dist/locales/dayjs/en-au-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5485],{
|
||||||
|
|
||||||
|
/***/ 8989:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = a(e),
|
||||||
|
_ = {
|
||||||
|
name: "en-au",
|
||||||
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
||||||
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
|
||||||
|
weekdaysMin: "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "h:mm A",
|
||||||
|
LTS: "h:mm:ss A",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY h:mm A",
|
||||||
|
LLLL: "dddd, D MMMM YYYY h:mm A"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "%s ago",
|
||||||
|
s: "a few seconds",
|
||||||
|
m: "a minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "an hour",
|
||||||
|
hh: "%d hours",
|
||||||
|
d: "a day",
|
||||||
|
dd: "%d days",
|
||||||
|
M: "a month",
|
||||||
|
MM: "%d months",
|
||||||
|
y: "a year",
|
||||||
|
yy: "%d years"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=en-au-js.js.map
|
59
dist/dist/locales/dayjs/en-ca-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[4035],{
|
||||||
|
|
||||||
|
/***/ 9451:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ = a(e),
|
||||||
|
t = {
|
||||||
|
name: "en-ca",
|
||||||
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
||||||
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
||||||
|
weekdaysShort: "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
|
||||||
|
weekdaysMin: "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "h:mm A",
|
||||||
|
LTS: "h:mm:ss A",
|
||||||
|
L: "YYYY-MM-DD",
|
||||||
|
LL: "MMMM D, YYYY",
|
||||||
|
LLL: "MMMM D, YYYY h:mm A",
|
||||||
|
LLLL: "dddd, MMMM D, YYYY h:mm A"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "%s ago",
|
||||||
|
s: "a few seconds",
|
||||||
|
m: "a minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "an hour",
|
||||||
|
hh: "%d hours",
|
||||||
|
d: "a day",
|
||||||
|
dd: "%d days",
|
||||||
|
M: "a month",
|
||||||
|
MM: "%d months",
|
||||||
|
y: "a year",
|
||||||
|
yy: "%d years"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return _.default.locale(t, null, !0), t;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=en-ca-js.js.map
|
62
dist/dist/locales/dayjs/en-gb-js.js
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[6031],{
|
||||||
|
|
||||||
|
/***/ 8876:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = a(e),
|
||||||
|
_ = {
|
||||||
|
name: "en-gb",
|
||||||
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
||||||
|
weekdaysShort: "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
|
||||||
|
weekdaysMin: "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
|
||||||
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
yearStart: 4,
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "%s ago",
|
||||||
|
s: "a few seconds",
|
||||||
|
m: "a minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "an hour",
|
||||||
|
hh: "%d hours",
|
||||||
|
d: "a day",
|
||||||
|
dd: "%d days",
|
||||||
|
M: "a month",
|
||||||
|
MM: "%d months",
|
||||||
|
y: "a year",
|
||||||
|
yy: "%d years"
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
var a = ["th", "st", "nd", "rd"],
|
||||||
|
t = e % 100;
|
||||||
|
return "[" + e + (a[(t - 20) % 10] || a[t] || a[0]) + "]";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=en-gb-js.js.map
|
59
dist/dist/locales/dayjs/en-ie-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[8129],{
|
||||||
|
|
||||||
|
/***/ 1690:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = a(e),
|
||||||
|
_ = {
|
||||||
|
name: "en-ie",
|
||||||
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
||||||
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
|
||||||
|
weekdaysMin: "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "%s ago",
|
||||||
|
s: "a few seconds",
|
||||||
|
m: "a minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "an hour",
|
||||||
|
hh: "%d hours",
|
||||||
|
d: "a day",
|
||||||
|
dd: "%d days",
|
||||||
|
M: "a month",
|
||||||
|
MM: "%d months",
|
||||||
|
y: "a year",
|
||||||
|
yy: "%d years"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=en-ie-js.js.map
|
59
dist/dist/locales/dayjs/en-il-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[3463],{
|
||||||
|
|
||||||
|
/***/ 5022:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ = a(e),
|
||||||
|
t = {
|
||||||
|
name: "en-il",
|
||||||
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
||||||
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
||||||
|
weekdaysShort: "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
|
||||||
|
weekdaysMin: "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "%s ago",
|
||||||
|
s: "a few seconds",
|
||||||
|
m: "a minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "an hour",
|
||||||
|
hh: "%d hours",
|
||||||
|
d: "a day",
|
||||||
|
dd: "%d days",
|
||||||
|
M: "a month",
|
||||||
|
MM: "%d months",
|
||||||
|
y: "a year",
|
||||||
|
yy: "%d years"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return _.default.locale(t, null, !0), t;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=en-il-js.js.map
|
62
dist/dist/locales/dayjs/en-in-js.js
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[6898],{
|
||||||
|
|
||||||
|
/***/ 5917:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = a(e),
|
||||||
|
n = {
|
||||||
|
name: "en-in",
|
||||||
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
||||||
|
weekdaysShort: "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
|
||||||
|
weekdaysMin: "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
|
||||||
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
yearStart: 4,
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "%s ago",
|
||||||
|
s: "a few seconds",
|
||||||
|
m: "a minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "an hour",
|
||||||
|
hh: "%d hours",
|
||||||
|
d: "a day",
|
||||||
|
dd: "%d days",
|
||||||
|
M: "a month",
|
||||||
|
MM: "%d months",
|
||||||
|
y: "a year",
|
||||||
|
yy: "%d years"
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
var a = ["th", "st", "nd", "rd"],
|
||||||
|
t = e % 100;
|
||||||
|
return "[" + e + (a[(t - 20) % 10] || a[t] || a[0]) + "]";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(n, null, !0), n;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=en-in-js.js.map
|
21
dist/dist/locales/dayjs/en-js.js
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[535],{
|
||||||
|
|
||||||
|
/***/ 7774:
|
||||||
|
/***/ (function(module) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n() : 0;
|
||||||
|
}(this, function () {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
return {
|
||||||
|
name: "en",
|
||||||
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
||||||
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_")
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=en-js.js.map
|
61
dist/dist/locales/dayjs/en-nz-js.js
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[8547],{
|
||||||
|
|
||||||
|
/***/ 2156:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = a(e),
|
||||||
|
n = {
|
||||||
|
name: "en-nz",
|
||||||
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
||||||
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
|
||||||
|
weekdaysMin: "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
var a = ["th", "st", "nd", "rd"],
|
||||||
|
t = e % 100;
|
||||||
|
return "[" + e + (a[(t - 20) % 10] || a[t] || a[0]) + "]";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "h:mm A",
|
||||||
|
LTS: "h:mm:ss A",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY h:mm A",
|
||||||
|
LLLL: "dddd, D MMMM YYYY h:mm A"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "%s ago",
|
||||||
|
s: "a few seconds",
|
||||||
|
m: "a minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "an hour",
|
||||||
|
hh: "%d hours",
|
||||||
|
d: "a day",
|
||||||
|
dd: "%d days",
|
||||||
|
M: "a month",
|
||||||
|
MM: "%d months",
|
||||||
|
y: "a year",
|
||||||
|
yy: "%d years"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(n, null, !0), n;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=en-nz-js.js.map
|
59
dist/dist/locales/dayjs/en-sg-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[1735],{
|
||||||
|
|
||||||
|
/***/ 9405:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = a(e),
|
||||||
|
_ = {
|
||||||
|
name: "en-sg",
|
||||||
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
||||||
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
|
||||||
|
weekdaysMin: "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "%s ago",
|
||||||
|
s: "a few seconds",
|
||||||
|
m: "a minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "an hour",
|
||||||
|
hh: "%d hours",
|
||||||
|
d: "a day",
|
||||||
|
dd: "%d days",
|
||||||
|
M: "a month",
|
||||||
|
MM: "%d months",
|
||||||
|
y: "a year",
|
||||||
|
yy: "%d years"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=en-sg-js.js.map
|
62
dist/dist/locales/dayjs/en-tt-js.js
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[6105],{
|
||||||
|
|
||||||
|
/***/ 1811:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, t) {
|
||||||
|
true ? module.exports = t(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function t(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var a = t(e),
|
||||||
|
_ = {
|
||||||
|
name: "en-tt",
|
||||||
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
||||||
|
weekdaysShort: "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
|
||||||
|
weekdaysMin: "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
|
||||||
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
yearStart: 4,
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "%s ago",
|
||||||
|
s: "a few seconds",
|
||||||
|
m: "a minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "an hour",
|
||||||
|
hh: "%d hours",
|
||||||
|
d: "a day",
|
||||||
|
dd: "%d days",
|
||||||
|
M: "a month",
|
||||||
|
MM: "%d months",
|
||||||
|
y: "a year",
|
||||||
|
yy: "%d years"
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
var t = ["th", "st", "nd", "rd"],
|
||||||
|
a = e % 100;
|
||||||
|
return "[" + e + (t[(a - 20) % 10] || t[a] || t[0]) + "]";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return a.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=en-tt-js.js.map
|
59
dist/dist/locales/dayjs/eo-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5121],{
|
||||||
|
|
||||||
|
/***/ 9541:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, o) {
|
||||||
|
true ? module.exports = o(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function o(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var a = o(e),
|
||||||
|
t = {
|
||||||
|
name: "eo",
|
||||||
|
weekdays: "dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato".split("_"),
|
||||||
|
months: "januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "dim_lun_mard_merk_ĵaŭ_ven_sab".split("_"),
|
||||||
|
monthsShort: "jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec".split("_"),
|
||||||
|
weekdaysMin: "di_lu_ma_me_ĵa_ve_sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "YYYY-MM-DD",
|
||||||
|
LL: "D[-a de] MMMM, YYYY",
|
||||||
|
LLL: "D[-a de] MMMM, YYYY HH:mm",
|
||||||
|
LLLL: "dddd, [la] D[-a de] MMMM, YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "post %s",
|
||||||
|
past: "antaŭ %s",
|
||||||
|
s: "sekundoj",
|
||||||
|
m: "minuto",
|
||||||
|
mm: "%d minutoj",
|
||||||
|
h: "horo",
|
||||||
|
hh: "%d horoj",
|
||||||
|
d: "tago",
|
||||||
|
dd: "%d tagoj",
|
||||||
|
M: "monato",
|
||||||
|
MM: "%d monatoj",
|
||||||
|
y: "jaro",
|
||||||
|
yy: "%d jaroj"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return a.default.locale(t, null, !0), t;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=eo-js.js.map
|
59
dist/dist/locales/dayjs/es-do-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[8758],{
|
||||||
|
|
||||||
|
/***/ 1156:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, o) {
|
||||||
|
true ? module.exports = o(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function o(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var s = o(e),
|
||||||
|
d = {
|
||||||
|
name: "es-do",
|
||||||
|
weekdays: "domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),
|
||||||
|
weekdaysShort: "dom._lun._mar._mié._jue._vie._sáb.".split("_"),
|
||||||
|
weekdaysMin: "do_lu_ma_mi_ju_vi_sá".split("_"),
|
||||||
|
months: "enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),
|
||||||
|
monthsShort: "ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
relativeTime: {
|
||||||
|
future: "en %s",
|
||||||
|
past: "hace %s",
|
||||||
|
s: "unos segundos",
|
||||||
|
m: "un minuto",
|
||||||
|
mm: "%d minutos",
|
||||||
|
h: "una hora",
|
||||||
|
hh: "%d horas",
|
||||||
|
d: "un día",
|
||||||
|
dd: "%d días",
|
||||||
|
M: "un mes",
|
||||||
|
MM: "%d meses",
|
||||||
|
y: "un año",
|
||||||
|
yy: "%d años"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + "º";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "h:mm A",
|
||||||
|
LTS: "h:mm:ss A",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D [de] MMMM [de] YYYY",
|
||||||
|
LLL: "D [de] MMMM [de] YYYY h:mm A",
|
||||||
|
LLLL: "dddd, D [de] MMMM [de] YYYY h:mm A"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return s.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=es-do-js.js.map
|
59
dist/dist/locales/dayjs/es-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[3411],{
|
||||||
|
|
||||||
|
/***/ 9130:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, o) {
|
||||||
|
true ? module.exports = o(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function o(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var s = o(e),
|
||||||
|
d = {
|
||||||
|
name: "es",
|
||||||
|
monthsShort: "ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),
|
||||||
|
weekdays: "domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),
|
||||||
|
weekdaysShort: "dom._lun._mar._mié._jue._vie._sáb.".split("_"),
|
||||||
|
weekdaysMin: "do_lu_ma_mi_ju_vi_sá".split("_"),
|
||||||
|
months: "enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D [de] MMMM [de] YYYY",
|
||||||
|
LLL: "D [de] MMMM [de] YYYY H:mm",
|
||||||
|
LLLL: "dddd, D [de] MMMM [de] YYYY H:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "en %s",
|
||||||
|
past: "hace %s",
|
||||||
|
s: "unos segundos",
|
||||||
|
m: "un minuto",
|
||||||
|
mm: "%d minutos",
|
||||||
|
h: "una hora",
|
||||||
|
hh: "%d horas",
|
||||||
|
d: "un día",
|
||||||
|
dd: "%d días",
|
||||||
|
M: "un mes",
|
||||||
|
MM: "%d meses",
|
||||||
|
y: "un año",
|
||||||
|
yy: "%d años"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + "º";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return s.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=es-js.js.map
|
58
dist/dist/locales/dayjs/es-mx-js.js
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[7416],{
|
||||||
|
|
||||||
|
/***/ 6234:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, o) {
|
||||||
|
true ? module.exports = o(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function o(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var s = o(e),
|
||||||
|
d = {
|
||||||
|
name: "es-mx",
|
||||||
|
weekdays: "domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),
|
||||||
|
weekdaysShort: "dom._lun._mar._mié._jue._vie._sáb.".split("_"),
|
||||||
|
weekdaysMin: "do_lu_ma_mi_ju_vi_sá".split("_"),
|
||||||
|
months: "enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),
|
||||||
|
monthsShort: "ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),
|
||||||
|
relativeTime: {
|
||||||
|
future: "en %s",
|
||||||
|
past: "hace %s",
|
||||||
|
s: "unos segundos",
|
||||||
|
m: "un minuto",
|
||||||
|
mm: "%d minutos",
|
||||||
|
h: "una hora",
|
||||||
|
hh: "%d horas",
|
||||||
|
d: "un día",
|
||||||
|
dd: "%d días",
|
||||||
|
M: "un mes",
|
||||||
|
MM: "%d meses",
|
||||||
|
y: "un año",
|
||||||
|
yy: "%d años"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + "º";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D [de] MMMM [de] YYYY",
|
||||||
|
LLL: "D [de] MMMM [de] YYYY H:mm",
|
||||||
|
LLLL: "dddd, D [de] MMMM [de] YYYY H:mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return s.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=es-mx-js.js.map
|
59
dist/dist/locales/dayjs/es-pr-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[911],{
|
||||||
|
|
||||||
|
/***/ 7483:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, o) {
|
||||||
|
true ? module.exports = o(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function o(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var s = o(e),
|
||||||
|
d = {
|
||||||
|
name: "es-pr",
|
||||||
|
monthsShort: "ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),
|
||||||
|
weekdays: "domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),
|
||||||
|
weekdaysShort: "dom._lun._mar._mié._jue._vie._sáb.".split("_"),
|
||||||
|
weekdaysMin: "do_lu_ma_mi_ju_vi_sá".split("_"),
|
||||||
|
months: "enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
formats: {
|
||||||
|
LT: "h:mm A",
|
||||||
|
LTS: "h:mm:ss A",
|
||||||
|
L: "MM/DD/YYYY",
|
||||||
|
LL: "D [de] MMMM [de] YYYY",
|
||||||
|
LLL: "D [de] MMMM [de] YYYY h:mm A",
|
||||||
|
LLLL: "dddd, D [de] MMMM [de] YYYY h:mm A"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "en %s",
|
||||||
|
past: "hace %s",
|
||||||
|
s: "unos segundos",
|
||||||
|
m: "un minuto",
|
||||||
|
mm: "%d minutos",
|
||||||
|
h: "una hora",
|
||||||
|
hh: "%d horas",
|
||||||
|
d: "un día",
|
||||||
|
dd: "%d días",
|
||||||
|
M: "un mes",
|
||||||
|
MM: "%d meses",
|
||||||
|
y: "un año",
|
||||||
|
yy: "%d años"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + "º";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return s.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=es-pr-js.js.map
|
58
dist/dist/locales/dayjs/es-us-js.js
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[3208],{
|
||||||
|
|
||||||
|
/***/ 4664:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, s) {
|
||||||
|
true ? module.exports = s(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function s(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var o = s(e),
|
||||||
|
d = {
|
||||||
|
name: "es-us",
|
||||||
|
weekdays: "domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),
|
||||||
|
weekdaysShort: "dom._lun._mar._mié._jue._vie._sáb.".split("_"),
|
||||||
|
weekdaysMin: "do_lu_ma_mi_ju_vi_sá".split("_"),
|
||||||
|
months: "enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),
|
||||||
|
monthsShort: "ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),
|
||||||
|
relativeTime: {
|
||||||
|
future: "en %s",
|
||||||
|
past: "hace %s",
|
||||||
|
s: "unos segundos",
|
||||||
|
m: "un minuto",
|
||||||
|
mm: "%d minutos",
|
||||||
|
h: "una hora",
|
||||||
|
hh: "%d horas",
|
||||||
|
d: "un día",
|
||||||
|
dd: "%d días",
|
||||||
|
M: "un mes",
|
||||||
|
MM: "%d meses",
|
||||||
|
y: "un año",
|
||||||
|
yy: "%d años"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + "º";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "h:mm A",
|
||||||
|
LTS: "h:mm:ss A",
|
||||||
|
L: "MM/DD/YYYY",
|
||||||
|
LL: "D [de] MMMM [de] YYYY",
|
||||||
|
LLL: "D [de] MMMM [de] YYYY h:mm A",
|
||||||
|
LLLL: "dddd, D [de] MMMM [de] YYYY h:mm A"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return o.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=es-us-js.js.map
|
76
dist/dist/locales/dayjs/et-js.js
vendored
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[4153],{
|
||||||
|
|
||||||
|
/***/ 4533:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = a(e);
|
||||||
|
|
||||||
|
function u(e, a, t, u) {
|
||||||
|
var s = {
|
||||||
|
s: ["mõne sekundi", "mõni sekund", "paar sekundit"],
|
||||||
|
m: ["ühe minuti", "üks minut"],
|
||||||
|
mm: ["%d minuti", "%d minutit"],
|
||||||
|
h: ["ühe tunni", "tund aega", "üks tund"],
|
||||||
|
hh: ["%d tunni", "%d tundi"],
|
||||||
|
d: ["ühe päeva", "üks päev"],
|
||||||
|
M: ["kuu aja", "kuu aega", "üks kuu"],
|
||||||
|
MM: ["%d kuu", "%d kuud"],
|
||||||
|
y: ["ühe aasta", "aasta", "üks aasta"],
|
||||||
|
yy: ["%d aasta", "%d aastat"]
|
||||||
|
};
|
||||||
|
return a ? (s[t][2] ? s[t][2] : s[t][1]).replace("%d", e) : (u ? s[t][0] : s[t][1]).replace("%d", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
var s = {
|
||||||
|
name: "et",
|
||||||
|
weekdays: "pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev".split("_"),
|
||||||
|
weekdaysShort: "P_E_T_K_N_R_L".split("_"),
|
||||||
|
weekdaysMin: "P_E_T_K_N_R_L".split("_"),
|
||||||
|
months: "jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember".split("_"),
|
||||||
|
monthsShort: "jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + ".";
|
||||||
|
},
|
||||||
|
weekStart: 1,
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s pärast",
|
||||||
|
past: "%s tagasi",
|
||||||
|
s: u,
|
||||||
|
m: u,
|
||||||
|
mm: u,
|
||||||
|
h: u,
|
||||||
|
hh: u,
|
||||||
|
d: u,
|
||||||
|
dd: "%d päeva",
|
||||||
|
M: u,
|
||||||
|
MM: u,
|
||||||
|
y: u,
|
||||||
|
yy: u
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D. MMMM YYYY",
|
||||||
|
LLL: "D. MMMM YYYY H:mm",
|
||||||
|
LLLL: "dddd, D. MMMM YYYY H:mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(s, null, !0), s;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=et-js.js.map
|
63
dist/dist/locales/dayjs/eu-js.js
vendored
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[1396],{
|
||||||
|
|
||||||
|
/***/ 4713:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (a, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (a) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(a) {
|
||||||
|
return a && "object" == typeof a && "default" in a ? a : {
|
||||||
|
default: a
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(a),
|
||||||
|
l = {
|
||||||
|
name: "eu",
|
||||||
|
weekdays: "igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),
|
||||||
|
months: "urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "ig._al._ar._az._og._ol._lr.".split("_"),
|
||||||
|
monthsShort: "urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),
|
||||||
|
weekdaysMin: "ig_al_ar_az_og_ol_lr".split("_"),
|
||||||
|
ordinal: function (a) {
|
||||||
|
return a;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "YYYY-MM-DD",
|
||||||
|
LL: "YYYY[ko] MMMM[ren] D[a]",
|
||||||
|
LLL: "YYYY[ko] MMMM[ren] D[a] HH:mm",
|
||||||
|
LLLL: "dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",
|
||||||
|
l: "YYYY-M-D",
|
||||||
|
ll: "YYYY[ko] MMM D[a]",
|
||||||
|
lll: "YYYY[ko] MMM D[a] HH:mm",
|
||||||
|
llll: "ddd, YYYY[ko] MMM D[a] HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s barru",
|
||||||
|
past: "duela %s",
|
||||||
|
s: "segundo batzuk",
|
||||||
|
m: "minutu bat",
|
||||||
|
mm: "%d minutu",
|
||||||
|
h: "ordu bat",
|
||||||
|
hh: "%d ordu",
|
||||||
|
d: "egun bat",
|
||||||
|
dd: "%d egun",
|
||||||
|
M: "hilabete bat",
|
||||||
|
MM: "%d hilabete",
|
||||||
|
y: "urte bat",
|
||||||
|
yy: "%d urte"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(l, null, !0), l;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=eu-js.js.map
|
59
dist/dist/locales/dayjs/fa-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5544],{
|
||||||
|
|
||||||
|
/***/ 5087:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "fa",
|
||||||
|
weekdays: "یکشنبه_دوشنبه_سهشنبه_چهارشنبه_پنجشنبه_جمعه_شنبه".split("_"),
|
||||||
|
weekdaysShort: "یکشنبه_دوشنبه_سهشنبه_چهارشنبه_پنجشنبه_جمعه_شنبه".split("_"),
|
||||||
|
weekdaysMin: "ی_د_س_چ_پ_ج_ش".split("_"),
|
||||||
|
weekStart: 6,
|
||||||
|
months: "ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),
|
||||||
|
monthsShort: "ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "در %s",
|
||||||
|
past: "%s پیش",
|
||||||
|
s: "چند ثانیه",
|
||||||
|
m: "یک دقیقه",
|
||||||
|
mm: "%d دقیقه",
|
||||||
|
h: "یک ساعت",
|
||||||
|
hh: "%d ساعت",
|
||||||
|
d: "یک روز",
|
||||||
|
dd: "%d روز",
|
||||||
|
M: "یک ماه",
|
||||||
|
MM: "%d ماه",
|
||||||
|
y: "یک سال",
|
||||||
|
yy: "%d سال"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=fa-js.js.map
|
99
dist/dist/locales/dayjs/fi-js.js
vendored
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[2130],{
|
||||||
|
|
||||||
|
/***/ 1302:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (u, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (u) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(u) {
|
||||||
|
return u && "object" == typeof u && "default" in u ? u : {
|
||||||
|
default: u
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(u);
|
||||||
|
|
||||||
|
function n(u, e, t, n) {
|
||||||
|
var i = {
|
||||||
|
s: "muutama sekunti",
|
||||||
|
m: "minuutti",
|
||||||
|
mm: "%d minuuttia",
|
||||||
|
h: "tunti",
|
||||||
|
hh: "%d tuntia",
|
||||||
|
d: "päivä",
|
||||||
|
dd: "%d päivää",
|
||||||
|
M: "kuukausi",
|
||||||
|
MM: "%d kuukautta",
|
||||||
|
y: "vuosi",
|
||||||
|
yy: "%d vuotta",
|
||||||
|
numbers: "nolla_yksi_kaksi_kolme_neljä_viisi_kuusi_seitsemän_kahdeksan_yhdeksän".split("_")
|
||||||
|
},
|
||||||
|
a = {
|
||||||
|
s: "muutaman sekunnin",
|
||||||
|
m: "minuutin",
|
||||||
|
mm: "%d minuutin",
|
||||||
|
h: "tunnin",
|
||||||
|
hh: "%d tunnin",
|
||||||
|
d: "päivän",
|
||||||
|
dd: "%d päivän",
|
||||||
|
M: "kuukauden",
|
||||||
|
MM: "%d kuukauden",
|
||||||
|
y: "vuoden",
|
||||||
|
yy: "%d vuoden",
|
||||||
|
numbers: "nollan_yhden_kahden_kolmen_neljän_viiden_kuuden_seitsemän_kahdeksan_yhdeksän".split("_")
|
||||||
|
},
|
||||||
|
s = n && !e ? a : i,
|
||||||
|
_ = s[t];
|
||||||
|
return u < 10 ? _.replace("%d", s.numbers[u]) : _.replace("%d", u);
|
||||||
|
}
|
||||||
|
|
||||||
|
var i = {
|
||||||
|
name: "fi",
|
||||||
|
weekdays: "sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),
|
||||||
|
weekdaysShort: "su_ma_ti_ke_to_pe_la".split("_"),
|
||||||
|
weekdaysMin: "su_ma_ti_ke_to_pe_la".split("_"),
|
||||||
|
months: "tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),
|
||||||
|
monthsShort: "tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),
|
||||||
|
ordinal: function (u) {
|
||||||
|
return u + ".";
|
||||||
|
},
|
||||||
|
weekStart: 1,
|
||||||
|
yearStart: 4,
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s päästä",
|
||||||
|
past: "%s sitten",
|
||||||
|
s: n,
|
||||||
|
m: n,
|
||||||
|
mm: n,
|
||||||
|
h: n,
|
||||||
|
hh: n,
|
||||||
|
d: n,
|
||||||
|
dd: n,
|
||||||
|
M: n,
|
||||||
|
MM: n,
|
||||||
|
y: n,
|
||||||
|
yy: n
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH.mm",
|
||||||
|
LTS: "HH.mm.ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D. MMMM[ta] YYYY",
|
||||||
|
LLL: "D. MMMM[ta] YYYY, [klo] HH.mm",
|
||||||
|
LLLL: "dddd, D. MMMM[ta] YYYY, [klo] HH.mm",
|
||||||
|
l: "D.M.YYYY",
|
||||||
|
ll: "D. MMM YYYY",
|
||||||
|
lll: "D. MMM YYYY, [klo] HH.mm",
|
||||||
|
llll: "ddd, D. MMM YYYY, [klo] HH.mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(i, null, !0), i;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=fi-js.js.map
|
59
dist/dist/locales/dayjs/fo-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[8745],{
|
||||||
|
|
||||||
|
/***/ 1036:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, t) {
|
||||||
|
true ? module.exports = t(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function t(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var a = t(e),
|
||||||
|
r = {
|
||||||
|
name: "fo",
|
||||||
|
weekdays: "sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur".split("_"),
|
||||||
|
months: "januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "sun_mán_týs_mik_hós_frí_ley".split("_"),
|
||||||
|
monthsShort: "jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),
|
||||||
|
weekdaysMin: "su_má_tý_mi_hó_fr_le".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D. MMMM, YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "um %s",
|
||||||
|
past: "%s síðani",
|
||||||
|
s: "fá sekund",
|
||||||
|
m: "ein minuttur",
|
||||||
|
mm: "%d minuttir",
|
||||||
|
h: "ein tími",
|
||||||
|
hh: "%d tímar",
|
||||||
|
d: "ein dagur",
|
||||||
|
dd: "%d dagar",
|
||||||
|
M: "ein mánaður",
|
||||||
|
MM: "%d mánaðir",
|
||||||
|
y: "eitt ár",
|
||||||
|
yy: "%d ár"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return a.default.locale(r, null, !0), r;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=fo-js.js.map
|
58
dist/dist/locales/dayjs/fr-ca-js.js
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[7363],{
|
||||||
|
|
||||||
|
/***/ 2104:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var i = n(e),
|
||||||
|
_ = {
|
||||||
|
name: "fr-ca",
|
||||||
|
weekdays: "dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),
|
||||||
|
months: "janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),
|
||||||
|
weekdaysShort: "dim._lun._mar._mer._jeu._ven._sam.".split("_"),
|
||||||
|
monthsShort: "janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),
|
||||||
|
weekdaysMin: "di_lu_ma_me_je_ve_sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "YYYY-MM-DD",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "dans %s",
|
||||||
|
past: "il y a %s",
|
||||||
|
s: "quelques secondes",
|
||||||
|
m: "une minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "une heure",
|
||||||
|
hh: "%d heures",
|
||||||
|
d: "un jour",
|
||||||
|
dd: "%d jours",
|
||||||
|
M: "un mois",
|
||||||
|
MM: "%d mois",
|
||||||
|
y: "un an",
|
||||||
|
yy: "%d ans"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return i.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=fr-ca-js.js.map
|
59
dist/dist/locales/dayjs/fr-ch-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[7952],{
|
||||||
|
|
||||||
|
/***/ 7378:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var i = n(e),
|
||||||
|
_ = {
|
||||||
|
name: "fr-ch",
|
||||||
|
weekdays: "dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),
|
||||||
|
months: "janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "dim._lun._mar._mer._jeu._ven._sam.".split("_"),
|
||||||
|
monthsShort: "janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),
|
||||||
|
weekdaysMin: "di_lu_ma_me_je_ve_sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "dans %s",
|
||||||
|
past: "il y a %s",
|
||||||
|
s: "quelques secondes",
|
||||||
|
m: "une minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "une heure",
|
||||||
|
hh: "%d heures",
|
||||||
|
d: "un jour",
|
||||||
|
dd: "%d jours",
|
||||||
|
M: "un mois",
|
||||||
|
MM: "%d mois",
|
||||||
|
y: "un an",
|
||||||
|
yy: "%d ans"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return i.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=fr-ch-js.js.map
|
60
dist/dist/locales/dayjs/fr-js.js
vendored
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[1910],{
|
||||||
|
|
||||||
|
/***/ 3981:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = n(e),
|
||||||
|
i = {
|
||||||
|
name: "fr",
|
||||||
|
weekdays: "dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),
|
||||||
|
weekdaysShort: "dim._lun._mar._mer._jeu._ven._sam.".split("_"),
|
||||||
|
weekdaysMin: "di_lu_ma_me_je_ve_sa".split("_"),
|
||||||
|
months: "janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),
|
||||||
|
monthsShort: "janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
yearStart: 4,
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "dans %s",
|
||||||
|
past: "il y a %s",
|
||||||
|
s: "quelques secondes",
|
||||||
|
m: "une minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "une heure",
|
||||||
|
hh: "%d heures",
|
||||||
|
d: "un jour",
|
||||||
|
dd: "%d jours",
|
||||||
|
M: "un mois",
|
||||||
|
MM: "%d mois",
|
||||||
|
y: "un an",
|
||||||
|
yy: "%d ans"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return "" + e + (1 === e ? "er" : "");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(i, null, !0), i;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=fr-js.js.map
|
59
dist/dist/locales/dayjs/fy-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[6376],{
|
||||||
|
|
||||||
|
/***/ 6372:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var i = n(e),
|
||||||
|
t = {
|
||||||
|
name: "fy",
|
||||||
|
weekdays: "snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon".split("_"),
|
||||||
|
months: "jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber".split("_"),
|
||||||
|
monthsShort: "jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "si._mo._ti._wo._to._fr._so.".split("_"),
|
||||||
|
weekdaysMin: "Si_Mo_Ti_Wo_To_Fr_So".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD-MM-YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "oer %s",
|
||||||
|
past: "%s lyn",
|
||||||
|
s: "in pear sekonden",
|
||||||
|
m: "ien minút",
|
||||||
|
mm: "%d minuten",
|
||||||
|
h: "ien oere",
|
||||||
|
hh: "%d oeren",
|
||||||
|
d: "ien dei",
|
||||||
|
dd: "%d dagen",
|
||||||
|
M: "ien moanne",
|
||||||
|
MM: "%d moannen",
|
||||||
|
y: "ien jier",
|
||||||
|
yy: "%d jierren"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return i.default.locale(t, null, !0), t;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=fy-js.js.map
|
59
dist/dist/locales/dayjs/ga-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[688],{
|
||||||
|
|
||||||
|
/***/ 9517:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (a, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (a) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(a) {
|
||||||
|
return a && "object" == typeof a && "default" in a ? a : {
|
||||||
|
default: a
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var i = e(a),
|
||||||
|
n = {
|
||||||
|
name: "ga",
|
||||||
|
weekdays: "Dé Domhnaigh_Dé Luain_Dé Máirt_Dé Céadaoin_Déardaoin_Dé hAoine_Dé Satharn".split("_"),
|
||||||
|
months: "Eanáir_Feabhra_Márta_Aibreán_Bealtaine_Méitheamh_Iúil_Lúnasa_Meán Fómhair_Deaireadh Fómhair_Samhain_Nollaig".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Dom_Lua_Mái_Céa_Déa_hAo_Sat".split("_"),
|
||||||
|
monthsShort: "Eaná_Feab_Márt_Aibr_Beal_Méit_Iúil_Lúna_Meán_Deai_Samh_Noll".split("_"),
|
||||||
|
weekdaysMin: "Do_Lu_Má_Ce_Dé_hA_Sa".split("_"),
|
||||||
|
ordinal: function (a) {
|
||||||
|
return a;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "i %s",
|
||||||
|
past: "%s ó shin",
|
||||||
|
s: "cúpla soicind",
|
||||||
|
m: "nóiméad",
|
||||||
|
mm: "%d nóiméad",
|
||||||
|
h: "uair an chloig",
|
||||||
|
hh: "%d uair an chloig",
|
||||||
|
d: "lá",
|
||||||
|
dd: "%d lá",
|
||||||
|
M: "mí",
|
||||||
|
MM: "%d mí",
|
||||||
|
y: "bliain",
|
||||||
|
yy: "%d bliain"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return i.default.locale(n, null, !0), n;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ga-js.js.map
|
59
dist/dist/locales/dayjs/gd-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5050],{
|
||||||
|
|
||||||
|
/***/ 5808:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (a, i) {
|
||||||
|
true ? module.exports = i(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (a) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function i(a) {
|
||||||
|
return a && "object" == typeof a && "default" in a ? a : {
|
||||||
|
default: a
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var n = i(a),
|
||||||
|
e = {
|
||||||
|
name: "gd",
|
||||||
|
weekdays: "Didòmhnaich_Diluain_Dimàirt_Diciadain_Diardaoin_Dihaoine_Disathairne".split("_"),
|
||||||
|
months: "Am Faoilleach_An Gearran_Am Màrt_An Giblean_An Cèitean_An t-Ògmhios_An t-Iuchar_An Lùnastal_An t-Sultain_An Dàmhair_An t-Samhain_An Dùbhlachd".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Did_Dil_Dim_Dic_Dia_Dih_Dis".split("_"),
|
||||||
|
monthsShort: "Faoi_Gear_Màrt_Gibl_Cèit_Ògmh_Iuch_Lùn_Sult_Dàmh_Samh_Dùbh".split("_"),
|
||||||
|
weekdaysMin: "Dò_Lu_Mà_Ci_Ar_Ha_Sa".split("_"),
|
||||||
|
ordinal: function (a) {
|
||||||
|
return a;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "ann an %s",
|
||||||
|
past: "bho chionn %s",
|
||||||
|
s: "beagan diogan",
|
||||||
|
m: "mionaid",
|
||||||
|
mm: "%d mionaidean",
|
||||||
|
h: "uair",
|
||||||
|
hh: "%d uairean",
|
||||||
|
d: "latha",
|
||||||
|
dd: "%d latha",
|
||||||
|
M: "mìos",
|
||||||
|
MM: "%d mìosan",
|
||||||
|
y: "bliadhna",
|
||||||
|
yy: "%d bliadhna"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return n.default.locale(e, null, !0), e;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=gd-js.js.map
|
59
dist/dist/locales/dayjs/gl-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5818],{
|
||||||
|
|
||||||
|
/***/ 9219:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, o) {
|
||||||
|
true ? module.exports = o(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function o(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var s = o(e),
|
||||||
|
d = {
|
||||||
|
name: "gl",
|
||||||
|
weekdays: "domingo_luns_martes_mércores_xoves_venres_sábado".split("_"),
|
||||||
|
months: "xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "dom._lun._mar._mér._xov._ven._sáb.".split("_"),
|
||||||
|
monthsShort: "xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.".split("_"),
|
||||||
|
weekdaysMin: "do_lu_ma_mé_xo_ve_sá".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + "º";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D [de] MMMM [de] YYYY",
|
||||||
|
LLL: "D [de] MMMM [de] YYYY H:mm",
|
||||||
|
LLLL: "dddd, D [de] MMMM [de] YYYY H:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "en %s",
|
||||||
|
past: "fai %s",
|
||||||
|
s: "uns segundos",
|
||||||
|
m: "un minuto",
|
||||||
|
mm: "%d minutos",
|
||||||
|
h: "unha hora",
|
||||||
|
hh: "%d horas",
|
||||||
|
d: "un día",
|
||||||
|
dd: "%d días",
|
||||||
|
M: "un mes",
|
||||||
|
MM: "%d meses",
|
||||||
|
y: "un ano",
|
||||||
|
yy: "%d anos"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return s.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=gl-js.js.map
|
45
dist/dist/locales/dayjs/gom-latn-js.js
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[825],{
|
||||||
|
|
||||||
|
/***/ 3683:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, t) {
|
||||||
|
true ? module.exports = t(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function t(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var a = t(e),
|
||||||
|
_ = {
|
||||||
|
name: "gom-latn",
|
||||||
|
weekdays: "Aitar_Somar_Mongllar_Budvar_Brestar_Sukrar_Son'var".split("_"),
|
||||||
|
months: "Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Ait._Som._Mon._Bud._Bre._Suk._Son.".split("_"),
|
||||||
|
monthsShort: "Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.".split("_"),
|
||||||
|
weekdaysMin: "Ai_Sm_Mo_Bu_Br_Su_Sn".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "A h:mm [vazta]",
|
||||||
|
LTS: "A h:mm:ss [vazta]",
|
||||||
|
L: "DD-MM-YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY A h:mm [vazta]",
|
||||||
|
LLLL: "dddd, MMMM[achea] Do, YYYY, A h:mm [vazta]",
|
||||||
|
llll: "ddd, D MMM YYYY, A h:mm [vazta]"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return a.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=gom-latn-js.js.map
|
58
dist/dist/locales/dayjs/gu-js.js
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[3623],{
|
||||||
|
|
||||||
|
/***/ 9299:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "gu",
|
||||||
|
weekdays: "રવિવાર_સોમવાર_મંગળવાર_બુધ્વાર_ગુરુવાર_શુક્રવાર_શનિવાર".split("_"),
|
||||||
|
months: "જાન્યુઆરી_ફેબ્રુઆરી_માર્ચ_એપ્રિલ_મે_જૂન_જુલાઈ_ઑગસ્ટ_સપ્ટેમ્બર_ઑક્ટ્બર_નવેમ્બર_ડિસેમ્બર".split("_"),
|
||||||
|
weekdaysShort: "રવિ_સોમ_મંગળ_બુધ્_ગુરુ_શુક્ર_શનિ".split("_"),
|
||||||
|
monthsShort: "જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.".split("_"),
|
||||||
|
weekdaysMin: "ર_સો_મં_બુ_ગુ_શુ_શ".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "A h:mm વાગ્યે",
|
||||||
|
LTS: "A h:mm:ss વાગ્યે",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY, A h:mm વાગ્યે",
|
||||||
|
LLLL: "dddd, D MMMM YYYY, A h:mm વાગ્યે"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s મા",
|
||||||
|
past: "%s પેહલા",
|
||||||
|
s: "અમુક પળો",
|
||||||
|
m: "એક મિનિટ",
|
||||||
|
mm: "%d મિનિટ",
|
||||||
|
h: "એક કલાક",
|
||||||
|
hh: "%d કલાક",
|
||||||
|
d: "એક દિવસ",
|
||||||
|
dd: "%d દિવસ",
|
||||||
|
M: "એક મહિનો",
|
||||||
|
MM: "%d મહિનો",
|
||||||
|
y: "એક વર્ષ",
|
||||||
|
yy: "%d વર્ષ"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=gu-js.js.map
|
97
dist/dist/locales/dayjs/he-js.js
vendored
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[9372],{
|
||||||
|
|
||||||
|
/***/ 6626:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (Y, M) {
|
||||||
|
true ? module.exports = M(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (Y) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function M(Y) {
|
||||||
|
return Y && "object" == typeof Y && "default" in Y ? Y : {
|
||||||
|
default: Y
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var d = M(Y),
|
||||||
|
e = {
|
||||||
|
s: "מספר שניות",
|
||||||
|
ss: "%d שניות",
|
||||||
|
m: "דקה",
|
||||||
|
mm: "%d דקות",
|
||||||
|
h: "שעה",
|
||||||
|
hh: "%d שעות",
|
||||||
|
hh2: "שעתיים",
|
||||||
|
d: "יום",
|
||||||
|
dd: "%d ימים",
|
||||||
|
dd2: "יומיים",
|
||||||
|
M: "חודש",
|
||||||
|
MM: "%d חודשים",
|
||||||
|
MM2: "חודשיים",
|
||||||
|
y: "שנה",
|
||||||
|
yy: "%d שנים",
|
||||||
|
yy2: "שנתיים"
|
||||||
|
};
|
||||||
|
|
||||||
|
function _(Y, M, d) {
|
||||||
|
return (e[d + (2 === Y ? "2" : "")] || e[d]).replace("%d", Y);
|
||||||
|
}
|
||||||
|
|
||||||
|
var l = {
|
||||||
|
name: "he",
|
||||||
|
weekdays: "ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),
|
||||||
|
weekdaysShort: "א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),
|
||||||
|
weekdaysMin: "א׳_ב׳_ג׳_ד׳_ה׳_ו_ש׳".split("_"),
|
||||||
|
months: "ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"),
|
||||||
|
monthsShort: "ינו_פבר_מרץ_אפר_מאי_יונ_יול_אוג_ספט_אוק_נוב_דצמ".split("_"),
|
||||||
|
relativeTime: {
|
||||||
|
future: "בעוד %s",
|
||||||
|
past: "לפני %s",
|
||||||
|
s: _,
|
||||||
|
m: _,
|
||||||
|
mm: _,
|
||||||
|
h: _,
|
||||||
|
hh: _,
|
||||||
|
d: _,
|
||||||
|
dd: _,
|
||||||
|
M: _,
|
||||||
|
MM: _,
|
||||||
|
y: _,
|
||||||
|
yy: _
|
||||||
|
},
|
||||||
|
ordinal: function (Y) {
|
||||||
|
return Y;
|
||||||
|
},
|
||||||
|
format: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D [ב]MMMM YYYY",
|
||||||
|
LLL: "D [ב]MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D [ב]MMMM YYYY HH:mm",
|
||||||
|
l: "D/M/YYYY",
|
||||||
|
ll: "D MMM YYYY",
|
||||||
|
lll: "D MMM YYYY HH:mm",
|
||||||
|
llll: "ddd, D MMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D [ב]MMMM YYYY",
|
||||||
|
LLL: "D [ב]MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D [ב]MMMM YYYY HH:mm",
|
||||||
|
l: "D/M/YYYY",
|
||||||
|
ll: "D MMM YYYY",
|
||||||
|
lll: "D MMM YYYY HH:mm",
|
||||||
|
llll: "ddd, D MMM YYYY HH:mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return d.default.locale(l, null, !0), l;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=he-js.js.map
|
58
dist/dist/locales/dayjs/hi-js.js
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[8010],{
|
||||||
|
|
||||||
|
/***/ 4215:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "hi",
|
||||||
|
weekdays: "रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),
|
||||||
|
months: "जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),
|
||||||
|
weekdaysShort: "रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि".split("_"),
|
||||||
|
monthsShort: "जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.".split("_"),
|
||||||
|
weekdaysMin: "र_सो_मं_बु_गु_शु_श".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "A h:mm बजे",
|
||||||
|
LTS: "A h:mm:ss बजे",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY, A h:mm बजे",
|
||||||
|
LLLL: "dddd, D MMMM YYYY, A h:mm बजे"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s में",
|
||||||
|
past: "%s पहले",
|
||||||
|
s: "कुछ ही क्षण",
|
||||||
|
m: "एक मिनट",
|
||||||
|
mm: "%d मिनट",
|
||||||
|
h: "एक घंटा",
|
||||||
|
hh: "%d घंटे",
|
||||||
|
d: "एक दिन",
|
||||||
|
dd: "%d दिन",
|
||||||
|
M: "एक महीने",
|
||||||
|
MM: "%d महीने",
|
||||||
|
y: "एक वर्ष",
|
||||||
|
yy: "%d वर्ष"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=hi-js.js.map
|
67
dist/dist/locales/dayjs/hr-js.js
vendored
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[7419],{
|
||||||
|
|
||||||
|
/***/ 9320:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = a(e),
|
||||||
|
s = "siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),
|
||||||
|
n = "siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_"),
|
||||||
|
_ = /D[oD]?(\[[^[\]]*\]|\s)+MMMM?/,
|
||||||
|
o = function (e, a) {
|
||||||
|
return _.test(a) ? s[e.month()] : n[e.month()];
|
||||||
|
};
|
||||||
|
|
||||||
|
o.s = n, o.f = s;
|
||||||
|
var i = {
|
||||||
|
name: "hr",
|
||||||
|
weekdays: "nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),
|
||||||
|
weekdaysShort: "ned._pon._uto._sri._čet._pet._sub.".split("_"),
|
||||||
|
weekdaysMin: "ne_po_ut_sr_če_pe_su".split("_"),
|
||||||
|
months: o,
|
||||||
|
monthsShort: "sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D. MMMM YYYY",
|
||||||
|
LLL: "D. MMMM YYYY H:mm",
|
||||||
|
LLLL: "dddd, D. MMMM YYYY H:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "za %s",
|
||||||
|
past: "prije %s",
|
||||||
|
s: "sekunda",
|
||||||
|
m: "minuta",
|
||||||
|
mm: "%d minuta",
|
||||||
|
h: "sat",
|
||||||
|
hh: "%d sati",
|
||||||
|
d: "dan",
|
||||||
|
dd: "%d dana",
|
||||||
|
M: "mjesec",
|
||||||
|
MM: "%d mjeseci",
|
||||||
|
y: "godina",
|
||||||
|
yy: "%d godine"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + ".";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(i, null, !0), i;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=hr-js.js.map
|
58
dist/dist/locales/dayjs/ht-js.js
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5822],{
|
||||||
|
|
||||||
|
/***/ 7608:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var d = n(e),
|
||||||
|
a = {
|
||||||
|
name: "ht",
|
||||||
|
weekdays: "dimanch_lendi_madi_mèkredi_jedi_vandredi_samdi".split("_"),
|
||||||
|
months: "janvye_fevriye_mas_avril_me_jen_jiyè_out_septanm_oktòb_novanm_desanm".split("_"),
|
||||||
|
weekdaysShort: "dim._len._mad._mèk._jed._van._sam.".split("_"),
|
||||||
|
monthsShort: "jan._fev._mas_avr._me_jen_jiyè._out_sept._okt._nov._des.".split("_"),
|
||||||
|
weekdaysMin: "di_le_ma_mè_je_va_sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "nan %s",
|
||||||
|
past: "sa gen %s",
|
||||||
|
s: "kèk segond",
|
||||||
|
m: "yon minit",
|
||||||
|
mm: "%d minit",
|
||||||
|
h: "inèdtan",
|
||||||
|
hh: "%d zè",
|
||||||
|
d: "yon jou",
|
||||||
|
dd: "%d jou",
|
||||||
|
M: "yon mwa",
|
||||||
|
MM: "%d mwa",
|
||||||
|
y: "yon ane",
|
||||||
|
yy: "%d ane"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return d.default.locale(a, null, !0), a;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ht-js.js.map
|
81
dist/dist/locales/dayjs/hu-js.js
vendored
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[8214],{
|
||||||
|
|
||||||
|
/***/ 3461:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = n(e),
|
||||||
|
r = {
|
||||||
|
name: "hu",
|
||||||
|
weekdays: "vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),
|
||||||
|
weekdaysShort: "vas_hét_kedd_sze_csüt_pén_szo".split("_"),
|
||||||
|
weekdaysMin: "v_h_k_sze_cs_p_szo".split("_"),
|
||||||
|
months: "január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),
|
||||||
|
monthsShort: "jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + ".";
|
||||||
|
},
|
||||||
|
weekStart: 1,
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s múlva",
|
||||||
|
past: "%s",
|
||||||
|
s: function (e, n, t, r) {
|
||||||
|
return "néhány másodperc" + (r || n ? "" : "e");
|
||||||
|
},
|
||||||
|
m: function (e, n, t, r) {
|
||||||
|
return "egy perc" + (r || n ? "" : "e");
|
||||||
|
},
|
||||||
|
mm: function (e, n, t, r) {
|
||||||
|
return e + " perc" + (r || n ? "" : "e");
|
||||||
|
},
|
||||||
|
h: function (e, n, t, r) {
|
||||||
|
return "egy " + (r || n ? "óra" : "órája");
|
||||||
|
},
|
||||||
|
hh: function (e, n, t, r) {
|
||||||
|
return e + " " + (r || n ? "óra" : "órája");
|
||||||
|
},
|
||||||
|
d: function (e, n, t, r) {
|
||||||
|
return "egy " + (r || n ? "nap" : "napja");
|
||||||
|
},
|
||||||
|
dd: function (e, n, t, r) {
|
||||||
|
return e + " " + (r || n ? "nap" : "napja");
|
||||||
|
},
|
||||||
|
M: function (e, n, t, r) {
|
||||||
|
return "egy " + (r || n ? "hónap" : "hónapja");
|
||||||
|
},
|
||||||
|
MM: function (e, n, t, r) {
|
||||||
|
return e + " " + (r || n ? "hónap" : "hónapja");
|
||||||
|
},
|
||||||
|
y: function (e, n, t, r) {
|
||||||
|
return "egy " + (r || n ? "év" : "éve");
|
||||||
|
},
|
||||||
|
yy: function (e, n, t, r) {
|
||||||
|
return e + " " + (r || n ? "év" : "éve");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "YYYY.MM.DD.",
|
||||||
|
LL: "YYYY. MMMM D.",
|
||||||
|
LLL: "YYYY. MMMM D. H:mm",
|
||||||
|
LLLL: "YYYY. MMMM D., dddd H:mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(r, null, !0), r;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=hu-js.js.map
|
59
dist/dist/locales/dayjs/hy-am-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5407],{
|
||||||
|
|
||||||
|
/***/ 2045:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "hy-am",
|
||||||
|
weekdays: "կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ".split("_"),
|
||||||
|
months: "հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),
|
||||||
|
monthsShort: "հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ".split("_"),
|
||||||
|
weekdaysMin: "կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D MMMM YYYY թ.",
|
||||||
|
LLL: "D MMMM YYYY թ., HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY թ., HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s հետո",
|
||||||
|
past: "%s առաջ",
|
||||||
|
s: "մի քանի վայրկյան",
|
||||||
|
m: "րոպե",
|
||||||
|
mm: "%d րոպե",
|
||||||
|
h: "ժամ",
|
||||||
|
hh: "%d ժամ",
|
||||||
|
d: "օր",
|
||||||
|
dd: "%d օր",
|
||||||
|
M: "ամիս",
|
||||||
|
MM: "%d ամիս",
|
||||||
|
y: "տարի",
|
||||||
|
yy: "%d տարի"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=hy-am-js.js.map
|
59
dist/dist/locales/dayjs/id-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[9513],{
|
||||||
|
|
||||||
|
/***/ 8516:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, a) {
|
||||||
|
true ? module.exports = a(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function a(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = a(e),
|
||||||
|
_ = {
|
||||||
|
name: "id",
|
||||||
|
weekdays: "Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),
|
||||||
|
months: "Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),
|
||||||
|
weekdaysShort: "Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),
|
||||||
|
weekdaysMin: "Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
formats: {
|
||||||
|
LT: "HH.mm",
|
||||||
|
LTS: "HH.mm.ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY [pukul] HH.mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY [pukul] HH.mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "dalam %s",
|
||||||
|
past: "%s yang lalu",
|
||||||
|
s: "beberapa detik",
|
||||||
|
m: "semenit",
|
||||||
|
mm: "%d menit",
|
||||||
|
h: "sejam",
|
||||||
|
hh: "%d jam",
|
||||||
|
d: "sehari",
|
||||||
|
dd: "%d hari",
|
||||||
|
M: "sebulan",
|
||||||
|
MM: "%d bulan",
|
||||||
|
y: "setahun",
|
||||||
|
yy: "%d tahun"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + ".";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=id-js.js.map
|
84
dist/dist/locales/dayjs/is-js.js
vendored
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[1194],{
|
||||||
|
|
||||||
|
/***/ 9099:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (u, r) {
|
||||||
|
true ? module.exports = r(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (u) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function r(u) {
|
||||||
|
return u && "object" == typeof u && "default" in u ? u : {
|
||||||
|
default: u
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var n = r(u),
|
||||||
|
e = {
|
||||||
|
s: ["nokkrar sekúndur", "nokkrar sekúndur", "nokkrum sekúndum"],
|
||||||
|
m: ["mínúta", "mínútu", "mínútu"],
|
||||||
|
mm: ["mínútur", "mínútur", "mínútum"],
|
||||||
|
h: ["klukkustund", "klukkustund", "klukkustund"],
|
||||||
|
hh: ["klukkustundir", "klukkustundir", "klukkustundum"],
|
||||||
|
d: ["dagur", "dag", "degi"],
|
||||||
|
dd: ["dagar", "daga", "dögum"],
|
||||||
|
M: ["mánuður", "mánuð", "mánuði"],
|
||||||
|
MM: ["mánuðir", "mánuði", "mánuðum"],
|
||||||
|
y: ["ár", "ár", "ári"],
|
||||||
|
yy: ["ár", "ár", "árum"]
|
||||||
|
};
|
||||||
|
|
||||||
|
function t(u, r, n, t) {
|
||||||
|
var a = function (u, r, n, t) {
|
||||||
|
var a = t ? 0 : n ? 1 : 2,
|
||||||
|
d = 2 === u.length && r % 10 == 1 ? u[0] : u,
|
||||||
|
m = e[d][a];
|
||||||
|
return 1 === u.length ? m : "%d " + m;
|
||||||
|
}(n, u, t, r);
|
||||||
|
|
||||||
|
return a.replace("%d", u);
|
||||||
|
}
|
||||||
|
|
||||||
|
var a = {
|
||||||
|
name: "is",
|
||||||
|
weekdays: "sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),
|
||||||
|
months: "janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "sun_mán_þri_mið_fim_fös_lau".split("_"),
|
||||||
|
monthsShort: "jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),
|
||||||
|
weekdaysMin: "Su_Má_Þr_Mi_Fi_Fö_La".split("_"),
|
||||||
|
ordinal: function (u) {
|
||||||
|
return u;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "H:mm",
|
||||||
|
LTS: "H:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D. MMMM YYYY",
|
||||||
|
LLL: "D. MMMM YYYY [kl.] H:mm",
|
||||||
|
LLLL: "dddd, D. MMMM YYYY [kl.] H:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "eftir %s",
|
||||||
|
past: "fyrir %s síðan",
|
||||||
|
s: t,
|
||||||
|
m: t,
|
||||||
|
mm: t,
|
||||||
|
h: t,
|
||||||
|
hh: t,
|
||||||
|
d: t,
|
||||||
|
dd: t,
|
||||||
|
M: t,
|
||||||
|
MM: t,
|
||||||
|
y: t,
|
||||||
|
yy: t
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return n.default.locale(a, null, !0), a;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=is-js.js.map
|
59
dist/dist/locales/dayjs/it-ch-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[6010],{
|
||||||
|
|
||||||
|
/***/ 5447:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, o) {
|
||||||
|
true ? module.exports = o(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function o(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var n = o(e),
|
||||||
|
t = {
|
||||||
|
name: "it-ch",
|
||||||
|
weekdays: "domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),
|
||||||
|
months: "gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "dom_lun_mar_mer_gio_ven_sab".split("_"),
|
||||||
|
monthsShort: "gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),
|
||||||
|
weekdaysMin: "do_lu_ma_me_gi_ve_sa".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "tra %s",
|
||||||
|
past: "%s fa",
|
||||||
|
s: "alcuni secondi",
|
||||||
|
m: "un minuto",
|
||||||
|
mm: "%d minuti",
|
||||||
|
h: "un'ora",
|
||||||
|
hh: "%d ore",
|
||||||
|
d: "un giorno",
|
||||||
|
dd: "%d giorni",
|
||||||
|
M: "un mese",
|
||||||
|
MM: "%d mesi",
|
||||||
|
y: "un anno",
|
||||||
|
yy: "%d anni"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return n.default.locale(t, null, !0), t;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=it-ch-js.js.map
|
59
dist/dist/locales/dayjs/it-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[1880],{
|
||||||
|
|
||||||
|
/***/ 2869:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, o) {
|
||||||
|
true ? module.exports = o(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function o(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = o(e),
|
||||||
|
n = {
|
||||||
|
name: "it",
|
||||||
|
weekdays: "domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),
|
||||||
|
weekdaysShort: "dom_lun_mar_mer_gio_ven_sab".split("_"),
|
||||||
|
weekdaysMin: "do_lu_ma_me_gi_ve_sa".split("_"),
|
||||||
|
months: "gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
monthsShort: "gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "tra %s",
|
||||||
|
past: "%s fa",
|
||||||
|
s: "qualche secondo",
|
||||||
|
m: "un minuto",
|
||||||
|
mm: "%d minuti",
|
||||||
|
h: "un' ora",
|
||||||
|
hh: "%d ore",
|
||||||
|
d: "un giorno",
|
||||||
|
dd: "%d giorni",
|
||||||
|
M: "un mese",
|
||||||
|
MM: "%d mesi",
|
||||||
|
y: "un anno",
|
||||||
|
yy: "%d anni"
|
||||||
|
},
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + "º";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(n, null, !0), n;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=it-js.js.map
|
66
dist/dist/locales/dayjs/ja-js.js
vendored
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[1107],{
|
||||||
|
|
||||||
|
/***/ 2754:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, _) {
|
||||||
|
true ? module.exports = _(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function _(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = _(e),
|
||||||
|
d = {
|
||||||
|
name: "ja",
|
||||||
|
weekdays: "日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),
|
||||||
|
weekdaysShort: "日_月_火_水_木_金_土".split("_"),
|
||||||
|
weekdaysMin: "日_月_火_水_木_金_土".split("_"),
|
||||||
|
months: "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),
|
||||||
|
monthsShort: "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e + "日";
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "YYYY/MM/DD",
|
||||||
|
LL: "YYYY年M月D日",
|
||||||
|
LLL: "YYYY年M月D日 HH:mm",
|
||||||
|
LLLL: "YYYY年M月D日 dddd HH:mm",
|
||||||
|
l: "YYYY/MM/DD",
|
||||||
|
ll: "YYYY年M月D日",
|
||||||
|
lll: "YYYY年M月D日 HH:mm",
|
||||||
|
llll: "YYYY年M月D日(ddd) HH:mm"
|
||||||
|
},
|
||||||
|
meridiem: function (e) {
|
||||||
|
return e < 12 ? "午前" : "午後";
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s後",
|
||||||
|
past: "%s前",
|
||||||
|
s: "数秒",
|
||||||
|
m: "1分",
|
||||||
|
mm: "%d分",
|
||||||
|
h: "1時間",
|
||||||
|
hh: "%d時間",
|
||||||
|
d: "1日",
|
||||||
|
dd: "%d日",
|
||||||
|
M: "1ヶ月",
|
||||||
|
MM: "%dヶ月",
|
||||||
|
y: "1年",
|
||||||
|
yy: "%d年"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ja-js.js.map
|
59
dist/dist/locales/dayjs/jv-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[4305],{
|
||||||
|
|
||||||
|
/***/ 6615:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (e, n) {
|
||||||
|
true ? module.exports = n(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (e) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function n(e) {
|
||||||
|
return e && "object" == typeof e && "default" in e ? e : {
|
||||||
|
default: e
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = n(e),
|
||||||
|
_ = {
|
||||||
|
name: "jv",
|
||||||
|
weekdays: "Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu".split("_"),
|
||||||
|
months: "Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "Min_Sen_Sel_Reb_Kem_Jem_Sep".split("_"),
|
||||||
|
monthsShort: "Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des".split("_"),
|
||||||
|
weekdaysMin: "Mg_Sn_Sl_Rb_Km_Jm_Sp".split("_"),
|
||||||
|
ordinal: function (e) {
|
||||||
|
return e;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH.mm",
|
||||||
|
LTS: "HH.mm.ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY [pukul] HH.mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY [pukul] HH.mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "wonten ing %s",
|
||||||
|
past: "%s ingkang kepengker",
|
||||||
|
s: "sawetawis detik",
|
||||||
|
m: "setunggal menit",
|
||||||
|
mm: "%d menit",
|
||||||
|
h: "setunggal jam",
|
||||||
|
hh: "%d jam",
|
||||||
|
d: "sedinten",
|
||||||
|
dd: "%d dinten",
|
||||||
|
M: "sewulan",
|
||||||
|
MM: "%d wulan",
|
||||||
|
y: "setaun",
|
||||||
|
yy: "%d taun"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(_, null, !0), _;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=jv-js.js.map
|
59
dist/dist/locales/dayjs/ka-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5186],{
|
||||||
|
|
||||||
|
/***/ 7830:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "ka",
|
||||||
|
weekdays: "კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი".split("_"),
|
||||||
|
weekdaysShort: "კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ".split("_"),
|
||||||
|
weekdaysMin: "კვ_ორ_სა_ოთ_ხუ_პა_შა".split("_"),
|
||||||
|
months: "იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი".split("_"),
|
||||||
|
monthsShort: "იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
formats: {
|
||||||
|
LT: "h:mm A",
|
||||||
|
LTS: "h:mm:ss A",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY h:mm A",
|
||||||
|
LLLL: "dddd, D MMMM YYYY h:mm A"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s შემდეგ",
|
||||||
|
past: "%s წინ",
|
||||||
|
s: "წამი",
|
||||||
|
m: "წუთი",
|
||||||
|
mm: "%d წუთი",
|
||||||
|
h: "საათი",
|
||||||
|
hh: "%d საათის",
|
||||||
|
d: "დღეს",
|
||||||
|
dd: "%d დღის განმავლობაში",
|
||||||
|
M: "თვის",
|
||||||
|
MM: "%d თვის",
|
||||||
|
y: "წელი",
|
||||||
|
yy: "%d წლის"
|
||||||
|
},
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=ka-js.js.map
|
59
dist/dist/locales/dayjs/kk-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[5206],{
|
||||||
|
|
||||||
|
/***/ 4723:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "kk",
|
||||||
|
weekdays: "жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі".split("_"),
|
||||||
|
weekdaysShort: "жек_дүй_сей_сәр_бей_жұм_сен".split("_"),
|
||||||
|
weekdaysMin: "жк_дй_сй_ср_бй_жм_сн".split("_"),
|
||||||
|
months: "қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан".split("_"),
|
||||||
|
monthsShort: "қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s ішінде",
|
||||||
|
past: "%s бұрын",
|
||||||
|
s: "бірнеше секунд",
|
||||||
|
m: "бір минут",
|
||||||
|
mm: "%d минут",
|
||||||
|
h: "бір сағат",
|
||||||
|
hh: "%d сағат",
|
||||||
|
d: "бір күн",
|
||||||
|
dd: "%d күн",
|
||||||
|
M: "бір ай",
|
||||||
|
MM: "%d ай",
|
||||||
|
y: "бір жыл",
|
||||||
|
yy: "%d жыл"
|
||||||
|
},
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD.MM.YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=kk-js.js.map
|
59
dist/dist/locales/dayjs/km-js.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[2475],{
|
||||||
|
|
||||||
|
/***/ 4532:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "km",
|
||||||
|
weekdays: "អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍".split("_"),
|
||||||
|
months: "មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ".split("_"),
|
||||||
|
weekStart: 1,
|
||||||
|
weekdaysShort: "អា_ច_អ_ព_ព្រ_សុ_ស".split("_"),
|
||||||
|
monthsShort: "មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ".split("_"),
|
||||||
|
weekdaysMin: "អា_ច_អ_ព_ព្រ_សុ_ស".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "HH:mm",
|
||||||
|
LTS: "HH:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY HH:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY HH:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%sទៀត",
|
||||||
|
past: "%sមុន",
|
||||||
|
s: "ប៉ុន្មានវិនាទី",
|
||||||
|
m: "មួយនាទី",
|
||||||
|
mm: "%d នាទី",
|
||||||
|
h: "មួយម៉ោង",
|
||||||
|
hh: "%d ម៉ោង",
|
||||||
|
d: "មួយថ្ងៃ",
|
||||||
|
dd: "%d ថ្ងៃ",
|
||||||
|
M: "មួយខែ",
|
||||||
|
MM: "%d ខែ",
|
||||||
|
y: "មួយឆ្នាំ",
|
||||||
|
yy: "%d ឆ្នាំ"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=km-js.js.map
|
58
dist/dist/locales/dayjs/kn-js.js
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
(self["webpackChunkconverse_js"] = self["webpackChunkconverse_js"] || []).push([[7523],{
|
||||||
|
|
||||||
|
/***/ 1170:
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
!function (_, e) {
|
||||||
|
true ? module.exports = e(__webpack_require__(8570)) : 0;
|
||||||
|
}(this, function (_) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function e(_) {
|
||||||
|
return _ && "object" == typeof _ && "default" in _ ? _ : {
|
||||||
|
default: _
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
var t = e(_),
|
||||||
|
d = {
|
||||||
|
name: "kn",
|
||||||
|
weekdays: "ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ".split("_"),
|
||||||
|
months: "ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್".split("_"),
|
||||||
|
weekdaysShort: "ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ".split("_"),
|
||||||
|
monthsShort: "ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ".split("_"),
|
||||||
|
weekdaysMin: "ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ".split("_"),
|
||||||
|
ordinal: function (_) {
|
||||||
|
return _;
|
||||||
|
},
|
||||||
|
formats: {
|
||||||
|
LT: "A h:mm",
|
||||||
|
LTS: "A h:mm:ss",
|
||||||
|
L: "DD/MM/YYYY",
|
||||||
|
LL: "D MMMM YYYY",
|
||||||
|
LLL: "D MMMM YYYY, A h:mm",
|
||||||
|
LLLL: "dddd, D MMMM YYYY, A h:mm"
|
||||||
|
},
|
||||||
|
relativeTime: {
|
||||||
|
future: "%s ನಂತರ",
|
||||||
|
past: "%s ಹಿಂದೆ",
|
||||||
|
s: "ಕೆಲವು ಕ್ಷಣಗಳು",
|
||||||
|
m: "ಒಂದು ನಿಮಿಷ",
|
||||||
|
mm: "%d ನಿಮಿಷ",
|
||||||
|
h: "ಒಂದು ಗಂಟೆ",
|
||||||
|
hh: "%d ಗಂಟೆ",
|
||||||
|
d: "ಒಂದು ದಿನ",
|
||||||
|
dd: "%d ದಿನ",
|
||||||
|
M: "ಒಂದು ತಿಂಗಳು",
|
||||||
|
MM: "%d ತಿಂಗಳು",
|
||||||
|
y: "ಒಂದು ವರ್ಷ",
|
||||||
|
yy: "%d ವರ್ಷ"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return t.default.locale(d, null, !0), d;
|
||||||
|
});
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
}]);
|
||||||
|
//# sourceMappingURL=kn-js.js.map
|