diff --git a/README.md b/README.md
index 967600f67..72c2f0891 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ ProxSpace comes with 2 different executables .bat files.
ProxSpace will automatically download and update to the latest required packages. All tools will be contained within the ProxSpace folder, however **once ProxSpace is setup the ProxSpace folder must not be moved**. If you wish to have ProxSpace in a different directory, you need to reinstall it.
ProxSpace is based on:
- - msys2-x86_64-20210215
+ - msys2-x86_64-20210228
Following packages will be automatically download or updated:
- arm-none-eabi-gcc
diff --git a/msys2/dev/.dummy b/msys2/dev/.dummy
deleted file mode 100644
index e69de29bb..000000000
diff --git a/msys2/etc/pacman.d/mirrorlist.mingw32 b/msys2/etc/pacman.d/mirrorlist.mingw32
index 6fe318a57..18781b9de 100644
--- a/msys2/etc/pacman.d/mirrorlist.mingw32
+++ b/msys2/etc/pacman.d/mirrorlist.mingw32
@@ -3,7 +3,8 @@
##
## Primary
-## msys2.org
+Server = https://repo.msys2.org/mingw/i686/
+## Mirrors
Server = https://downloads.sourceforge.net/project/msys2/REPOS/MINGW/i686/
Server = https://www2.futureware.at/~nickoe/msys2-mirror/mingw/i686/
Server = https://mirror.yandex.ru/mirrors/msys2/mingw/i686/
diff --git a/msys2/etc/pacman.d/mirrorlist.mingw64 b/msys2/etc/pacman.d/mirrorlist.mingw64
index 17905b4a7..d73c737b4 100644
--- a/msys2/etc/pacman.d/mirrorlist.mingw64
+++ b/msys2/etc/pacman.d/mirrorlist.mingw64
@@ -3,7 +3,8 @@
##
## Primary
-## msys2.org
+Server = https://repo.msys2.org/mingw/x86_64/
+## Mirrors
Server = https://downloads.sourceforge.net/project/msys2/REPOS/MINGW/x86_64/
Server = https://www2.futureware.at/~nickoe/msys2-mirror/mingw/x86_64/
Server = https://mirror.yandex.ru/mirrors/msys2/mingw/x86_64/
diff --git a/msys2/etc/pacman.d/mirrorlist.msys b/msys2/etc/pacman.d/mirrorlist.msys
index 1961d46c5..3d7bff15f 100644
--- a/msys2/etc/pacman.d/mirrorlist.msys
+++ b/msys2/etc/pacman.d/mirrorlist.msys
@@ -3,7 +3,8 @@
##
## Primary
-## msys2.org
+Server = https://repo.msys2.org/msys/$arch/
+## Mirrors
Server = https://downloads.sourceforge.net/project/msys2/REPOS/MSYS2/$arch/
Server = https://www2.futureware.at/~nickoe/msys2-mirror/msys/$arch/
Server = https://mirror.yandex.ru/mirrors/msys2/msys/$arch/
diff --git a/msys2/etc/pki/ca-trust/extracted/java/cacerts b/msys2/etc/pki/ca-trust/extracted/java/cacerts
index f5e98123e..ddfc22c86 100644
Binary files a/msys2/etc/pki/ca-trust/extracted/java/cacerts and b/msys2/etc/pki/ca-trust/extracted/java/cacerts differ
diff --git a/msys2/opt/.dummy b/msys2/opt/.dummy
deleted file mode 100644
index e69de29bb..000000000
diff --git a/msys2/usr/bin/mintheme b/msys2/usr/bin/mintheme
index 5230fe491..b983950b6 100644
--- a/msys2/usr/bin/mintheme
+++ b/msys2/usr/bin/mintheme
@@ -47,6 +47,35 @@ help() {
echo "Note that the command-line option --configdir cannot be considered."
}
+terminaltype () {
+case "$BASH" in
+?*) # try simplified query as suggested by Brian Inglis:
+ # https://github.com/mintty/mintty/issues/776#issuecomment-475761566
+ read -s -dc -p $'\E[>c' da < /dev/tty
+ da=${da##$'\E'[>}
+ set - ${da//;/ }
+ ;;
+*) # other shells do not have flexible read and string operations
+ # so it's a bit more tricky...
+ test -t 0 && stty=`stty -g`
+ test -t 0 && stty raw -echo min 0 time 5
+
+ echo -n "[>c" > /dev/tty
+ da=`dd < /dev/tty 2> /dev/null`
+
+ test -t 0 && stty "$stty"
+ da=${da#??}
+ type="${da%%;*}"
+ rest="${da#*;}"
+ vers="${rest%%;*}"
+ rest="${rest#*;}"
+ rest="${rest%%c}"
+ set - $type $vers $rest
+;;
+esac
+echo $1
+}
+
showtheme() {
theme="$1"
export theme
@@ -194,6 +223,15 @@ showthemes() {
}
settheme() {
+ case `terminaltype` in
+ 83) # screen
+ pre='P'
+ post='\\'
+ ;;
+ *) pre=
+ post=
+ ;;
+ esac
sed \
-e 's/^\(ForegroundColour\)[ ]*=/10;/' \
-e 's/^\(BackgroundColour\)[ ]*=/11;/' \
@@ -215,7 +253,7 @@ settheme() {
-e 's/^\(BoldCyan\)[ ]*=/4;14;/' \
-e 's/^\(BoldWhite\)[ ]*=/4;15;/' \
-e 't ok' -e d -e ': ok' -e 's/[ ]//g' \
- -e "s/^/]/" -e "s/$//" "$1" |
+ -e "s/^/$pre]/" -e "s/$/$post/" "$1" |
tr -d '\012'
#]4;A;colour set ANSI colour A=0..15
#]10;colour set foreground colour
@@ -249,8 +287,24 @@ query() {
}
conftheme() {
- themefile=`cygpath -wa "$1"`
- for conffile in ~/.minttyrc ~/.config/mintty/config "$APPDATA/mintty/config" /etc/minttyrc
+ if [ `uname` = "Linux" ] && type wslpath 2> /dev/null 1>&2
+ then
+ themefile=`wslpath -ma "$1"`
+ elif type cygpath 2> /dev/null 1>&2
+ then
+ themefile=`cygpath -wa "$1"`
+ else
+ echo "cannot save to config file in this system environment"
+ exit
+ fi
+ if [ `uname` = "Linux" ] && type wslpath 1>&2
+ then
+ ls "$APPDATA/mintty/config"
+ elif type cygpath 1>&2
+ then
+ ls ~/.minttyrc ~/.config/mintty/config "$APPDATA/mintty/config" /etc/minttyrc
+ fi 2> /dev/null |
+ while read conffile
do if [ -w "$conffile" ]
then
newconf=/tmp/minttyrc.$$
diff --git a/msys2/usr/bin/mintty.exe b/msys2/usr/bin/mintty.exe
index 57d7258eb..d34f2d326 100644
Binary files a/msys2/usr/bin/mintty.exe and b/msys2/usr/bin/mintty.exe differ
diff --git a/msys2/usr/share/licenses/mintty/LICENSE.GPL b/msys2/usr/share/licenses/mintty/LICENSE.GPL
new file mode 100644
index 000000000..f288702d2
--- /dev/null
+++ b/msys2/usr/share/licenses/mintty/LICENSE.GPL
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is 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. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ 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.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ 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 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. Use with the GNU Affero General Public License.
+
+ 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 Affero 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 special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU 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 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 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 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.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ 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 GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
diff --git a/msys2/usr/share/licenses/mintty/LICENSE.bundling b/msys2/usr/share/licenses/mintty/LICENSE.bundling
new file mode 100644
index 000000000..83236e8c9
--- /dev/null
+++ b/msys2/usr/share/licenses/mintty/LICENSE.bundling
@@ -0,0 +1,24 @@
+GPL bundling license
+
+The applicable license is the GNU General Public License version 3 or later,
+amended with the following interpretation of unclear details:
+
+
+Bundling clause
+
+The GPL defines a "covered work" as "either the unmodified Program or
+a work based on the Program".
+
+Here we define "bundling" as delivering the "work" (mintty) together
+with other software and possibly configuring its installation, e.g.
+in order to provide a stand-alone deployment of text-based software
+in a window environment.
+
+(Note that the "aggregate" mentioned in GPL section 5 may be interpreted
+slightly differently.)
+
+License declaration:
+Inclusion of mintty in a bundle does not cause the GPL license to
+apply to the other parts of the bundle, with the exception of section 11,
+the patents clause.
+
diff --git a/msys2/usr/share/man/man1/mintty.1.gz b/msys2/usr/share/man/man1/mintty.1.gz
index e1bfd3113..abff0c3b9 100644
Binary files a/msys2/usr/share/man/man1/mintty.1.gz and b/msys2/usr/share/man/man1/mintty.1.gz differ
diff --git a/msys2/usr/share/mintty/emojis/getemojis b/msys2/usr/share/mintty/emojis/getemojis
index 4463eaadc..a449ef8a9 100644
--- a/msys2/usr/share/mintty/emojis/getemojis
+++ b/msys2/usr/share/mintty/emojis/getemojis
@@ -8,7 +8,7 @@ trace () {
case "$1" in
-sh) postproc=cat
shift;;
-*) postproc=sh;;
+*) postproc=bash;;
esac
case `basename "$PWD"` in
diff --git a/msys2/usr/share/mintty/lang/de.po b/msys2/usr/share/mintty/lang/de.po
index b99372573..09d1ddc22 100644
--- a/msys2/usr/share/mintty/lang/de.po
+++ b/msys2/usr/share/mintty/lang/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr ""
@@ -65,50 +65,50 @@ msgid "Error: Could not fork child daemon"
msgstr "Fehler: Konnte Daemon-Prozess nicht starten"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr "gedehnt"
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr "ausgerichtet"
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr "zentriert"
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr "voll"
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "Ignoriere unbekannte Option '%s'"
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "Interner Fehler: zu viele Optionen"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "Interner Fehler: zu viele Optionen/Kommentare"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "Ignoriere ungültigen Wert '%s' für Option '%s'"
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "Ignoriere Option '%s' – Wert fehlt"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -116,163 +116,163 @@ msgstr ""
"Konnte Option nicht in '%s' schreiben:\n"
"%s."
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ Keiner (Drucken deaktiviert) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ Default-Drucker ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– Keine –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Windows-Sprache @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* Locale-Umgebung *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= kfg. Text-Locale ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "einfacher Piep"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "kein Piep"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "Default-Piep"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "Fehler"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "Frage"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "Warnung"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "Hinweis"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ Keine (Systemklang) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ Keins ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "runtergeladen / Namen geben!"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "Konnte Web-Schema nicht laden"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "Kann Schema nicht schreiben"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "Kann Schema nicht speichern"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "Über..."
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "Sichern"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "Abbruch"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "Anwenden"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "Aha"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr ""
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "Aussehen"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "Aussehen im Terminal"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "Farben"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "&Vordergrund.."
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "&Hintergrund.."
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "&Zeiger.."
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "&Schema"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr ""
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "Sichern"
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "Transparenz"
@@ -280,258 +280,258 @@ msgstr "Transparenz"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "A&us"
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "&Klein"
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "&Mittel"
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "&Mittel"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "H&och"
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "&Glas"
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "Undurchsichtig wenn im &Fokus"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "U&nklar"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "Zeiger"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "&Linie"
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "&Block"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "Un&terstrich"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "Blinken&d"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "Schrift"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "Text und Schrift – Eigenschaften"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "Schrift"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "Schriftsch&nitt:"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "Schr.&grad:"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "Zeige &fett als Schrift"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "Zeige fett als F&arbe"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "Zeige fett"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "als Schrift"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "als Farbe"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr ""
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "Schriftglättung"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "&Default"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "&Keine"
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "&Teils"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "&Voll"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "&Blinken zulassen"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr ""
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "&Zeichensatz"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr ""
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "Tastatur"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "Tastatur-Eigenschaften"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "&Rücktaste sendet ^H"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "&Entf sendet DEL"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "Strg+LeftAlt ist Alt&Gr"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "AltGr ist auch Alt"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "Kürzel"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "K&opieren/Einfügen (Strg/Shift+Ins)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "&Menü und Vollbildschirm (Alt+Space/Enter)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "&Fenster wechseln (Strg+[Shift+]Tab)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "&Zoomen (Strg+plus/minus/zero)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "&Alt+Fn Kürzel"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "&Strg+Shift+letter Kürzel"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "Compose-Taste"
@@ -540,7 +540,7 @@ msgstr "Compose-Taste"
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr ""
@@ -549,7 +549,7 @@ msgstr ""
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr "S&trg"
@@ -558,112 +558,112 @@ msgstr "S&trg"
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr ""
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "Maus"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "Maus-Funktionen"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "K&opieren bei Auswahl"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "Kopieren mit &TABs"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "Kopieren als &Rich Text"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "Kopieren als &HTML"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "&Klick platziert in Kommandozeile"
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "Klick-Aktionen"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "Rechte Maustaste"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "&Einfügen"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "&Dehnen"
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "&Menü"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "Ein&gabe"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "Mittlere Maustaste"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "&Nichts"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "Anwendungs-Maus-Modus"
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "Default-Klickziel"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "&Fenster"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "&Anwendung"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "Modifizierer zum Ändern des Defaults"
@@ -671,183 +671,183 @@ msgstr "Modifizierer zum Ändern des Defaults"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr ""
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr ""
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr ""
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr "Auswahl"
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr "Auswahl und Clipboard"
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr ""
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr ""
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr ""
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr ""
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "Fenster"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr ""
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr ""
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "Fenster-Eigenschaften"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "Default-Größe"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "&Spalten"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "&Zeilen"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "&Aktuelle"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "Zur&ückroll-Zeilen"
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "Rollbalken"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "&Links"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "&Rechts"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "Modifizierer für Rollen"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "&Bild↑ und Bild↓ rollen ohne Modifizierer"
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "Sprache"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr ""
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "Terminal-Eigenschaften"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "&Typ"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "Rück&antwort"
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "Glocke"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► Abs&pielen"
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr "Klang"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "Blit&z"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "Blitz in Task&leiste"
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr ""
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "Drucker"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "Vor &Schließen nach laufenden Prozessen fragen"
@@ -1168,32 +1168,32 @@ msgstr "Sende Break"
msgid "User commands"
msgstr "Benutzer-Kommandos"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "Laufende Prozesse:"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "Trotzdem schließen?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "Versuche '--help' für mehr Information"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "Konnte Symbol nicht laden"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "Aufruf:"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr ""
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1260,51 +1260,51 @@ msgstr ""
" -V, --version Zeige nur Versions-Information\n"
"Siehe die Manual-Seite für weitere Optionen und Konfiguration.\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "WSL-Distribution '%s' nicht gefunden"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "Doppelte Option '%s'"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "Unbekannte Option '%s'"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "Option '%s' benötigt einen Parameter"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "Formatfehler in Positionsparameter '%s'"
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "Formatfehler in Größenparameter '%s'"
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "Formatfehler in Größen-/Positionsparameter '%s'"
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr "Mintty konnte nicht vom Aufrufer abkoppeln, startet trotzdem"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr "Nehme Default-Titel wegen ungültiger Zeichen im Programmnamen"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr ""
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr ""
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr ""
diff --git a/msys2/usr/share/mintty/lang/es.po b/msys2/usr/share/mintty/lang/es.po
index c41ce0624..86b84f870 100644
--- a/msys2/usr/share/mintty/lang/es.po
+++ b/msys2/usr/share/mintty/lang/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: 2019-01-29 16:00+0200\n"
"Last-Translator: JSJ \n"
"Language-Team: JSJ\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr "(Defecto)"
@@ -65,50 +65,50 @@ msgid "Error: Could not fork child daemon"
msgstr "Error: No se pudo lanzar demonio hijo"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr ""
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "Ignorando opción desconocida '%s'"
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "Error interno: demasiadas opciones"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "Error interno: demasiadas opciones/comentarios"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "Ignorando valor no válido '%s' de la opción '%s'"
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "Ignorando opción '%s' sin valor"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -116,163 +116,163 @@ msgstr ""
"No se pudieron guardar las opciones en '%s':\n"
"%s."
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ No (impresión desactivada) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ Impresora predeterminada ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– Ninguno –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Idioma de Windows @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* Entorno local *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= cfg. Texto Local ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "Beep simple"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "Sin sonido"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "Beep predeterminado"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "Fallo Crítico"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "Pregunta"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "Aviso"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "Importante"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ Ninguno (sonido del sistema) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ Ninguno ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "descargado / ¡renombra el tema!"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "No se pudo cargar el tema web"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "No se ha podido escribir en el fichero del tema"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "No se ha podido guardar el tema"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "Acerca de..."
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "Guardar"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "Cancelar"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "Aplicar"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "Aceptar"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr "Aceptar"
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "Visualización"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "Visualización de la consola"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "Colores"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "&Tinta..."
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "&Fondo..."
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "&Cursor..."
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "&Tema"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr "Diseñador de Temas"
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "Guardar"
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "Transparencia"
@@ -280,258 +280,258 @@ msgstr "Transparencia"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "&No"
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "&Baja"
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "&Med."
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "&Media"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "&Alta"
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "&Cristal"
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "&Opaca si seleccionada"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "&Desenfoque"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "Cursor"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "&Linea"
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "&Bloque"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "S&ubrayado"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "Parpa&deo"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "Texto"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "Propiedades del texto"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "Tipo letra"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "Es&tilo de letra:"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "&Tamaño:"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "&Negrita: tipo letra"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "Ne&grita: color"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "Negrita"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "tipo letra"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "color"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr ""
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "Suavizado"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "&Defecto"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "&Ninguna"
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "&Parcial"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "&Completo"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "&Parpadeo"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr "&Idioma"
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "&Juego caracteres"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr ""
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "Teclas"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "Opciones de teclado"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "&Borrado envía ^H"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "&Supr envía DEL"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "Ctrl+Alt Izq es AltGr"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "AltGr es también Alt"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "Atajos"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "Co&piar y pegar (Ctrl/Shift+Ins)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "&Menú y pantalla completa (Alt+Space/Enter)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "&Cambiar de ventana (Ctrl+[Shift+]Tab)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "&Ampliar (Ctrl+más/menos/cero)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "Atajos &Alt+Fn"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "Atajos &Ctrl+Shift+letra"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "Tecla compos."
@@ -540,7 +540,7 @@ msgstr "Tecla compos."
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr "&Shift"
@@ -549,7 +549,7 @@ msgstr "&Shift"
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr "&Ctrl"
@@ -558,112 +558,112 @@ msgstr "&Ctrl"
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr "&Alt"
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "Ratón"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "Funciones del ratón"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "Co&piar al seleccionar"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "Copiar con &TABs"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "Copiar &formato texto"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "Copiar formato &HTML"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "&Click coloca el cursor en línea"
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "Acciones del click"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "Botón derecho"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "&Pegar"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "E&xtend."
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "&Menú"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "Ente&r"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "Botón medio"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "&Nada"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "Modo aplicación"
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "Objetivo del click"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "&Ventana"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "&Aplicación"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "Modificador ignorar opc. predeterminada"
@@ -671,183 +671,183 @@ msgstr "Modificador ignorar opc. predeterminada"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr ""
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr ""
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr ""
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr "Seleccion"
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr "Seleccion y clipboard"
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr ""
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr ""
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr ""
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr ""
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "Ventana"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr ""
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr ""
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "Propiedades de ventana"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "Tamaño predeterminado"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "Colu&mnas"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "&Filas"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "&Tam. actual"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "Buffer &scroll"
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "Barra scroll"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "&Izquierda"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "&Derecha"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "Modificador para scroll"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "Scroll con &AvPag y RePag"
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "Idioma UI"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr "Consola"
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "Opciones de consola"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "&Tipo"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "&Respuesta"
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "Sonido"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► &Reprod."
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr "&WAV"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "&Parpadeo"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "Parpadeo &barra tareas"
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr "&Popup"
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "Impresora"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "Avisar sobre procesos en ejecución al &cerrar"
@@ -1168,32 +1168,32 @@ msgstr "Enviar Break"
msgid "User commands"
msgstr "Comandos especiales"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "Hay procesos ejecutándose:"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "¿Cerrar?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "Intenta usar '--help' para más información"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "No se pudo cargar icono"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "Uso:"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr "[OPCION]... [ PROGRAMA [ARG]... | - ]"
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1267,53 +1267,53 @@ msgstr ""
"Consultar el manual para más opciones de línea de comandos y "
"configuraciones.\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "No se ha encontrado la distribución WSL '%s'"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "Opción duplicada '%s'"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "Opción desconocida '%s'"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "Opción '%s' requiere un parámetro"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "Error de sintaxis en arg. posición '%s'"
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "Error de sintaxis en arg. tamaño '%s'"
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "Error de sintaxis en arg. tamaño y posición '%s'"
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr "Mintty no se pudo liberar, inciando de todas formas"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr ""
"Usando título predeterminado porque hay caracteres extraños en el nombre del "
"programa"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr ""
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr ""
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr ""
diff --git a/msys2/usr/share/mintty/lang/fr.po b/msys2/usr/share/mintty/lang/fr.po
index afa1c2854..073aa53ed 100644
--- a/msys2/usr/share/mintty/lang/fr.po
+++ b/msys2/usr/share/mintty/lang/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: 2020-01-13 10:49+0100\n"
"Last-Translator: Eric Lassauge \n"
"Language-Team: French \n"
@@ -18,7 +18,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 2.0.9\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr "(défaut)"
@@ -68,50 +68,50 @@ msgid "Error: Could not fork child daemon"
msgstr "Erreur : impossible de créer un process démon fils"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr "étendre"
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr "aligner"
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr "milieu"
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr "complet"
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "Option inconnue « %s » ignorée"
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "Erreur interne : trop d’options"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "Erreur interne : trop d’options/commentaires"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "Value inconnue ignorée « %s » pour l’option « %s »"
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "Option « %s » avec des valeurs manquantes ignorée"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -119,163 +119,163 @@ msgstr ""
"Impossible d’enregistrer les options dans « %s » :\n"
"%s."
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ Aucune (pas d’impression) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ Imprimante par défaut ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– Aucun –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Langue système @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* Locale environ. *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= Langue caractères ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "Bip simple"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "Pas de son"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "Bip par défaut"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "Arrêt critique"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "Question"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "Exclamation"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "Astérisque"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ Aucun (son système) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ Aucun ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "téléchargé / donnez-moi un nom !"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "Impossible de télécharger le thème"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "Impossible d’écrire le fichier de thème"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "Impossible d’enregistrer le fichier de thème"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "À propos …"
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "Enregistrer"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "Annuler"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "Appliquer"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "Bien vu"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr "Ok"
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "Apparence"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "Apparence"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "Couleurs"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "A&vant-plan…"
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "A&rrière-plan…"
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "&Curseur…"
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "&Thème"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr "Modèle de couleur"
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "Enreg."
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "Transparence"
@@ -283,258 +283,258 @@ msgstr "Transparence"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "A&rrêt"
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "&Basse"
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "&Moy."
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "&Moyen"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "&Haute"
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "&Verre"
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "Opa&que au focus"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "&Flou"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "Curseur"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "Lig&ne"
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "B&loc"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "&Tiret bas"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "Cli&gnotant"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "Texte"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "Taille et propriétés de la police de caractères"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "Police de caractères"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "&Style de police :"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "&Taille :"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "&Gras comme fonte"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "G&ras comme couleur"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "Gras"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "comme fonte"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "comme couleur"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr ""
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "Lissage des caractères"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "&Défaut"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "Aucu&n"
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "&Partiel"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "&Complet"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "C&lignotement"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr "&Langue"
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "&Jeu de caractères"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr "Émoticône"
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr ""
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "Clavier"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "Clavier"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "&Efface émet ^H"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "&Suppr émet DEL"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "Ctrl+AltGauche émet Alt&Gr"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "AltGr émet également Alt"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "Raccourcis"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "Cop&ier et coller (Ctrl/Maj+Inser)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "&Menu et plein écran (Alt+Espace/Entrée)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "&Change de fenêtre (Ctrl+[Maj+]Tab)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "&Zoom (Ctrl+plus/moins/zéro)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "Raccourcis &Alt+Fn"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "Raccourcis &Ctrl+Maj+lettre"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "Touche compose"
@@ -543,7 +543,7 @@ msgstr "Touche compose"
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr "&Maj"
@@ -552,7 +552,7 @@ msgstr "&Maj"
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr "&Ctrl"
@@ -561,112 +561,112 @@ msgstr "&Ctrl"
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr "&Alt"
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "Souris"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "Souris"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "Copier sur &sélection"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "Copier (texte) avec &tabulations"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "Copier en &Rich Text"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "Copier en &HTML"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "Cli&c positionne le curseur"
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "Actions du cllic"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "Bouton droit"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "&Coller"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "É&tendre"
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "&Menu"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "Ent&ée"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "Bouton du milieu"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "&Rien"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "Souris en mode appli."
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "&Cible du clic"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "&Fenêtre"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "A&pplication"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "Modifieur"
@@ -674,183 +674,183 @@ msgstr "Modifieur"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr ""
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr ""
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr ""
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr "Sélection"
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr "Sélection et presse-papier"
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr "Effacer la sélection sur saisie"
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr "Presse-papier"
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr "Enlever les espaces de la sélection"
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr "Activer la sélection"
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "Fenêtre"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr "Montrer la taille pendant la sélection (0..12)"
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr "Suspendre l'affichage pendant la sélection"
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "Fenêtre"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "Taille par défaut"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "Colon&nes"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "Li&gnes"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "Taille a&ctuelle"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "&Lignes défilement ar."
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "Barre de défilement"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "&Gauche"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "&Droite"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "Modifieur pour défilement"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "Défilement par &PgAr et PgAv "
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "Langue"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr "Terminal"
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "Terminal"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "&Type"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "&Retour"
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "Son"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► &Lire"
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr "&Fichier"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "&Flash"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "Flash &tâche"
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr ""
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "Imprimante"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "&Demander si process en cours à la fermeture"
@@ -1172,32 +1172,32 @@ msgid "User commands"
msgstr "Commandes utilisateur"
# msgstr "Arrêter le défilement"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "Processus en cours dans la session :"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "Forcer la fermeture ?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "Essayez « --help » pour plus d’information"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "Impossible de charger l’icône"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "Utilisation :"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr "[OPTION]... [ PROGRAMME [ARG]... | - ]"
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1272,53 +1272,53 @@ msgstr ""
"Voir la page de manuel pour les autres options de la ligne de commande et la "
"configuration.\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "Distribution WSL « %s » non trouvée"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "Option « %s » en double"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "Option inconnue « %s »"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "L’option « %s » requiert un argument"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "Erreur de syntaxe pour l’argument de position « %s »"
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "Erreur de syntaxe pour l’argument de taille « %s »"
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "Erreur de syntaxe pour l’argument de taille et position « %s »"
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr "Mintty ne peut se détacher de l’appelant, on démarre quand même"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr ""
"Utilisation du titre par défaut à cause d’un caractère invalide dans le nom "
"du programme"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr "◀"
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr "▶"
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr "X"
diff --git a/msys2/usr/share/mintty/lang/hr.po b/msys2/usr/share/mintty/lang/hr.po
index f312c7b15..c0bbb37a9 100644
--- a/msys2/usr/share/mintty/lang/hr.po
+++ b/msys2/usr/share/mintty/lang/hr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: 2020-05-07 13:12+0200\n"
"Last-Translator: Milo Ivir \n"
"Language-Team: \n"
@@ -20,7 +20,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr "(Standardno)"
@@ -69,50 +69,50 @@ msgid "Error: Could not fork child daemon"
msgstr "Greška: Nije bilo moguće napraviti kopiju podređenog demona"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr "rastegni"
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr "poravnaj"
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr "sredina"
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr "potpuno"
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "Zanemaruje se nepoznata opcija „%s”"
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "Interna greška: previše opcija"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "Interna greška: previše opcija/komentara"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "Zanemaruje se nevaljana vrijednost „%s” za opciju „%s”"
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "Zanemaruje se opcija „%s” s nedostajućom vrijednosti"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -120,163 +120,163 @@ msgstr ""
"Nije bilo moguće spremiti opcije u „%s”:\n"
"%s."
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ Bez (ispisivanje deaktivirano) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ Standardni pisač ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– Neodređeno –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Jezik Windowsa @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* Jezik okruženja *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= postavi jezik teksta ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "jednostavni zvučni signal"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "bez zvučnog signala"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "Standardni zvučni signal"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "Kritično zaustavljanje"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "Pitanje"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "Upozorenje"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "Važno"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ Bez (zvuk sustava) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ Bez ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "preuzeto / zadaj ime!"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "Nije bilo moguće učitati temu"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "Nije moguće zapisati datoteku teme"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "Nije moguće spremiti datoteku teme"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "Informacije …"
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "Spremi"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "Odustani"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "Primijeni"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "Vidim"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr "U redu"
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "Izgled"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "Izgled u terminalu"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "Boje"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "&Prednja …"
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "&Stražnja …"
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "Po&kazivač …"
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "&Tema"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr "Color Scheme Designer"
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "Spremi"
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "Prozirnost"
@@ -284,258 +284,258 @@ msgstr "Prozirnost"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "&Isklj."
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "&Niska"
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "&Srednja"
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "&Srednja"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "&Visoka"
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "Sta&klo"
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "&Neprozirno pri fokusu"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "&Zamuti"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "Pokazivač"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "&Crta"
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "Pravo&kutnik"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "&Podvlaka"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "&Treperenje"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "Tekst"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "Svojstva teksta i fonta"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "Font"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "St&il fonta:"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "&Veličina:"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "Pri&kaži podebljano kao font"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "Prikaži pode&bljano kao boju"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "Prikaži podebljano"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "kao font"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "kao boja"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr "xterm"
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "Zaglađivanje fonta"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "&Standardno"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "&Bez"
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "&Djelomično"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "&Potpuno"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "Dozvoli &treperenje"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr "&Jezik"
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "&Skup znakova"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr "Emoji znakovi"
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr "Stil"
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr "Smještaj"
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "Tipke"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "Funkcije tipki"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "&Pozadine šalje ^H"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "&Brisanje šalje DEL"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "Ctrl+LijeviAlt je Alt&Gr"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "AltGr je također Alt"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "Prečaci"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "&Kopiraj i umetni (Ctrl/Shift+umetni)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "&Izbornik i cjeloekranski prikaz (Alt+razmaknica/Enter)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "&Mijenjanje prozora (Ctrl+[Shift+]Tab)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "&Zumiranje (Ctrl+plus/minus/nula)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "&Alt+Fn prečaci"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "&Ctrl+Shift+slovo prečaci"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "Modifikator"
@@ -544,7 +544,7 @@ msgstr "Modifikator"
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr "&Shift"
@@ -553,7 +553,7 @@ msgstr "&Shift"
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr "&Ctrl"
@@ -562,112 +562,112 @@ msgstr "&Ctrl"
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr "&Alt"
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "Miš"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "Funkcije miša"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "&Kopiraj pri odabiru"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "Kopiraj &TABs"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "Kopi&raj kao formatirani tekst"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "Kopiraj kao &HTML"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "&Pritiskanje miša postavlja kursor u naredbenom retku"
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "Radnje pritiskom miša"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "Desna tipka miša"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "&Umetni"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "&Proširi"
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "&Izbornik"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "Ente&r"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "Srednja tipka miša"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "&Ništa"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "Modus miša u programu"
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "Standardni cilj pritiskanja miša"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "Pro&zor"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "&Program"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "Modifikator za zaobilaženje standarda"
@@ -675,183 +675,183 @@ msgstr "Modifikator za zaobilaženje standarda"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr "&Win"
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr "&Sup"
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr "&Hyp"
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr "Odabir"
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr "Odabir i međuspremnik"
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr "Ukloni odabir pri unosu"
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr "Međuspremnik"
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr "Ukloni razmak iz odabira"
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr "Dozvoli postavljanje odabira"
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "Prozor"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr "Prikaži veličinu tijekom označavanja (0 … 12)"
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr "Odgodi rezultat tijekom označavanja"
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "Svojstva prozora"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "Standardna veličina"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "&Stupaca"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "&Redaka"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "Trenutačna veličina"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "Redaka za klizanje unatrag"
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "Traka klizača"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "&Lijevo"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "&Desno"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "Modifikator za klizanje"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "&PgUp↑ i PgDn↓ pomicanje bez modifikatora"
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "Jezik sučelja"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr "Terminal"
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "Funkcije terminala"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "&Vrsta"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "&Odgovor"
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "Zvono"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► &Sviraj"
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr "&Zvuk"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "&Zabljesni"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "&Istakni u programskoj traci"
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr "&Skočni prozor"
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "Pisač"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "Upozori o aktivnim procesima pri &zatvaranju"
@@ -1172,32 +1172,32 @@ msgstr "Pošalji prekid retka"
msgid "User commands"
msgstr "Korisničke naredbe"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "U sesiji se izvode procesi:"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "Svejedno zatvoriti?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "Koristi „--help” za daljnje informacije"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "Nije bilo moguće učitati ikonu"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "Upotreba:"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr "[OPCIJA]… [ PROGRAM [PARAMETAR]… | - ]"
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1272,52 +1272,52 @@ msgstr ""
" -V, --verzija Ispisuje podatke o verziji i izlazi\n"
"Pogledaj priručnik za dodatne opcije u naredbenom retku i konfiguraciju.\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "WSL distribucija „%s” nije pronađena"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "Dupliciraj opciju „%s”"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "Nepoznata opcija „%s”"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "Opcija „%s” zahtijeva argument"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "Greška u sintaksi za argument položaja „%s”"
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "Greška u sintaksi za argument veličine „%s”"
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "Greška u sintaksi za argument geometrije „%s”"
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr "Mintty se nije mogao odvojiti od pozivatelja, svejedno se pokreče"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr ""
"Koristi se standardni naslov, jer ime programa sadrži nevaljane znakove"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr "◀"
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr "▶"
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr "X"
diff --git a/msys2/usr/share/mintty/lang/ja.po b/msys2/usr/share/mintty/lang/ja.po
index 5c25ac5f9..d6f049c9b 100644
--- a/msys2/usr/share/mintty/lang/ja.po
+++ b/msys2/usr/share/mintty/lang/ja.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: 2017-02-27 18:11+0900\n"
"Last-Translator: Ken Takata \n"
"Language-Team: \n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr "(既定)"
@@ -64,50 +64,50 @@ msgid "Error: Could not fork child daemon"
msgstr "エラー: 子デーモンをforkできません"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr "伸張"
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr "整列"
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr "中央"
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr "全体"
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "不明なオプション '%s' を無視します"
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "内部エラー: オプションが多すぎます"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "内部エラー: オプション/コメントが多すぎます"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "オプション '%2$s' 用の不正な値 '%1$s' を無視します"
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "値のないオプション '%s' を無視します"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -115,163 +115,163 @@ msgstr ""
"オプションを '%s' に保存できません:\n"
"%s。"
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ なし (印刷できません) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ 既定のプリンター ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– なし –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Windowsの言語 @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* ロケール環境変数 *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= テキストロケール設定 ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "単純なビープ"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "ビープなし"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "既定のビープ"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "致命的停止"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "クエスチョン"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "エクスクラメーション"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "アスタリスク"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ なし (システムのサウンド) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ なし ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "ダウンロード完了 / 名前を指定してください!"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "webテーマをロードできません"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "テーマファイルを書き込めません"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "テーマファイルを保存できません"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "About..."
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "保存"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "キャンセル"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "適用"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "了解"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr "OK"
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "外観"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "端末の外観"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "色"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "前景色(&F)..."
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "背景色(&B)..."
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "カーソル(&C)..."
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "テーマ(&T)"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr "カラースキームデザイナー"
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "保存"
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "透明度"
@@ -279,258 +279,258 @@ msgstr "透明度"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "オフ(&O)"
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "低(&L)"
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "中(&M)"
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "中間(&M)"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "高(&H)"
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "Glass(&S)"
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "フォーカス時は不透明(&Q)"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "ぼかし(&R)"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "カーソル"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "線(&N)"
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "四角(&K)"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "下線(&U)"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "点滅(&G)"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "テキスト"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "テキストとフォントの設定"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "フォント"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "フォントスタイル(&Y):"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "サイズ(&S):"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "ボールドフォントを使用(&W)"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "ボールドをカラー表示(&B)"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "ボールド"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "フォントを使用"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "カラー表示"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr ""
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "フォントスムージング"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "既定(&D)"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "なし(&N)"
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "部分的(&P)"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "完全(&F)"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "点滅を許可(&A)"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr "ロケール(&L)"
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "文字セット(&C)"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr "絵文字"
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr "スタイル"
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr "配置"
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "キー"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "キーボード設定"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "BSは^Hを送信(&B)"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "DeleteはDELを送信(&D)"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "Ctrl+左AltはAltGr(&G)"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "AltGrをAltとしても扱う"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "ショートカット"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "コピー&&ペースト(&Y) (Ctrl/Shift+Ins)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "メニューと全画面(&M) (Alt+Space/Enter)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "ウィンドウの切り替え(&S) (Ctrl+[Shift+]Tab)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "ズーム(&Z) (Ctrl+plus/minus/zero)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "Alt+Fnショートカット(&A)"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "Ctrl+Shift+文字 ショートカット(&C)"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "組み合わせキー"
@@ -539,7 +539,7 @@ msgstr "組み合わせキー"
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr "Shift(&S)"
@@ -548,7 +548,7 @@ msgstr "Shift(&S)"
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr "Ctrl(&C)"
@@ -557,112 +557,112 @@ msgstr "Ctrl(&C)"
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr "Alt(&A)"
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "マウス"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "マウス設定"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "選択時にコピー(&Y)"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "タブ付きで(テキストとして)コピー"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "リッチテキストとしてコピー(&R)"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "HTMLとしてコピー(&H)"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "クリックでコマンドラインカーソルを移動(&K)"
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "クリック動作"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "右マウスボタン"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "ペースト(&P)"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "拡張(&X)"
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "メニュー(&M)"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "Enter(&R)"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "中マウスボタン"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "なし(&N)"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "アプリケーションマウスモード"
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "既定のクリック先"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "ウィンドウ(&W)"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "アプリケーション(&A)"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "既定を上書きするための修飾子"
@@ -670,183 +670,183 @@ msgstr "既定を上書きするための修飾子"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr "Win(&W)"
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr "Sup(&S)"
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr "Hyp(&H)"
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr "選択"
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr "選択とクリップボード"
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr "入力時に選択を解除する"
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr "クリップボード"
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr "選択から空白を取り除く"
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr "選択の設定を許可する"
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "ウィンドウ"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr "選択中にサイズを表示する (0..12)"
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr "選択中に一時停止する"
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "ウィンドウ設定"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "既定のサイズ"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "桁(&M)"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "行(&W)"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "現在のサイズ(&U)"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "スクロール行数(&B)"
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "スクロールバー"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "左(&L)"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "右(&R)"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "スクロール用修飾子"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "修飾子なしでPgUpとPgDnでスクロール(&P)"
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "UI言語"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr "端末"
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "端末設定"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "タイプ(&T)"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "応答(&A)"
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "ベル"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► 再生(&P)"
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr "音声(&S)"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "点滅(&F)"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "タスクバーで強調表示(&H)"
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr "ポップアップ(&P)"
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "プリンター"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "クローズ時に動作中のプロセスがあると尋ねる(&C)"
@@ -1167,32 +1167,32 @@ msgstr "Breakを送信"
msgid "User commands"
msgstr "ユーザーコマンド"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "セッションでプロセスが動作中です:"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "構わず閉じますか?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "さらなる情報には '--help' を試してください"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "アイコンをロードできません"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "使用法:"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr "[オプション]... [ プログラム [引数]... | - ]"
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1261,51 +1261,51 @@ msgstr ""
"さらなるコマンドラインオプションと設定についてはマニュアルページを参照してく"
"ださい。\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "WSL ディストリビューション '%s' が見つかりません"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "オプションが重複しています '%s'"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "未知のオプションです '%s'"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "オプション '%s' は引数が必要です"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "position引数に文法エラーがあります '%s'"
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "size引数に文法エラーがあります '%s'"
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "geometry引数に文法エラーがあります '%s'"
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr "minttyは呼び出し元からデタッチできません、とにかく起動します"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr "プログラム名に不正な文字があるため既定のタイトルを使用します"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr "◀"
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr "▶"
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr "X"
diff --git a/msys2/usr/share/mintty/lang/messages.pot b/msys2/usr/share/mintty/lang/messages.pot
index 05d2e24fb..d5df34e2d 100644
--- a/msys2/usr/share/mintty/lang/messages.pot
+++ b/msys2/usr/share/mintty/lang/messages.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 23:00+0100\n"
+"POT-Creation-Date: 2021-02-17 14:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr ""
@@ -65,212 +65,212 @@ msgid "Error: Could not fork child daemon"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr ""
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr ""
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr ""
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr ""
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr ""
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr ""
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
msgstr ""
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr ""
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr ""
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr ""
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr ""
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr ""
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr ""
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr ""
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr ""
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr ""
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr ""
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr ""
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr ""
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr ""
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr ""
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr ""
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr ""
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr ""
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr ""
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr ""
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr ""
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr ""
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr ""
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr ""
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr ""
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr ""
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr ""
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr ""
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr ""
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr ""
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr ""
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr ""
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr ""
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr ""
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr ""
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr ""
@@ -278,258 +278,258 @@ msgstr ""
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr ""
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr ""
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr ""
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr ""
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr ""
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr ""
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr ""
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr ""
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr ""
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr ""
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr ""
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr ""
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr ""
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr ""
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr ""
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr ""
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr ""
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr ""
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr ""
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr ""
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr ""
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr ""
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr ""
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr ""
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr ""
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr ""
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr ""
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr ""
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr ""
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr ""
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr ""
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr ""
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr ""
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr ""
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr ""
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr ""
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr ""
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr ""
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr ""
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr ""
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr ""
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr ""
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr ""
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr ""
@@ -538,7 +538,7 @@ msgstr ""
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr ""
@@ -547,7 +547,7 @@ msgstr ""
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr ""
@@ -556,112 +556,112 @@ msgstr ""
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr ""
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr ""
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr ""
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr ""
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr ""
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr ""
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr ""
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr ""
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr ""
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr ""
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr ""
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr ""
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr ""
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr ""
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr ""
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr ""
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr ""
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr ""
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr ""
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr ""
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr ""
@@ -669,183 +669,183 @@ msgstr ""
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr ""
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr ""
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr ""
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr ""
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr ""
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr ""
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr ""
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr ""
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr ""
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr ""
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr ""
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr ""
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr ""
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr ""
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr ""
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr ""
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr ""
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr ""
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr ""
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr ""
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr ""
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr ""
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr ""
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr ""
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr ""
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr ""
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr ""
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr ""
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr ""
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr ""
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr ""
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr ""
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr ""
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr ""
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr ""
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr ""
@@ -1166,32 +1166,32 @@ msgstr ""
msgid "User commands"
msgstr ""
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr ""
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr ""
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr ""
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr ""
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr ""
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr ""
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1224,51 +1224,51 @@ msgid ""
"See manual page for further command line options and configuration.\n"
msgstr ""
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr ""
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr ""
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr ""
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr ""
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr ""
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr ""
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr ""
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr ""
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr ""
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr ""
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr ""
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr ""
diff --git a/msys2/usr/share/mintty/lang/nb.po b/msys2/usr/share/mintty/lang/nb.po
index 5888199bf..6d33285ca 100644
--- a/msys2/usr/share/mintty/lang/nb.po
+++ b/msys2/usr/share/mintty/lang/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: 2019-09-06 18:08+0200\n"
"Last-Translator: Imre Kristoffer Eilertsen \n"
"Language-Team: \n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Poedit 2.2.3\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr "(Standard)"
@@ -66,50 +66,50 @@ msgid "Error: Could not fork child daemon"
msgstr "Feil: Klarte ikke å adskille underdaemonen"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr ""
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "Ignorerer det ukjente alternativet '%s'"
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "Intern feil: For mange innstillinger"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "Intern feil: For mange innstillinger/kommentarer"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "Ignorerer den ukjente verdien '%s' for '%s'-innstillingen"
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "Ignorerer '%s'-innstillingen som mangler en verdi"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -117,163 +117,163 @@ msgstr ""
"Klarte ikke å lagre innstillingene til '%s':\n"
"%s."
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ Ingen (utskriving er skrudd av) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ Standardskriver ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– Ingen –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Windows-språk @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* Regionsområde *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= Oppsatt tekstregion ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "enkelt bipp"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "ingen bipp"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "Standardbipp"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "Kritisk stopp"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "Spørsmål"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "Utropstegn"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "Asterisk"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ Ingen (systemlyd) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ Ingen ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "lastet ned / gi meg et navn!"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "Klarte ikke å laste ned nett-temaet"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "Klarte ikke å skrive til temafilen"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "Klarte ikke å lagre temafilen"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "Om …"
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "Lagre"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "Avbrytt"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "Bruk"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "Jeg skjønner"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr "OK"
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "Utseende"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "Utseende i terminalen"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "Farger"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "&Forgrunn …"
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "&Bakgrunn …"
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "&Musepeker …"
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "&Tema"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr "Fargepalettutformer"
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "Lagre"
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "Gjennomsiktighet"
@@ -281,258 +281,258 @@ msgstr "Gjennomsiktighet"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "&Av"
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "&Lav"
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "&Mid."
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "&Middels"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "&Høy"
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "Gla&ss"
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "Fast&het ved fokus"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "Ukla&rhet"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "Musepeker"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "Li&nje"
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "Blok&kmerking"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "&Understreking"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "Blinkin&g"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "Tekst"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "Tekst- og skrifttypeegenskaper"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "Skrift"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "Skrifttypest&il:"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "&Størrelse:"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "Vi&s fet tekst som skrifttype"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "Vis &fet tekst som farge"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "Vis fet tekst"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "som skrifttype"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "som farge"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr ""
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "Skrifttypeutjevning"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "&Standard"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "&Ingen"
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "&Delvis"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "&Full"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "&Tillat blinking"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr "&Region"
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "&Tegnsett"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr "Emojier"
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr "Stil"
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr "Plassering"
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "Nøkler"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "Tastaturegenskaper"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "&Bakoverpil sender ^H"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "&Delete sender DEL"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "Ctrl+LeftAlt er Alt&Gr"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "AltGr er også Alt"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "Snarveier"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "Kop&ier og lim inn (Ctrl/Shift+Ins)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "&Meny og fullskjerm (Alt+Space/Enter)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "&Bytt vindu (Ctrl+[Shift+]Tab)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "&Forstørr (Ctrl+pluss/minus/null)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "&Alt+Fn-snarveier"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "&Ctrl+Shift+bokstav-snarveier"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "Compose-tast"
@@ -541,7 +541,7 @@ msgstr "Compose-tast"
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr "&Shift"
@@ -550,7 +550,7 @@ msgstr "&Shift"
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr "&Ctrl"
@@ -559,112 +559,112 @@ msgstr "&Ctrl"
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr "&Alt"
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "Mus"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "Musefunksjoner"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "Kop&ier ved velging"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "Kopier som &TABs"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "Kopier som &rik tekst"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "Kopier som &HTML"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "Kli&kk plasserer ledetekstmusepekeren"
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "Klikkhandlinger"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "Høyre museknapp"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "&Lim inn"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "U&tvid"
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "&Meny"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "Ente&r"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "Midtre museknapp"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "&Ingenting"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "Programmusemodus"
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "Standard klikkmålpunkt"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "&Vindu"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "&Program"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "Modifikator for å overstyre standardene"
@@ -672,183 +672,183 @@ msgstr "Modifikator for å overstyre standardene"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr "&Win"
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr "&Sup"
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr "&Hyp"
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr "Markering"
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr "Utvalg og utklippstavle"
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr "Tøm utvalget ved inndata"
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr "Utklippstavle"
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr "Trim vekk mellomrom fra utvalg"
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr "Tillat å fastsette utvalg"
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "Vindu"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr "Vis størrelsen under utvelging (0..12)"
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr "Suspender utdata ved utvelging"
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "Vindusegenskaper"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "Standardstørrelse"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "Kolo&nner"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "Ra&der"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "Nå&værende størrelse"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "Antall skrolle&historikklinjer"
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "Rullefelt"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "&Venstre"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "&Høyre"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "Modifikator for skrolling"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "&PgUp- og PgDn-skrolling uten modifikator"
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "Grensesnittsspråk"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr "Terminal"
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "Terminalegenskaper"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "&Type"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "&Tilbakemelding"
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "Bjelle"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► &Ring"
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr "&Vink"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "&Blink"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "&Fremhev i verktøylinjen"
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr "&Oppsprett"
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "Skriver"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "Spør om pågående prosesser ved &avslutning"
@@ -1169,32 +1169,32 @@ msgstr "Send «Break»"
msgid "User commands"
msgstr "Brukerkommandoer"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "Prosesser som pågår i denne økten:"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "Vil du lukke det likevel?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "Prøv med '--help' for mere informasjon"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "Klarte ikke å laste inn ikonet"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "Bruk:"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr "[OPTION]... [ PROGRAM [ARG]... | - ]"
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1265,52 +1265,52 @@ msgstr ""
" -V, --version Skriv versjonsinformasjon og avslutt\n"
"Se bruksanvisningssiden for ytterligere ledetekstinnstillinger og oppsett.\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "WSL-distribusjonen '%s' ble ikke funnet"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "Duplikatinnstilling '%s'"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "Ukjent alternativ '%s'"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "'%s'-innstillingen krever et argument"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "Syntaksfeil i posisjonsargumentet '%s'"
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "Syntaksfeil i størrelsesargumentet '%s'"
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "Syntaksfeil i geometriargumentet '%s'"
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr ""
"Mintty klarte ikke å løsrive seg fra påkalleren, men starter opp likevel"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr "Benytter standardtittelen på grunn av ugyldige tegn i programnavnet"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr "◀"
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr "▶"
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr "X"
diff --git a/msys2/usr/share/mintty/lang/pt_BR.po b/msys2/usr/share/mintty/lang/pt_BR.po
index d4d14c444..95f0b9937 100644
--- a/msys2/usr/share/mintty/lang/pt_BR.po
+++ b/msys2/usr/share/mintty/lang/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: 2018-06-24 00:19-0300\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Poedit 2.0.6\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr "(Padrão)"
@@ -67,50 +67,50 @@ msgid "Error: Could not fork child daemon"
msgstr "Erro: Não foi possível bifurcar o daemon filho"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr ""
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "Ignorando opção desconhecida '%s'"
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "Erro interno: opções em excesso"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "Erro interno: opções/comentários em excesso"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "Ignorando valor inválido '%s' para a opção '%s'"
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "Ignorando opção '%s' com valor faltando"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -118,163 +118,163 @@ msgstr ""
"Não foi possível salvar as opções em '%s':\n"
"%s."
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ Nenhuma (impressão desativada) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ Impressora padrão ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– Nenhuma –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Idioma do Windows @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* Variável amb. de locale *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= Cfg. de locale em Texto ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "Bipe simples"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "Sem bipe"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "Bipe padrão"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "Parada crítica"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "Pergunta"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "Exclamação"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "Asterisco"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ Nenhum (som do sistema) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ Nenhum ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "baixado / me dê um nome!"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "Não foi possível carregar o tema web"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "Não é possível gravar o tema web"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "Não é possível salvar o tema web"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "Sobre..."
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "Salvar"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "Cancelar"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "Aplicar"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "Entendi"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr "OK"
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "Aparência"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "Aparência no terminal"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "Cores"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "&Prim. plano..."
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "&Fundo..."
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "&Cursor..."
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "&Tema"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr "Criar esquema de cores"
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "Salvar"
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "Transparência"
@@ -282,258 +282,258 @@ msgstr "Transparência"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "&Desat."
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "&Baixa"
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "&Méd."
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "&Média"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "&Alta"
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "&Vidro"
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "&Opaca quando em primeiro plano"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "&Desfoque"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "Cursor"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "L&inha"
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "Blo&co"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "&Sublinhado"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "&Piscar"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "Texto"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "Propriedades de texto e fonte"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "Fonte"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "E&stilo de fonte:"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "&Tamanho:"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "Most. n&eg. como fonte"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "Most. ne&g. como cor"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "Most. negrita"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "como fonte"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "como cor"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr ""
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "Suavização da fonte"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "&Padrão"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "&Desat."
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "&Parcial"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "&Total"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "Pe&rmitir piscar"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr "&Locale"
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "&Conjunto de caracteres"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr ""
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "Teclado"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "Funcionalidades do teclado"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "&Backspace envia ^H"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "&Delete envia DEL"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "Ctrl+AltEsq. vira Alt&Gr"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "AltGr vira também Alt"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "Atalhos"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "C&opiar e colar (Ctrl/Shift+Ins)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "&Menu e tela cheia (Alt+Space/Enter)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "&Trocar janela (Ctrl+[Shift+]Tab)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "&Zoom (Ctrl+mais/menos/zero)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "Atalhos &Alt+Fn"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "Atalhos &Ctrl+Shift+letra"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "Tecla de composição"
@@ -542,7 +542,7 @@ msgstr "Tecla de composição"
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr "&Shift"
@@ -551,7 +551,7 @@ msgstr "&Shift"
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr "Ct&rl"
@@ -560,112 +560,112 @@ msgstr "Ct&rl"
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr "A<"
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "Mouse"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "Funções do mouse"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "&Copiar ao selecionar"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "Copiar com &TABs"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "Cop. como texto &rico"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "Copiar como &HTML"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "Cliques &posicionam o cursor na linha de com."
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "Ações de clique"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "Botão direito do mouse"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "C&olar"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "E&stender"
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "&Menu"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "Ente&r"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "Botão do meio do mouse"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "&Nada"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "Modo de mouse de aplicativo"
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "Alvo padrão do clique"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "&Janela"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "&Aplicativo"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "Modificador para sobrescrever o padrão"
@@ -673,183 +673,183 @@ msgstr "Modificador para sobrescrever o padrão"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr ""
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr ""
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr ""
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr ""
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr ""
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr ""
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr ""
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr ""
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr ""
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "Janela"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr ""
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr ""
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "Propriedades da janela"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "Tamanho padrão"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "Col&unas"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "&Linhas"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "&Tam. atual"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "Linhas de &rol."
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "Barra de rolagem"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "&Esquerda"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "&Direita"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "Modificador para rolagem"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "&PgUp e PgDn rolam sem modificador"
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "Idioma da interface"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr "Terminal"
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "Recursos do terminal"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "&Tipo"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "&Answerback"
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "Aviso"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► T&ocar"
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr "&Wave"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "&Piscar"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "&Destac. na bar. de tar."
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr "&Saltar"
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "Impressora"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "Confirmar &fechar com processos ativos"
@@ -1170,32 +1170,32 @@ msgstr "Enviar break"
msgid "User commands"
msgstr "Comandos do usuário"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "Processos rodando na sessão:"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "Fechar mesmo assim?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "Tente '--help' para mais informações"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "Não foi possível carregar o ícone"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "Uso:"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr "[OPÇÃO]... [ PROGRAMA [ARG]... | - ]"
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1268,51 +1268,51 @@ msgstr ""
"Veja a página do manual para mais opções de linha de comando e "
"configurações.\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "Distribuição WSL '%s' não encontrada"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "Opção repetida: '%s'"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "Opção desconhecida: '%s'"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "A opção '%s' precisa de um argumento"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "Erro de sintaxe no argumento de posição '%s'"
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "Erro de sintaxe no argumento de tamanho '%s'"
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "Erro de sintaxe no argumento de geometria '%s'"
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr "O Mintty não pôde se desanexar do chamador, iniciando mesmo assim"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr "Usando título padrão devido a caracteres inválidos no nome do programa"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr "◀"
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr "▶"
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr "X"
diff --git a/msys2/usr/share/mintty/lang/ru.po b/msys2/usr/share/mintty/lang/ru.po
index 989e21bb2..8ea70300f 100644
--- a/msys2/usr/share/mintty/lang/ru.po
+++ b/msys2/usr/share/mintty/lang/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: 2016-12-19 04:18+0500\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr "(по умолчанию)"
@@ -65,50 +65,50 @@ msgid "Error: Could not fork child daemon"
msgstr "Ошибка: не удалось запустить фоновый дочерний процесс"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr ""
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr ""
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "Игнорирование неизвестного параметра '%s'"
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "Внутренняя ошибка: слишком много параметров"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "Внутренняя ошибка: слишком много параметров/комментариев"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "Игнорирование неправильного значения '%s' для параметра '%s'"
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "Игнорирование параметра '%s' отсутствует значение"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -116,163 +116,163 @@ msgstr ""
"Не удалось сохранить параметр '%s':\n"
"%s."
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ Нет (печать выключена) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ Принтер по умолчанию ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– Отсутствует –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Из Windows @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* Из окружения *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= Файл конфигурации ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "Простой сигнал"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "Без звука"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "Стандартный звук"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "Критическая ошибка"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "Вопрос"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "Восклицание"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "Звездочка"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ Нет (системный звук) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ Отсутствует ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "загружено / сохранить как"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "Не удалось загрузить веб-тему"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "Невозможно записать файл темы"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "Не удается сохранить файл темы"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "О нас"
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "Сохранить"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "Отмена"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "Применить"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "Хорошо"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr ""
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "Вид"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "Внешний вид"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "Цвета"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "Текст..."
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "Фон..."
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "Каретка..."
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "Тема"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr "Онлайн генератор тем"
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "В набор"
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "Прозрачность"
@@ -280,258 +280,258 @@ msgstr "Прозрачность"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "Нет"
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "Низ."
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "Сред."
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "Средняя"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "Выс."
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "Проз."
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "Непрозрачно при фокусировке"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "Размытие"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "Каретка"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "Слеш "
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "Блок"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "Подчеркивание"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "Мерцание"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "Текст"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "Текст и шрифт"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "Шрифт"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "Начертание:"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "Размер:"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "Разреш. жир. текст"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "Разреш. цвет. текст"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "Разреш. текст"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "жир. текст"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "цвет. текст"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr ""
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "Сглаживание шрифта"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "Система"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "Нет"
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "Среднее"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "Полное"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "Разреш. мерцание"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr "Формат"
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "Набор символов"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr ""
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr ""
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "Клавиатура"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "Клавиатура"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "&Backarrow как ^H"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "DEL удаляет слева"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "Ctrl+LeftAlt заменяет Alt&Gr"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "AltGr заменяет или Alt"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "Клавиши быстрого доступа"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "Копировать и Вставить (Ctrl/Shift+Ins)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "Меню и полный экран (Alt+Space/Enter)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "Переключить окно (Ctrl+[Shift+]Tab)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "Масштаб (Ctrl+plus/minus/zero)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "&Alt+F(n) сочетания"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "&Ctrl+Shift+(n) сочетания"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "Модификатор клавиатуры"
@@ -540,7 +540,7 @@ msgstr "Модификатор клавиатуры"
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr ""
@@ -549,7 +549,7 @@ msgstr ""
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr ""
@@ -558,112 +558,112 @@ msgstr ""
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr ""
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "Мышь"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "Свойства мыши"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "Копир. выделеное"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "Копировать &TABs"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "Копир. как таблицу"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "Копировать как HTML"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "Устанавливать каретку мышкой"
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "Действия при нажатии кнопок"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "Правая кнопка мыши"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "Вставка"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "Выбрать"
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "Меню"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "Запуск"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "Средняя кнопка мыши"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "Нет"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "Режим отслеживания мыши"
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "События мыши передаются"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "&Window"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "Приложению"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "Модификатор отмены захвата мыши"
@@ -671,185 +671,185 @@ msgstr "Модификатор отмены захвата мыши"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr ""
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr ""
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr ""
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr ""
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr ""
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr ""
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr ""
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr ""
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr ""
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "Окно"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr ""
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr ""
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "Свойства окна"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "Размер по умолчанию"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "Колонны"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "Ряды"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "Текущие"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "Буфер строк"
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "Полоса прокрутки"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "Слева"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "Справа"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "Модификатор прокрутки"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "&PgUp и PgDn прокрутка без модификатора"
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "Язык интерфейса"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr "Консоль"
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "Свойства консоли"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "Тип"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "Автоответ "
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "Оповещения"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► Воспр."
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr "Звук"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "Вспл."
# msgstr "Всплывающее"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "Подсветка"
# msgstr "Статус в панели"
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr "Всплывающее"
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "Принтер"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "При закрытии подсказывать о процессах"
@@ -1170,32 +1170,32 @@ msgstr "Прервать текущую задачу"
msgid "User commands"
msgstr "Пользовательские команды"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "Имеются запущенные процессы:"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "Закрыть все равно?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "Используйте '--help' для получения дополнительной информации"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "Не удалось загрузить иконку"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "Применение:"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr "[ОПЦИЙ]... [ ПРОГРАММА [АРГУМЕНТЫ]... | - ]"
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1263,54 +1263,54 @@ msgstr ""
"Смотрите страницу руководства для параметров командной строки и "
"конфигурации.\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "Подсистема WSL '%s' не найдена"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "Дублирование параметра '%s'"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "Неизвестный параметр '%s'"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "Параметр '%s' требует аргумент"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "Ошибка синтаксиса в позиции аргумента '%s'"
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "Ошибка синтаксиса в размере аргумента '%s'"
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "Ошибка синтаксиса в размере аргумента '%s'"
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr ""
"Mintty не может отключится от вызывающего метода, запуск в любом случае"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr ""
"Использование заголовка по умолчанию из-за недопустимых символов в имени "
"программы"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr ""
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr ""
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr ""
diff --git a/msys2/usr/share/mintty/lang/sv.po b/msys2/usr/share/mintty/lang/sv.po
index 31a3ed27b..d3fcd3279 100644
--- a/msys2/usr/share/mintty/lang/sv.po
+++ b/msys2/usr/share/mintty/lang/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: 2020-03-14 13:53+0100\n"
"Last-Translator: A Regnander \n"
"Language-Team: \n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Poedit 2.3\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr "(standard)"
@@ -66,50 +66,50 @@ msgid "Error: Could not fork child daemon"
msgstr "Fel: Kunde inte förgrena underdemon"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr "sträck ut"
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr "justera"
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr "centrerad"
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr "fullständig"
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "Ignorera det okända alternativet \"%s\""
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "Internt fel: För många alternativ"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "Internt fel: För många alternativ/kommentarer"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "Ignorerar det okänt värdet \"%s\" för alternativet \"%s\""
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "Ignorerar alternativet \"%s\" som saknar värde"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -117,163 +117,163 @@ msgstr ""
"Kunde inte spara alternativ till \"%s\":\n"
"%s."
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ Ingen (utskrift inaktiverat) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ Standardskrivare ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– Inget –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Windowsspråk @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* Miljöspråk *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= Konfigurerat språk ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "enkel ljudsignal"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "ingen ljudsignal"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "Standardljudsignal"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "Kritiskt stopp"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "Fråga"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "Varning"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "Asterisk"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ Inget (systemljud) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ Inget ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "nedladdad / namnge mig!"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "Kunde inte läsa in webbtema"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "Kan inte skriva temafil"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "Kan inte lagra temafil"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "Om..."
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "Spara"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "Avbryt"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "Verkställ"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "Jag förstår"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr "OK"
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "Utseende"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "Terminalutseende"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "Färger"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "&Förgrund..."
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "&Bakgrund..."
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "Mark&ör..."
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "&Tema"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr "Färgtemadesigner"
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "Lagra"
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "Genomskinlighet"
@@ -281,258 +281,258 @@ msgstr "Genomskinlighet"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "A&v"
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "&Låg"
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "&Med."
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "&Medel"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "&Hög"
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "Gla&s"
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "&Ingen genomskinlighet vid fokus"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "S&uddighet"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "Markör"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "Li&nje"
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "Blo&ck"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "&Understreck"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "B&linkande markör"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "Text"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "Text- och teckensnittsegenskaper"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "Teckensnitt"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "St&il:"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "&Storlek:"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "&Visa fetstil som teckensnitt"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "&Visa fetstil som färg"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "Visa fetstil som"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "teckensnitt"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "färg"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr "xterm"
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "Teckensnittsutjämning"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "&Standard"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "&Ingen"
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "&Delvis"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "&Full"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "&Blinka"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr "Spr&åk"
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "Tecken&uppsättning"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr "Uttrycksymboler"
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr "Stil"
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr "Placering"
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "Tangenter"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "Tangentbordsfunktioner"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "&Bakåtpil skriver ^H"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "&Delete skriver DEL"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "Ctrl+VänsterAlt fungerar likadant som Alt&Gr"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "AltGr fungerar även likadant som Alt"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "Kortkommandon"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "Ko&piera och klistra in (Ctrl/Shift+Ins)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "&Meny och helskärm (Alt+Mellanslag/Enter)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "B&yt fönster (Ctrl+[Shift+]Tabb)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "&Zooma (Ctrl+plus/minus/noll)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "Kortkommandon för Alt+&Fn"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "Kortkommandon för C&trl+Shift+bokstav"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "Kombinationstangent"
@@ -541,7 +541,7 @@ msgstr "Kombinationstangent"
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr "&Shift"
@@ -550,7 +550,7 @@ msgstr "&Shift"
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr "&Ctrl"
@@ -559,112 +559,112 @@ msgstr "&Ctrl"
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr "&Alt"
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "Mus"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "Musfunktioner"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "Kopiera vid &markering"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "Kopiera (som text) med &TABB"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "Kopiera som &RTF-text"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "Kopiera som &HTML"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "&Placera kommandotolkens markör vid musklick"
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "Klickåtgärder"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "Höger musknapp"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "&Klistra in"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "&Utvidga"
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "&Meny"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "Ente&r"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "Mittenmusknapp"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "&Inget"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "Applikationens musläge"
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "Standardklickmål"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "&Fönster"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "App&likation"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "Modifierare för att överskrida standardvärden"
@@ -672,183 +672,183 @@ msgstr "Modifierare för att överskrida standardvärden"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr "&Win"
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr "S&up"
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr "&Hyp"
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr "Markering"
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr "Markering och urklipp"
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr "Rensa markering vid inmatning"
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr "Urklipp"
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr "Rensa omgivande mellanrum från markering"
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr "Låt kontrollsekvenser ändra markeringar"
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "Fönster"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr "Visa storlek vid markering (0..12)"
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr "Förhindra utmatning vid markering"
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "Fönsteregenskaper"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "Standardstorlek"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "Kolu&mner"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "Ra&der"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "&Nuvarande"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "&Radbuffert"
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "Rullningslist"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "&Vänster"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "H&öger"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "Modifierare för rullning"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "Rulla med &PgUp och PgDn utan modifierare"
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "Gränssnittsspråk"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr "Terminal"
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "Terminalfunktioner"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "&Typ"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "Svarstr&äng"
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "Ljud"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► &Spela upp"
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr ".&wav-fil"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "&Blinka"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "&Visa i aktivitetsfältet"
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr "&Popupp"
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "Skrivare"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "Fråga om pågående processer vid &avslut"
@@ -1169,32 +1169,32 @@ msgstr "Skriv Break"
msgid "User commands"
msgstr "Användarkommandon"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "Processer som körs i sessionen:"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "Vill du stänga fönstret ändå?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "Prova att skriva \"--help\" för mer information"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "Kunde inte läsa in ikon"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "Användning:"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr "[ALTERNATIV]... [ PROGRAM [ARGUMENT]... | - ]"
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1260,51 +1260,51 @@ msgstr ""
"Se manualsidan för ytterligare alternativ och konfigurationer av "
"kommandotolken.\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "WSL-distributionen \"%s\" hittades inte"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "Alternativet \"%s\" är en dubblett"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "Alternativet \"%s\" är okänt"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "Alternativet \"%s\" kräver ett argument"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "Syntaxfel vid positionsargumentet \"%s\""
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "Syntaxfel i storleksargumentet \"%s\""
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "Syntaxfel i geometriargumentet \"%s\""
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr "Mintty kunde inte frigöras från anroparen, men startas ändå"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr "Standardnamnlisten används p.g.a. ogiltiga tecken i programmets namn"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr "◀"
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr "▶"
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr "X"
diff --git a/msys2/usr/share/mintty/lang/zh_CN.po b/msys2/usr/share/mintty/lang/zh_CN.po
index 24c6c34ea..5f14e8da1 100644
--- a/msys2/usr/share/mintty/lang/zh_CN.po
+++ b/msys2/usr/share/mintty/lang/zh_CN.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: 2017-10-23 17:09+0800\n"
"Last-Translator: Gore Liu \n"
"Language-Team: \n"
@@ -19,7 +19,7 @@ msgstr ""
"X-Generator: Poedit 2.0.3\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr "(默认)"
@@ -68,50 +68,50 @@ msgid "Error: Could not fork child daemon"
msgstr "错误:无法创建子进程"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr "拉伸"
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr "适应"
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr "居中"
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr "填充"
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "忽略未知选项 '%s'"
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "内部错误:过多选项"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "内部错误:过多选项/注释"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "忽略 '%s' 无效值,属于该选项 '%s'"
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "忽略 '%s' 选项,因为缺少值"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -119,163 +119,163 @@ msgstr ""
"无法将选项保存到 '%s':\n"
"%s。"
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ 无 (禁用打印) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ 默认打印机 ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– 无 –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Windows 语言 @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* Locale 环境变量 *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= 已配置的 Locale ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "简单的嘟声"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "无提示音"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "默认的嘟声"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "错误提示音"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "疑问提示音"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "惊叹提示音"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "星号提示音"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ 无 (系统声音) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ 无 ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "已下载 / 给我起名!"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "无法加载网络主题"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "无法写入主题文件"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "无法储存主题文件"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "关于..."
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "保存"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "取消"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "应用"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "我了解了"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr "确定"
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "外观"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "终端外观"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "颜色"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "前景(&F)..."
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "背景(&B)..."
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "光标(&C)..."
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "主题(&T)"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr "颜色样式设计工具"
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "保存"
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "透明度"
@@ -283,258 +283,258 @@ msgstr "透明度"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "关(&O)"
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "低(&L)"
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "中(&M)"
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "中(&M)"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "高(&H)"
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "玻璃"
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "获得焦点后变为不透明(&Q)"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "模糊(&R)"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "光标"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "竖线"
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "方块"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "下划线"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "闪烁(&G)"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "文本"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "文本和字体属性"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "字体"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "字体样式(&Y)"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "大小(&S)"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "显示粗体字形(&W)"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "显示粗体颜色(&B)"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "显示粗体的"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "字形"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "颜色"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr ""
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "字体平滑"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "默认(&D)"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "无(&N)"
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "部分(&P)"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "全部(&F)"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "允许闪烁(&A)"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr "本地 &Locale"
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "字符集(&C)"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr "Emoji"
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr "风格"
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr "位置"
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "按键"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "键盘特性"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "退格键发送 ^H (&B)"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "删除键发送 DEL (&D)"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "将 Ctrl+左Alt 设置为 Alt&Gr"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "将 AltGr 也视为 Alt"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "快捷键"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "复制和粘贴(&Y) (Ctrl/Shift+Ins)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "显示菜单和全屏(&M) (Alt+Space/Enter)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "切换窗口(&S) (Ctrl+[Shift+]Tab)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "缩放(&Z) (Ctrl + +/-/0)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "Alt+Fn 快捷键(&A)"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "Ctrl+Shift+字母快捷键(&C)"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "组合按键"
@@ -543,7 +543,7 @@ msgstr "组合按键"
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr ""
@@ -552,7 +552,7 @@ msgstr ""
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr ""
@@ -561,112 +561,112 @@ msgstr ""
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr ""
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "鼠标"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "鼠标功能"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "选中后立即复制(&Y)"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "以纯文本复制(包括 &Tab)"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "以富文本复制(&R)"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "以 HTML 复制"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "使用鼠标点击来定位光标(&K)"
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "单击动作"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "鼠标右键"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "粘贴(&P)"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "扩展(&E)"
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "菜单(&M)"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "回车(&E)"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "鼠标中键"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "无(&N)"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "应用程序鼠标模式"
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "默认点击目标"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "窗口(&W)"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "应用程序(&A)"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "覆盖默认配置的修饰键"
@@ -674,183 +674,183 @@ msgstr "覆盖默认配置的修饰键"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr ""
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr ""
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr ""
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr "选中"
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr "选中字符和剪切板功能"
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr "输入后取消选中"
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr "剪切板"
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr "移除不必要的空格"
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr "允许使用 OSC 52 转义字符设置剪切板内容"
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "窗口"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr "选择时显示尺寸 (0:关闭/1-12:方位)"
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr "选择时暂停屏幕输出"
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "窗口属性"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "默认大小"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "列数"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "行数"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "当前大小(&U)"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "保存历史行数"
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "滚动条"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "左(&L)"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "右(&R)"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "用于滚动的修饰键"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "即使不按修饰键,也用 PgUp 和 PgDn 滚动"
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "界面语言"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr "终端"
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "终端特性"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "终端类型(&T)"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "应答(&A)"
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "响铃"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► 播放(&P)"
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr "声音"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "闪屏(&F)"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "任务栏高亮(&H)"
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr "弹出(&P)"
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "打印机"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "退出时提示还在运行的进程(&C)"
@@ -1171,32 +1171,32 @@ msgstr "发送 Break"
msgid "User commands"
msgstr "用户命令"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "在当前会话中还运行着进程:"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "确认关闭?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "使用 --help 参数运行来了解如何使用"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "无法加载图标"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "用法:"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr "[选项]... [ 程序名 [参数]... | - ]"
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1254,51 +1254,51 @@ msgstr ""
" -V, --version 打印版本信息然后退出\n"
"请查阅 man 手册了解更多命令行选项和配置相关帮助内容。\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "找不到 '%s' WSL 发行版"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "重复的选项 %s"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "未知的选项 %s"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "选项 %s 需要一个参数"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "position 选项的参数 '%s' 有语法错误"
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "size 选项的参数 '%s' 有语法错误"
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "geometry 选项的参数 '%s' 有语法错误"
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr "Mintty 不能从调用者分离,但继续启动"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr "使用默认的标题栏文字,因为程序名中有无效字符"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr ""
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr ""
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr ""
diff --git a/msys2/usr/share/mintty/lang/zh_TW.po b/msys2/usr/share/mintty/lang/zh_TW.po
index 9e6d3a742..3b390aecc 100644
--- a/msys2/usr/share/mintty/lang/zh_TW.po
+++ b/msys2/usr/share/mintty/lang/zh_TW.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mintty\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-20 22:57+0100\n"
+"POT-Creation-Date: 2021-02-17 13:44+0100\n"
"PO-Revision-Date: 2019-10-16 12:32+0800\n"
"Last-Translator: lcy0321 \n"
"Language-Team: \n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: charset.c:242 charset.c:253 winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: charset.c:242 charset.c:253 winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "(Default)"
msgstr "(預設)"
@@ -64,50 +64,50 @@ msgid "Error: Could not fork child daemon"
msgstr "錯誤:無法建立子背景程序"
#. __ Options - Text - Emojis - Placement
-#: config.c:591
+#: config.c:599
msgid "stretch"
msgstr "延展"
#. __ Options - Text - Emojis - Placement
-#: config.c:593
+#: config.c:601
msgid "align"
msgstr "對齊"
#. __ Options - Text - Emojis - Placement
-#: config.c:595
+#: config.c:603
msgid "middle"
msgstr "置中"
#. __ Options - Text - Emojis - Placement
-#: config.c:597
+#: config.c:605
msgid "full"
msgstr "完整"
#. __ %s: unknown option name
-#: config.c:724
+#: config.c:764
msgid "Ignoring unknown option '%s'"
msgstr "忽略未知選項「%s」"
-#: config.c:769 config.c:798
+#: config.c:809 config.c:838
msgid "Internal error: too many options"
msgstr "內部錯誤:選項過多"
-#: config.c:785
+#: config.c:825
msgid "Internal error: too many options/comments"
msgstr "內部錯誤:選項/註解過多"
#. __ %2$s: option name, %1$s: invalid value
-#: config.c:939
+#: config.c:979
msgid "Ignoring invalid value '%s' for option '%s'"
msgstr "忽略無效值「%s」(「%s」選項)"
#. __ %s: option name
-#: config.c:951
+#: config.c:991
msgid "Ignoring option '%s' with missing value"
msgstr "忽略「%s」選項(遺漏值)"
#. __ %1$s: config file name, %2$s: error message
-#: config.c:1612
+#: config.c:1648
msgid ""
"Could not save options to '%s':\n"
"%s."
@@ -115,163 +115,163 @@ msgstr ""
"無法儲存選項至「%s」:\n"
"%s。"
-#: config.c:2039
+#: config.c:2075
msgid "◇ None (printing disabled) ◇"
msgstr "◇ 無(停用列印) ◇"
-#: config.c:2041
+#: config.c:2077
msgid "◆ Default printer ◆"
msgstr "◆ 預設印表機 ◆"
#. __ UI language
-#: config.c:2150
+#: config.c:2186
msgid "– None –"
msgstr "– 無 –"
-#: config.c:2151
+#: config.c:2187
msgid "@ Windows language @"
msgstr "@ Windows 語言 @"
-#: config.c:2152
+#: config.c:2188
msgid "* Locale environm. *"
msgstr "* Locale 環境變數 *"
-#: config.c:2153
+#: config.c:2189
msgid "= cfg. Text Locale ="
msgstr "= 已設定的語言 ="
-#: config.c:2235
+#: config.c:2271
msgid "simple beep"
msgstr "簡單的嗶聲"
-#: config.c:2236
+#: config.c:2272
msgid "no beep"
msgstr "無嗶聲"
-#: config.c:2237
+#: config.c:2273
msgid "Default Beep"
msgstr "預設嗶聲"
-#: config.c:2238
+#: config.c:2274
msgid "Critical Stop"
msgstr "緊急停止"
-#: config.c:2239
+#: config.c:2275
msgid "Question"
msgstr "問題"
-#: config.c:2240
+#: config.c:2276
msgid "Exclamation"
msgstr "驚嘆聲"
-#: config.c:2241
+#: config.c:2277
msgid "Asterisk"
msgstr "星號"
-#: config.c:2284
+#: config.c:2320
msgid "◇ None (system sound) ◇"
msgstr "◇ 無(系統音效) ◇"
#. __ terminal theme / colour scheme
#. __ emojis style
-#: config.c:2540 config.c:3074
+#: config.c:2688 config.c:3238
msgid "◇ None ◇"
msgstr "◇ 無 ◇"
#. __ indicator of unsaved downloaded colour scheme
-#: config.c:2543
+#: config.c:2691
msgid "downloaded / give me a name!"
msgstr "已下載/給我個名字!"
-#: config.c:2632
+#: config.c:2796
msgid "Could not load web theme"
msgstr "無法載入網路主題"
-#: config.c:2689
+#: config.c:2853
msgid "Cannot write theme file"
msgstr "無法寫入主題檔案"
-#: config.c:2694
+#: config.c:2858
msgid "Cannot store theme file"
msgstr "無法儲存主題檔案"
#. __ Dialog button - show About text
-#: config.c:3207
+#: config.c:3371
msgid "About..."
msgstr "關於..."
#. __ Dialog button - save changes
-#: config.c:3210
+#: config.c:3374
msgid "Save"
msgstr "儲存"
#. __ Dialog button - cancel
-#: config.c:3214 winctrls.c:1254 windialog.c:872
+#: config.c:3378 winctrls.c:1254 windialog.c:872
msgid "Cancel"
msgstr "取消"
#. __ Dialog button - apply changes
-#: config.c:3218
+#: config.c:3382
msgid "Apply"
msgstr "套用"
#. __ Dialog button - take notice
-#: config.c:3222 windialog.c:869
+#: config.c:3386 windialog.c:869
msgid "I see"
msgstr "了解"
#. __ Dialog button - confirm action
-#: config.c:3224 winctrls.c:1253 windialog.c:871
+#: config.c:3388 winctrls.c:1253 windialog.c:871
msgid "OK"
msgstr "確認"
#. __ Options - Looks: treeview label
-#: config.c:3231 config.c:3262 config.c:3303
+#: config.c:3395 config.c:3426 config.c:3467
msgid "Looks"
msgstr "外觀"
#. __ Options - Looks: panel title
-#: config.c:3233
+#: config.c:3397
msgid "Looks in Terminal"
msgstr "終端機外觀"
#. __ Options - Looks: section title
-#: config.c:3235
+#: config.c:3399
msgid "Colours"
msgstr "色彩"
#. __ Options - Looks:
-#: config.c:3239
+#: config.c:3403
msgid "&Foreground..."
msgstr "前景(&F)"
#. __ Options - Looks:
-#: config.c:3243
+#: config.c:3407
msgid "&Background..."
msgstr "背景(&B)"
#. __ Options - Looks:
-#: config.c:3247
+#: config.c:3411
msgid "&Cursor..."
msgstr "色彩(&C)"
#. __ Options - Looks:
-#: config.c:3251
+#: config.c:3415
msgid "&Theme"
msgstr "主題(&T)"
#. __ Options - Looks: name of web service
-#: config.c:3256
+#: config.c:3420
msgid "Color Scheme Designer"
msgstr "色彩樣式設計工具"
#. __ Options - Looks: store colour scheme
-#: config.c:3259 winctrls.c:461
+#: config.c:3423 winctrls.c:461
msgid "Store"
msgstr "保存"
#. __ Options - Looks: section title
-#: config.c:3264
+#: config.c:3428
msgid "Transparency"
msgstr "透明度"
@@ -279,258 +279,258 @@ msgstr "透明度"
#. __ Options - Keys:
#. __ Options - Mouse:
#. __ Options - Window:
-#: config.c:3270 config.c:3582 config.c:3745 config.c:3936
+#: config.c:3434 config.c:3746 config.c:3909 config.c:4100
msgid "&Off"
msgstr "關(&O)"
#. __ Options - Looks: transparency
-#: config.c:3272
+#: config.c:3436
msgid "&Low"
msgstr "低(&L)"
#. __ Options - Looks: transparency, short form of radio button label "Medium"
-#: config.c:3274
+#: config.c:3438
msgid "&Med."
msgstr "中(&M)"
#. __ Options - Looks: transparency
-#: config.c:3276
+#: config.c:3440
msgid "&Medium"
msgstr "中(&M)"
#. __ Options - Looks: transparency
-#: config.c:3278
+#: config.c:3442
msgid "&High"
msgstr "高(&H)"
#. __ Options - Looks: transparency
-#: config.c:3280
+#: config.c:3444
msgid "Gla&ss"
msgstr "玻璃(&S)"
#. __ Options - Looks: transparency
-#: config.c:3287 config.c:3298
+#: config.c:3451 config.c:3462
msgid "Opa&que when focused"
msgstr "使用中不透明(&Q)"
#. __ Options - Looks: transparency
-#: config.c:3292
+#: config.c:3456
msgid "Blu&r"
msgstr "模糊(&R)"
#. __ Options - Looks: section title
-#: config.c:3305
+#: config.c:3469
msgid "Cursor"
msgstr "游標"
#. __ Options - Looks: cursor type
-#: config.c:3310
+#: config.c:3474
msgid "Li&ne"
msgstr "豎線(&N)"
#. __ Options - Looks: cursor type
-#: config.c:3312
+#: config.c:3476
msgid "Bloc&k"
msgstr "方塊(K)"
#. __ Options - Looks: cursor type
-#: config.c:3315
+#: config.c:3479
msgid "Bo&x"
msgstr ""
#. __ Options - Looks: cursor type
-#: config.c:3318
+#: config.c:3482
msgid "&Underscore"
msgstr "下劃線(&U)"
#. __ Options - Looks: cursor feature
-#: config.c:3323
+#: config.c:3487
msgid "Blinkin&g"
msgstr "閃爍(&G)"
#. __ Options - Text: treeview label
-#: config.c:3330 config.c:3355 config.c:3369 config.c:3398 config.c:3447
-#: config.c:3469 config.c:3482 config.c:3490
+#: config.c:3494 config.c:3519 config.c:3533 config.c:3562 config.c:3611
+#: config.c:3633 config.c:3646 config.c:3654
msgid "Text"
msgstr "文字"
#. __ Options - Text: panel title
-#: config.c:3332
+#: config.c:3496
msgid "Text and Font properties"
msgstr "文字與字型屬性"
#. __ Options - Text: section title
-#: config.c:3334
+#: config.c:3498
msgid "Font"
msgstr "字型"
#. __ Options - Text:
#. __ Font chooser:
-#: config.c:3342 winctrls.c:1264
+#: config.c:3506 winctrls.c:1264
msgid "Font st&yle:"
msgstr "字型樣式(&Y)"
#. __ Font chooser:
-#: config.c:3347 winctrls.c:1266
+#: config.c:3511 winctrls.c:1266
msgid "&Size:"
msgstr "大小(&S):"
#. __ Options - Text:
-#: config.c:3359 config.c:3417
+#: config.c:3523 config.c:3581
msgid "Sho&w bold as font"
msgstr "以字型顯示粗體字(&W)"
#. __ Options - Text:
-#: config.c:3364 config.c:3422
+#: config.c:3528 config.c:3586
msgid "Show &bold as colour"
msgstr "以顏色顯示粗體字(&B)"
#. __ Options - Text:
-#: config.c:3371 config.c:3449
+#: config.c:3535 config.c:3613
msgid "Show bold"
msgstr "以字型顯"
#. __ Options - Text:
-#: config.c:3375 config.c:3453
+#: config.c:3539 config.c:3617
msgid "as font"
msgstr "示粗體字"
#. __ Options - Text:
-#: config.c:3380 config.c:3458
+#: config.c:3544 config.c:3622
msgid "as colour"
msgstr "示粗體字"
#. __ Options - Text:
-#: config.c:3385 config.c:3463
+#: config.c:3549 config.c:3627
msgid "xterm"
msgstr ""
#. __ Options - Text:
-#: config.c:3402 config.c:3434
+#: config.c:3566 config.c:3598
msgid "Font smoothing"
msgstr "字體平滑"
#. __ Options - Text:
-#: config.c:3405 config.c:3437 config.c:3633 config.c:3672 config.c:3827
-#: config.c:3840
+#: config.c:3569 config.c:3601 config.c:3797 config.c:3836 config.c:3991
+#: config.c:4004
msgid "&Default"
msgstr "預設(&D)"
#. __ Options - Text:
#. __ Options - Window: scrollbar
-#: config.c:3407 config.c:3439 config.c:3631 config.c:3670 config.c:3825
-#: config.c:3838 config.c:3917
+#: config.c:3571 config.c:3603 config.c:3795 config.c:3834 config.c:3989
+#: config.c:4002 config.c:4081
msgid "&None"
msgstr "無(&N)"
#. __ Options - Text:
-#: config.c:3409 config.c:3441 config.c:3632 config.c:3671 config.c:3826
-#: config.c:3839
+#: config.c:3573 config.c:3605 config.c:3796 config.c:3835 config.c:3990
+#: config.c:4003
msgid "&Partial"
msgstr "部分(&P)"
#. __ Options - Text:
-#: config.c:3411 config.c:3443 config.c:3634 config.c:3673 config.c:3828
-#: config.c:3841
+#: config.c:3575 config.c:3607 config.c:3798 config.c:3837 config.c:3992
+#: config.c:4005
msgid "&Full"
msgstr "完整(&F)"
#. __ Options - Text:
-#: config.c:3427
+#: config.c:3591
msgid "&Allow blinking"
msgstr "允許閃爍(&A)"
-#: config.c:3472
+#: config.c:3636
msgid "&Locale"
msgstr "語言(&L)"
-#: config.c:3475
+#: config.c:3639
msgid "&Character set"
msgstr "字元集(C)"
#. __ Options - Text - Emojis:
#. __ Options - Text:
-#: config.c:3486 config.c:3492
+#: config.c:3650 config.c:3656
msgid "Emojis"
msgstr "表情符號"
#. __ Options - Text - Emojis:
-#: config.c:3496
+#: config.c:3660
msgid "Style"
msgstr "風格"
#. __ Options - Text - Emojis:
-#: config.c:3501
+#: config.c:3665
msgid "Placement"
msgstr "顯示方式"
#. __ Options - Keys: treeview label
-#: config.c:3509 config.c:3534 config.c:3569 config.c:3587
+#: config.c:3673 config.c:3698 config.c:3733 config.c:3751
msgid "Keys"
msgstr "按鍵"
#. __ Options - Keys: panel title
-#: config.c:3511
+#: config.c:3675
msgid "Keyboard features"
msgstr "鍵盤功能"
#. __ Options - Keys:
-#: config.c:3515
+#: config.c:3679
msgid "&Backarrow sends ^H"
msgstr "後退鍵傳送^H(&B)"
#. __ Options - Keys:
-#: config.c:3520
+#: config.c:3684
msgid "&Delete sends DEL"
msgstr "刪除鍵傳送DEL(&D)"
#. __ Options - Keys:
-#: config.c:3525
+#: config.c:3689
msgid "Ctrl+LeftAlt is Alt&Gr"
msgstr "Ctrl+左Alt為AltGr(&G)"
#. __ Options - Keys:
-#: config.c:3530
+#: config.c:3694
msgid "AltGr is also Alt"
msgstr "將 AltGr 也視為 Alt"
#. __ Options - Keys: section title
-#: config.c:3536
+#: config.c:3700
msgid "Shortcuts"
msgstr "快捷鍵"
#. __ Options - Keys:
-#: config.c:3539
+#: config.c:3703
msgid "Cop&y and Paste (Ctrl/Shift+Ins)"
msgstr "複製與貼上(Ctrl/Shift+Ins)(&Y)"
#. __ Options - Keys:
-#: config.c:3544
+#: config.c:3708
msgid "&Menu and Full Screen (Alt+Space/Enter)"
msgstr "選單與全螢幕(Alt+Space/Enter)(&M)"
#. __ Options - Keys:
-#: config.c:3549
+#: config.c:3713
msgid "&Switch window (Ctrl+[Shift+]Tab)"
msgstr "切換視窗(Ctrl+[Shift+]Tab)(&S)"
#. __ Options - Keys:
-#: config.c:3554
+#: config.c:3718
msgid "&Zoom (Ctrl+plus/minus/zero)"
msgstr "縮放(Ctrl+plus/minus/zero)(&Z)"
#. __ Options - Keys:
-#: config.c:3559
+#: config.c:3723
msgid "&Alt+Fn shortcuts"
msgstr "Alt+Fn 快捷鍵(&A)"
#. __ Options - Keys:
-#: config.c:3564
+#: config.c:3728
msgid "&Ctrl+Shift+letter shortcuts"
msgstr "Ctrl+Shift+字母 快捷鍵(&C)"
#. __ Options - Keys: section title
-#: config.c:3571 config.c:3589
+#: config.c:3735 config.c:3753
msgid "Compose key"
msgstr "組合鍵"
@@ -539,7 +539,7 @@ msgstr "組合鍵"
#. __ Options - Modifier - Shift:
#. __ Options - Window:
#. __ Options - Modifier - Shift:
-#: config.c:3576 config.c:3737 config.c:3756 config.c:3928 config.c:3947
+#: config.c:3740 config.c:3901 config.c:3920 config.c:4092 config.c:4111
msgid "&Shift"
msgstr "&Shift"
@@ -548,7 +548,7 @@ msgstr "&Shift"
#. __ Options - Modifier - Control:
#. __ Options - Window:
#. __ Options - Modifier - Control:
-#: config.c:3578 config.c:3739 config.c:3764 config.c:3930 config.c:3955
+#: config.c:3742 config.c:3903 config.c:3928 config.c:4094 config.c:4119
msgid "&Ctrl"
msgstr "&Ctrl"
@@ -557,112 +557,112 @@ msgstr "&Ctrl"
#. __ Options - Modifier - Alt:
#. __ Options - Window:
#. __ Options - Modifier - Alt:
-#: config.c:3580 config.c:3741 config.c:3760 config.c:3932 config.c:3951
+#: config.c:3744 config.c:3905 config.c:3924 config.c:4096 config.c:4115
msgid "&Alt"
msgstr "&Alt"
#. __ Options - Mouse: treeview label
-#: config.c:3596 config.c:3685 config.c:3717
+#: config.c:3760 config.c:3849 config.c:3881
msgid "Mouse"
msgstr "滑鼠"
#. __ Options - Mouse: panel title
-#: config.c:3598
+#: config.c:3762
msgid "Mouse functions"
msgstr "滑鼠功能"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3606 config.c:3639 config.c:3655 config.c:3805
+#: config.c:3770 config.c:3803 config.c:3819 config.c:3969
msgid "Cop&y on select"
msgstr "選取時複製(&Y)"
#. __ Options - Mouse:
#. __ Options - Selection:
#. __ Context menu:
-#: config.c:3611 config.c:3644 config.c:3810 wininput.c:661
+#: config.c:3775 config.c:3808 config.c:3974 wininput.c:661
msgid "Copy with TABs"
msgstr "以純文字複製(包含 &Tab)"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3616 config.c:3649 config.c:3661 config.c:3817
+#: config.c:3780 config.c:3813 config.c:3825 config.c:3981
msgid "Copy as &rich text"
msgstr "以格式化文字複製(&R)"
#. __ Options - Mouse:
#. __ Options - Selection:
-#: config.c:3622 config.c:3629 config.c:3668 config.c:3823 config.c:3836
+#: config.c:3786 config.c:3793 config.c:3832 config.c:3987 config.c:4000
msgid "Copy as &HTML"
msgstr "複製&HTML"
#. __ Options - Mouse:
-#: config.c:3681
+#: config.c:3845
msgid "Clic&ks place command line cursor"
msgstr "點擊定位游標(&K)"
#. __ Options - Mouse: section title
-#: config.c:3687
+#: config.c:3851
msgid "Click actions"
msgstr "點擊動作"
#. __ Options - Mouse:
-#: config.c:3690
+#: config.c:3854
msgid "Right mouse button"
msgstr "滑鼠右鍵"
#. __ Options - Mouse:
-#: config.c:3693 config.c:3707
+#: config.c:3857 config.c:3871
msgid "&Paste"
msgstr "貼上(&P)"
#. __ Options - Mouse:
-#: config.c:3695 config.c:3709
+#: config.c:3859 config.c:3873
msgid "E&xtend"
msgstr "擴展(&X)"
#. __ Options - Mouse:
-#: config.c:3697
+#: config.c:3861
msgid "&Menu"
msgstr "選單(&M)"
#. __ Options - Mouse:
-#: config.c:3699 config.c:3713
+#: config.c:3863 config.c:3877
msgid "Ente&r"
msgstr "Ente&r"
#. __ Options - Mouse:
-#: config.c:3704
+#: config.c:3868
msgid "Middle mouse button"
msgstr "滑鼠中鍵"
#. __ Options - Mouse:
-#: config.c:3711
+#: config.c:3875
msgid "&Nothing"
msgstr "無(&N)"
#. __ Options - Mouse: section title
-#: config.c:3719
+#: config.c:3883
msgid "Application mouse mode"
msgstr "應用程式滑鼠模式"
#. __ Options - Mouse:
-#: config.c:3722
+#: config.c:3886
msgid "Default click target"
msgstr "預設點擊目標"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3725
+#: config.c:3889
msgid "&Window"
msgstr "視窗(&W)"
#. __ Options - Mouse: application mouse mode click target
-#: config.c:3727
+#: config.c:3891
msgid "&Application"
msgstr "應用程式(&A)"
#. __ Options - Mouse:
-#: config.c:3734 config.c:3752
+#: config.c:3898 config.c:3916
msgid "Modifier for overriding default"
msgstr "覆蓋預設設定的修飾鍵"
@@ -670,183 +670,183 @@ msgstr "覆蓋預設設定的修飾鍵"
#. __ Options - Modifier - Win:
#. __ Options - Window:
#. __ Options - Modifier - Win:
-#: config.c:3743 config.c:3768 config.c:3934 config.c:3959
+#: config.c:3907 config.c:3932 config.c:4098 config.c:4123
msgid "&Win"
msgstr "&Win"
#. __ Options - Modifier - Super:
-#: config.c:3772 config.c:3963
+#: config.c:3936 config.c:4127
msgid "&Sup"
msgstr "&Sup"
#. __ Options - Modifier - Hyper:
-#: config.c:3776 config.c:3967
+#: config.c:3940 config.c:4131
msgid "&Hyp"
msgstr "&Hyp"
#. __ Options - Selection: treeview label
-#: config.c:3786 config.c:3799 config.c:3860
+#: config.c:3950 config.c:3963 config.c:4024
msgid "Selection"
msgstr "選取"
#. __ Options - Selection: panel title
-#: config.c:3788
+#: config.c:3952
msgid "Selection and clipboard"
msgstr "選取與剪貼簿"
#. __ Options - Selection:
-#: config.c:3792
+#: config.c:3956
msgid "Clear selection on input"
msgstr "輸入時解除選取"
#. __ Options - Selection: section title
-#: config.c:3801
+#: config.c:3965
msgid "Clipboard"
msgstr "剪貼簿"
#. __ Options - Selection:
-#: config.c:3850
+#: config.c:4014
msgid "Trim space from selection"
msgstr "修剪選取範圍前後的空白"
#. __ Options - Selection:
-#: config.c:3855
+#: config.c:4019
msgid "Allow setting selection"
msgstr "允許調整選取的設定值"
#. __ Options - Selection: section title
#. __ Options - Window: treeview label
-#: config.c:3862 config.c:3884 config.c:3903 config.c:3976
+#: config.c:4026 config.c:4048 config.c:4067 config.c:4140
msgid "Window"
msgstr "視窗"
#. __ Options - Selection:
-#: config.c:3867
+#: config.c:4031
msgid "Show size while selecting (0..12)"
msgstr "選取時顯示長度"
#. __ Options - Selection:
-#: config.c:3874
+#: config.c:4038
msgid "Suspend output while selecting"
msgstr "選取時暫停輸出"
#. __ Options - Window: panel title
-#: config.c:3886
+#: config.c:4050
msgid "Window properties"
msgstr "視窗屬性"
#. __ Options - Window: section title
-#: config.c:3888
+#: config.c:4052
msgid "Default size"
msgstr "預設大小"
#. __ Options - Window:
-#: config.c:3892
+#: config.c:4056
msgid "Colu&mns"
msgstr "欄(&M)"
#. __ Options - Window:
-#: config.c:3896
+#: config.c:4060
msgid "Ro&ws"
msgstr "列(&W)"
#. __ Options - Window:
-#: config.c:3900
+#: config.c:4064
msgid "C&urrent size"
msgstr "目前大小(&U)"
#. __ Options - Window:
-#: config.c:3907
+#: config.c:4071
msgid "Scroll&back lines"
msgstr "螢幕緩衝區行數(&B)"
#. __ Options - Window:
-#: config.c:3912
+#: config.c:4076
msgid "Scrollbar"
msgstr "捲軸"
#. __ Options - Window: scrollbar
-#: config.c:3915
+#: config.c:4079
msgid "&Left"
msgstr "左(&L)"
#. __ Options - Window: scrollbar
-#: config.c:3919
+#: config.c:4083
msgid "&Right"
msgstr "右(&R)"
#. __ Options - Window:
-#: config.c:3925 config.c:3943
+#: config.c:4089 config.c:4107
msgid "Modifier for scrolling"
msgstr "滾動的修飾鍵"
#. __ Options - Window:
-#: config.c:3972
+#: config.c:4136
msgid "&PgUp and PgDn scroll without modifier"
msgstr "PgUp 與 PgDn 滾動不需修飾鍵(&P)"
#. __ Options - Window: section title
-#: config.c:3978
+#: config.c:4142
msgid "UI language"
msgstr "介面語言"
#. __ Options - Terminal: treeview label
-#: config.c:3988 config.c:4001 config.c:4062 config.c:4076
+#: config.c:4152 config.c:4165 config.c:4226 config.c:4240
msgid "Terminal"
msgstr "終端機"
#. __ Options - Terminal: panel title
-#: config.c:3990
+#: config.c:4154
msgid "Terminal features"
msgstr "終端機功能"
#. __ Options - Terminal:
-#: config.c:3994
+#: config.c:4158
msgid "&Type"
msgstr "類型(&T)"
#. __ Options - Terminal:
-#: config.c:3998
+#: config.c:4162
msgid "&Answerback"
msgstr "&Answerback"
#. __ Options - Terminal: section title
-#: config.c:4003
+#: config.c:4167
msgid "Bell"
msgstr "提示音"
#. __ Options - Terminal: bell
-#: config.c:4010
+#: config.c:4174
msgid "► &Play"
msgstr "► 播放(&P)"
#. __ Options - Terminal: bell
-#: config.c:4016
+#: config.c:4180
msgid "&Wave"
msgstr "聲音(&W)"
#. __ Options - Terminal: bell
-#: config.c:4038 config.c:4051
+#: config.c:4202 config.c:4215
msgid "&Flash"
msgstr "閃爍(&F)"
#. __ Options - Terminal: bell
-#: config.c:4040 config.c:4055
+#: config.c:4204 config.c:4219
msgid "&Highlight in taskbar"
msgstr "於工作列醒目提示(&H)"
#. __ Options - Terminal: bell
-#: config.c:4042 config.c:4059
+#: config.c:4206 config.c:4223
msgid "&Popup"
msgstr "彈出視窗(&P)"
#. __ Options - Terminal: section title
-#: config.c:4064
+#: config.c:4228
msgid "Printer"
msgstr "印表機"
#. __ Options - Terminal:
-#: config.c:4079
+#: config.c:4243
msgid "Prompt about running processes on &close"
msgstr "離開時提示執行中的程式(&C)"
@@ -1167,32 +1167,32 @@ msgstr "傳送 Break"
msgid "User commands"
msgstr "使用者指令"
-#: winmain.c:2406
+#: winmain.c:2413
msgid "Processes are running in session:"
msgstr "有程式正在執行於 Session:"
-#: winmain.c:2407
+#: winmain.c:2414
msgid "Close anyway?"
msgstr "仍要關閉?"
-#: winmain.c:2543
+#: winmain.c:2550
msgid "Try '--help' for more information"
msgstr "嘗試「--help」以獲得更多資訊"
-#: winmain.c:2551
+#: winmain.c:2558
msgid "Could not load icon"
msgstr "無法載入圖示"
-#: winmain.c:4444
+#: winmain.c:4458
msgid "Usage:"
msgstr "使用方式:"
-#: winmain.c:4445
+#: winmain.c:4459
msgid "[OPTION]... [ PROGRAM [ARG]... | - ]"
msgstr "[OPTION]... [ PROGRAM [ARG]... | - ]"
#. __ help text (output of -H / --help), after initial line ("synopsis")
-#: winmain.c:4448
+#: winmain.c:4462
msgid ""
"Start a new terminal session running the specified program or the user's "
"shell.\n"
@@ -1250,51 +1250,51 @@ msgstr ""
" -V, --version 輸出版本資訊並離開\n"
"參閱說明頁面以取得進一步的命令列選項與設定。\n"
-#: winmain.c:4605 winmain.c:4717 winmain.c:4724
+#: winmain.c:4628 winmain.c:4740 winmain.c:4747
msgid "WSL distribution '%s' not found"
msgstr "找不到 WSL 發行版 %s"
-#: winmain.c:4755
+#: winmain.c:4778
msgid "Duplicate option '%s'"
msgstr "重複的選項「%s」"
-#: winmain.c:4763 winmain.c:4834
+#: winmain.c:4786 winmain.c:4857
msgid "Unknown option '%s'"
msgstr "未知的選項「%s」"
-#: winmain.c:4765
+#: winmain.c:4788
msgid "Option '%s' requires an argument"
msgstr "選項「%s」需要一個參數"
-#: winmain.c:4792
+#: winmain.c:4815
msgid "Syntax error in position argument '%s'"
msgstr "Position 參數「%s」有語法錯誤"
-#: winmain.c:4803
+#: winmain.c:4826
msgid "Syntax error in size argument '%s'"
msgstr "Size 參數「%s」有語法錯誤"
-#: winmain.c:4943
+#: winmain.c:4966
msgid "Syntax error in geometry argument '%s'"
msgstr "Geometry 參數「%s」有語法錯誤"
-#: winmain.c:5026
+#: winmain.c:5051
msgid "Mintty could not detach from caller, starting anyway"
msgstr "Mintty 無法自 caller 分離,仍開始啟動"
-#: winmain.c:5317
+#: winmain.c:5342
msgid "Using default title due to invalid characters in program name"
msgstr "由於程式名稱中有不合法的字元,使用預設標題"
-#: winsearch.c:231
+#: winsearch.c:232
msgid "◀"
msgstr "◀"
-#: winsearch.c:232
+#: winsearch.c:233
msgid "▶"
msgstr "▶"
-#: winsearch.c:233
+#: winsearch.c:234
msgid "X"
msgstr "X"
diff --git a/msys2/var/lib/pacman/local/base-2020.12-1/desc b/msys2/var/lib/pacman/local/base-2020.12-1/desc
index 805e8d455..a1c1a10de 100644
--- a/msys2/var/lib/pacman/local/base-2020.12-1/desc
+++ b/msys2/var/lib/pacman/local/base-2020.12-1/desc
@@ -20,7 +20,7 @@ any
1608382090
%INSTALLDATE%
-1613407330
+1614499937
%PACKAGER%
CI (msys2-autobuild/dfb80bed/432379984)
diff --git a/msys2/var/lib/pacman/local/bash-5.1.004-1/desc b/msys2/var/lib/pacman/local/bash-5.1.004-1/desc
index a987df349..4e2bf9c4a 100644
--- a/msys2/var/lib/pacman/local/bash-5.1.004-1/desc
+++ b/msys2/var/lib/pacman/local/bash-5.1.004-1/desc
@@ -20,7 +20,7 @@ x86_64
1608588391
%INSTALLDATE%
-1613407305
+1614499908
%PACKAGER%
CI (msys2-autobuild/dfb80bed/436616027)
diff --git a/msys2/var/lib/pacman/local/bash-completion-2.11-1/desc b/msys2/var/lib/pacman/local/bash-completion-2.11-1/desc
index ccb195cb0..0267543f5 100644
--- a/msys2/var/lib/pacman/local/bash-completion-2.11-1/desc
+++ b/msys2/var/lib/pacman/local/bash-completion-2.11-1/desc
@@ -20,7 +20,7 @@ any
1603700081
%INSTALLDATE%
-1613407306
+1614499909
%PACKAGER%
CI (msys2-autobuild/6e7d6a99/328625740)
diff --git a/msys2/var/lib/pacman/local/brotli-1.0.9-1/desc b/msys2/var/lib/pacman/local/brotli-1.0.9-1/desc
index 1443cf460..17e9c3467 100644
--- a/msys2/var/lib/pacman/local/brotli-1.0.9-1/desc
+++ b/msys2/var/lib/pacman/local/brotli-1.0.9-1/desc
@@ -20,7 +20,7 @@ x86_64
1603627078
%INSTALLDATE%
-1613407317
+1614499922
%PACKAGER%
CI (msys2-autobuild/b3385361/327177988)
diff --git a/msys2/var/lib/pacman/local/bsdtar-3.5.1-1/desc b/msys2/var/lib/pacman/local/bsdtar-3.5.1-1/desc
index e9de1eb7e..73ccc5564 100644
--- a/msys2/var/lib/pacman/local/bsdtar-3.5.1-1/desc
+++ b/msys2/var/lib/pacman/local/bsdtar-3.5.1-1/desc
@@ -20,7 +20,7 @@ x86_64
1610722113
%INSTALLDATE%
-1613407315
+1614499919
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/bzip2-1.0.8-2/desc b/msys2/var/lib/pacman/local/bzip2-1.0.8-2/desc
index cfeb87eeb..f2bbf09a3 100644
--- a/msys2/var/lib/pacman/local/bzip2-1.0.8-2/desc
+++ b/msys2/var/lib/pacman/local/bzip2-1.0.8-2/desc
@@ -20,7 +20,7 @@ x86_64
1587055041
%INSTALLDATE%
-1613407315
+1614499919
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/ca-certificates-20190110-1/desc b/msys2/var/lib/pacman/local/ca-certificates-20190110-1/desc
index b2d3f57fe..ec9c95449 100644
--- a/msys2/var/lib/pacman/local/ca-certificates-20190110-1/desc
+++ b/msys2/var/lib/pacman/local/ca-certificates-20190110-1/desc
@@ -20,7 +20,7 @@ any
1573155200
%INSTALLDATE%
-1613407316
+1614499921
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/coreutils-8.32-1/desc b/msys2/var/lib/pacman/local/coreutils-8.32-1/desc
index 8801db7cb..2563b8beb 100644
--- a/msys2/var/lib/pacman/local/coreutils-8.32-1/desc
+++ b/msys2/var/lib/pacman/local/coreutils-8.32-1/desc
@@ -20,7 +20,7 @@ x86_64
1583748603
%INSTALLDATE%
-1613407307
+1614499910
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/curl-7.74.0-4/desc b/msys2/var/lib/pacman/local/curl-7.74.0-4/desc
index a09078c72..c6037b394 100644
--- a/msys2/var/lib/pacman/local/curl-7.74.0-4/desc
+++ b/msys2/var/lib/pacman/local/curl-7.74.0-4/desc
@@ -20,7 +20,7 @@ x86_64
1608526923
%INSTALLDATE%
-1613407320
+1614499926
%PACKAGER%
CI (msys2-autobuild/dfb80bed/434829238)
diff --git a/msys2/var/lib/pacman/local/dash-0.5.11.3-1/desc b/msys2/var/lib/pacman/local/dash-0.5.11.3-1/desc
index f42697437..1daf4dd5b 100644
--- a/msys2/var/lib/pacman/local/dash-0.5.11.3-1/desc
+++ b/msys2/var/lib/pacman/local/dash-0.5.11.3-1/desc
@@ -20,7 +20,7 @@ x86_64
1610719150
%INSTALLDATE%
-1613407320
+1614499926
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/db-5.3.28-3/desc b/msys2/var/lib/pacman/local/db-5.3.28-3/desc
index b89ebb472..a82a1cb76 100644
--- a/msys2/var/lib/pacman/local/db-5.3.28-3/desc
+++ b/msys2/var/lib/pacman/local/db-5.3.28-3/desc
@@ -20,7 +20,7 @@ x86_64
1596190967
%INSTALLDATE%
-1613407323
+1614499929
%PACKAGER%
Unknown Packager
diff --git a/msys2/var/lib/pacman/local/file-5.39-2/desc b/msys2/var/lib/pacman/local/file-5.39-2/desc
index 05a5268f7..fb50cccf4 100644
--- a/msys2/var/lib/pacman/local/file-5.39-2/desc
+++ b/msys2/var/lib/pacman/local/file-5.39-2/desc
@@ -20,7 +20,7 @@ x86_64
1603746826
%INSTALLDATE%
-1613407320
+1614499926
%PACKAGER%
CI (msys2-autobuild/6e7d6a99/329884236)
diff --git a/msys2/var/lib/pacman/local/filesystem-2021.02-1/desc b/msys2/var/lib/pacman/local/filesystem-2021.02-1/desc
index 77724cae8..54d6b0060 100644
--- a/msys2/var/lib/pacman/local/filesystem-2021.02-1/desc
+++ b/msys2/var/lib/pacman/local/filesystem-2021.02-1/desc
@@ -20,7 +20,7 @@ x86_64
1613139602
%INSTALLDATE%
-1613407320
+1614499926
%PACKAGER%
CI (msys2-autobuild/571bdbec/561237203)
diff --git a/msys2/var/lib/pacman/local/findutils-4.7.0-1/desc b/msys2/var/lib/pacman/local/findutils-4.7.0-1/desc
index c20e5b15f..4202b0075 100644
--- a/msys2/var/lib/pacman/local/findutils-4.7.0-1/desc
+++ b/msys2/var/lib/pacman/local/findutils-4.7.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1569908782
%INSTALLDATE%
-1613407315
+1614499920
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/gawk-5.1.0-1/desc b/msys2/var/lib/pacman/local/gawk-5.1.0-1/desc
index b9765d690..3bb4f49dd 100644
--- a/msys2/var/lib/pacman/local/gawk-5.1.0-1/desc
+++ b/msys2/var/lib/pacman/local/gawk-5.1.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1586938450
%INSTALLDATE%
-1613407321
+1614499926
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/gcc-libs-10.2.0-1/desc b/msys2/var/lib/pacman/local/gcc-libs-10.2.0-1/desc
index 9452ed348..ad7b0b369 100644
--- a/msys2/var/lib/pacman/local/gcc-libs-10.2.0-1/desc
+++ b/msys2/var/lib/pacman/local/gcc-libs-10.2.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1603718719
%INSTALLDATE%
-1613407306
+1614499909
%PACKAGER%
CI (msys2-autobuild/6e7d6a99/329091173)
diff --git a/msys2/var/lib/pacman/local/gdbm-1.19-1/desc b/msys2/var/lib/pacman/local/gdbm-1.19-1/desc
index 3bc4e81c5..ea0ed8849 100644
--- a/msys2/var/lib/pacman/local/gdbm-1.19-1/desc
+++ b/msys2/var/lib/pacman/local/gdbm-1.19-1/desc
@@ -20,7 +20,7 @@ x86_64
1610718799
%INSTALLDATE%
-1613407324
+1614499929
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/getent-2.18.90-2/desc b/msys2/var/lib/pacman/local/getent-2.18.90-2/desc
index 08397933c..5d0b2616e 100644
--- a/msys2/var/lib/pacman/local/getent-2.18.90-2/desc
+++ b/msys2/var/lib/pacman/local/getent-2.18.90-2/desc
@@ -17,7 +17,7 @@ x86_64
1485923869
%INSTALLDATE%
-1613407321
+1614499927
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/gettext-0.19.8.1-1/desc b/msys2/var/lib/pacman/local/gettext-0.19.8.1-1/desc
index 839323e71..996fe75e6 100644
--- a/msys2/var/lib/pacman/local/gettext-0.19.8.1-1/desc
+++ b/msys2/var/lib/pacman/local/gettext-0.19.8.1-1/desc
@@ -20,7 +20,7 @@ x86_64
1496228139
%INSTALLDATE%
-1613407306
+1614499910
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/glib2-2.66.6-1/desc b/msys2/var/lib/pacman/local/glib2-2.66.6-1/desc
index ae324698c..f071a146b 100644
--- a/msys2/var/lib/pacman/local/glib2-2.66.6-1/desc
+++ b/msys2/var/lib/pacman/local/glib2-2.66.6-1/desc
@@ -20,7 +20,7 @@ x86_64
1612521129
%INSTALLDATE%
-1613407316
+1614499921
%PACKAGER%
CI (msys2-autobuild/04735f8c/540070067)
diff --git a/msys2/var/lib/pacman/local/gmp-6.2.1-1/desc b/msys2/var/lib/pacman/local/gmp-6.2.1-1/desc
index 96fab9caf..ace321307 100644
--- a/msys2/var/lib/pacman/local/gmp-6.2.1-1/desc
+++ b/msys2/var/lib/pacman/local/gmp-6.2.1-1/desc
@@ -20,7 +20,7 @@ x86_64
1608478656
%INSTALLDATE%
-1613407306
+1614499910
%PACKAGER%
CI (msys2-autobuild/dfb80bed/434077555)
diff --git a/msys2/var/lib/pacman/local/gnupg-2.2.27-1/desc b/msys2/var/lib/pacman/local/gnupg-2.2.27-1/desc
index 71d5dfd03..9ac6bf0cc 100644
--- a/msys2/var/lib/pacman/local/gnupg-2.2.27-1/desc
+++ b/msys2/var/lib/pacman/local/gnupg-2.2.27-1/desc
@@ -20,7 +20,7 @@ x86_64
1610723247
%INSTALLDATE%
-1613407323
+1614499928
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/grep-3.0-2/desc b/msys2/var/lib/pacman/local/grep-3.0-2/desc
index 32047b6e7..1e4af1caa 100644
--- a/msys2/var/lib/pacman/local/grep-3.0-2/desc
+++ b/msys2/var/lib/pacman/local/grep-3.0-2/desc
@@ -20,7 +20,7 @@ x86_64
1544007219
%INSTALLDATE%
-1613407320
+1614499926
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/gzip-1.10-1/desc b/msys2/var/lib/pacman/local/gzip-1.10-1/desc
index 3ced9cca2..35837f9d4 100644
--- a/msys2/var/lib/pacman/local/gzip-1.10-1/desc
+++ b/msys2/var/lib/pacman/local/gzip-1.10-1/desc
@@ -20,7 +20,7 @@ x86_64
1547616118
%INSTALLDATE%
-1613407316
+1614499920
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/heimdal-libs-7.7.0-2/desc b/msys2/var/lib/pacman/local/heimdal-libs-7.7.0-2/desc
index 12b4c774a..0e72e8e42 100644
--- a/msys2/var/lib/pacman/local/heimdal-libs-7.7.0-2/desc
+++ b/msys2/var/lib/pacman/local/heimdal-libs-7.7.0-2/desc
@@ -20,7 +20,7 @@ x86_64
1598301435
%INSTALLDATE%
-1613407319
+1614499924
%PACKAGER%
CI (msys2-autobuild/d1574a20/222597704)
diff --git a/msys2/var/lib/pacman/local/icu-68.2-1/desc b/msys2/var/lib/pacman/local/icu-68.2-1/desc
index d4c61caf9..36e8187b0 100644
--- a/msys2/var/lib/pacman/local/icu-68.2-1/desc
+++ b/msys2/var/lib/pacman/local/icu-68.2-1/desc
@@ -20,7 +20,7 @@ x86_64
1610718043
%INSTALLDATE%
-1613407307
+1614499911
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/inetutils-1.9.4-2/desc b/msys2/var/lib/pacman/local/inetutils-1.9.4-2/desc
index b3556bbd5..6f5232166 100644
--- a/msys2/var/lib/pacman/local/inetutils-1.9.4-2/desc
+++ b/msys2/var/lib/pacman/local/inetutils-1.9.4-2/desc
@@ -20,7 +20,7 @@ x86_64
1556608263
%INSTALLDATE%
-1613407321
+1614499927
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/info-6.7-3/desc b/msys2/var/lib/pacman/local/info-6.7-3/desc
index 78b022eb7..47e9cde50 100644
--- a/msys2/var/lib/pacman/local/info-6.7-3/desc
+++ b/msys2/var/lib/pacman/local/info-6.7-3/desc
@@ -20,7 +20,7 @@ x86_64
1599215574
%INSTALLDATE%
-1613407316
+1614499920
%PACKAGER%
CI (msys2-autobuild/0178d212/239112892)
diff --git a/msys2/var/lib/pacman/local/less-563-2/desc b/msys2/var/lib/pacman/local/less-563-2/desc
index 507a69b28..e8b6c41d0 100644
--- a/msys2/var/lib/pacman/local/less-563-2/desc
+++ b/msys2/var/lib/pacman/local/less-563-2/desc
@@ -20,7 +20,7 @@ x86_64
1603610836
%INSTALLDATE%
-1613407315
+1614499920
%PACKAGER%
CI (msys2-autobuild/b3385361/326974552)
diff --git a/msys2/var/lib/pacman/local/libargp-20110921-2/desc b/msys2/var/lib/pacman/local/libargp-20110921-2/desc
index ed53dc955..19935ede9 100644
--- a/msys2/var/lib/pacman/local/libargp-20110921-2/desc
+++ b/msys2/var/lib/pacman/local/libargp-20110921-2/desc
@@ -20,7 +20,7 @@ x86_64
1538484763
%INSTALLDATE%
-1613407321
+1614499927
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libasprintf-0.19.8.1-1/desc b/msys2/var/lib/pacman/local/libasprintf-0.19.8.1-1/desc
index 91ef00452..bd19311be 100644
--- a/msys2/var/lib/pacman/local/libasprintf-0.19.8.1-1/desc
+++ b/msys2/var/lib/pacman/local/libasprintf-0.19.8.1-1/desc
@@ -20,7 +20,7 @@ x86_64
1496228167
%INSTALLDATE%
-1613407306
+1614499909
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libassuan-2.5.4-1/desc b/msys2/var/lib/pacman/local/libassuan-2.5.4-1/desc
index 87df04287..9ef4d1f1c 100644
--- a/msys2/var/lib/pacman/local/libassuan-2.5.4-1/desc
+++ b/msys2/var/lib/pacman/local/libassuan-2.5.4-1/desc
@@ -20,7 +20,7 @@ x86_64
1608495677
%INSTALLDATE%
-1613407322
+1614499927
%PACKAGER%
CI (msys2-autobuild/dfb80bed/434377774)
diff --git a/msys2/var/lib/pacman/local/libbz2-1.0.8-2/desc b/msys2/var/lib/pacman/local/libbz2-1.0.8-2/desc
index a60644904..6f918b6a8 100644
--- a/msys2/var/lib/pacman/local/libbz2-1.0.8-2/desc
+++ b/msys2/var/lib/pacman/local/libbz2-1.0.8-2/desc
@@ -20,7 +20,7 @@ x86_64
1587055041
%INSTALLDATE%
-1613407306
+1614499909
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libcrypt-2.1-2/desc b/msys2/var/lib/pacman/local/libcrypt-2.1-2/desc
index 67e539381..b0e992260 100644
--- a/msys2/var/lib/pacman/local/libcrypt-2.1-2/desc
+++ b/msys2/var/lib/pacman/local/libcrypt-2.1-2/desc
@@ -20,7 +20,7 @@ x86_64
1532680008
%INSTALLDATE%
-1613407316
+1614499920
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libcurl-7.74.0-4/desc b/msys2/var/lib/pacman/local/libcurl-7.74.0-4/desc
index 18a9715e4..14c068221 100644
--- a/msys2/var/lib/pacman/local/libcurl-7.74.0-4/desc
+++ b/msys2/var/lib/pacman/local/libcurl-7.74.0-4/desc
@@ -20,7 +20,7 @@ x86_64
1608526923
%INSTALLDATE%
-1613407319
+1614499925
%PACKAGER%
CI (msys2-autobuild/dfb80bed/434829238)
diff --git a/msys2/var/lib/pacman/local/libdb-5.3.28-3/desc b/msys2/var/lib/pacman/local/libdb-5.3.28-3/desc
index 216c21386..74ddaec57 100644
--- a/msys2/var/lib/pacman/local/libdb-5.3.28-3/desc
+++ b/msys2/var/lib/pacman/local/libdb-5.3.28-3/desc
@@ -20,7 +20,7 @@ x86_64
1596190967
%INSTALLDATE%
-1613407317
+1614499922
%PACKAGER%
Unknown Packager
diff --git a/msys2/var/lib/pacman/local/libedit-20191231_3.1-2/desc b/msys2/var/lib/pacman/local/libedit-20191231_3.1-2/desc
index 85c28f09c..a380f36ad 100644
--- a/msys2/var/lib/pacman/local/libedit-20191231_3.1-2/desc
+++ b/msys2/var/lib/pacman/local/libedit-20191231_3.1-2/desc
@@ -20,7 +20,7 @@ x86_64
1606472451
%INSTALLDATE%
-1613407317
+1614499922
%PACKAGER%
CI (msys2-autobuild/599a5db8/386873721)
diff --git a/msys2/var/lib/pacman/local/libexpat-2.2.10-1/desc b/msys2/var/lib/pacman/local/libexpat-2.2.10-1/desc
index 55f5de7a7..af9dba2e6 100644
--- a/msys2/var/lib/pacman/local/libexpat-2.2.10-1/desc
+++ b/msys2/var/lib/pacman/local/libexpat-2.2.10-1/desc
@@ -20,7 +20,7 @@ x86_64
1603462769
%INSTALLDATE%
-1613407306
+1614499909
%PACKAGER%
CI (msys2-autobuild/dcf3c2cf/324294766)
diff --git a/msys2/var/lib/pacman/local/libffi-3.3-1/desc b/msys2/var/lib/pacman/local/libffi-3.3-1/desc
index cdfbb59ff..4a35485b3 100644
--- a/msys2/var/lib/pacman/local/libffi-3.3-1/desc
+++ b/msys2/var/lib/pacman/local/libffi-3.3-1/desc
@@ -20,7 +20,7 @@ x86_64
1586985077
%INSTALLDATE%
-1613407315
+1614499920
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libgcrypt-1.8.7-1/desc b/msys2/var/lib/pacman/local/libgcrypt-1.8.7-1/desc
index bd44fb362..9407f5cbb 100644
--- a/msys2/var/lib/pacman/local/libgcrypt-1.8.7-1/desc
+++ b/msys2/var/lib/pacman/local/libgcrypt-1.8.7-1/desc
@@ -20,7 +20,7 @@ x86_64
1603700272
%INSTALLDATE%
-1613407316
+1614499920
%PACKAGER%
CI (msys2-autobuild/6e7d6a99/328625740)
diff --git a/msys2/var/lib/pacman/local/libgdbm-1.19-1/desc b/msys2/var/lib/pacman/local/libgdbm-1.19-1/desc
index cda07b723..12b33cce0 100644
--- a/msys2/var/lib/pacman/local/libgdbm-1.19-1/desc
+++ b/msys2/var/lib/pacman/local/libgdbm-1.19-1/desc
@@ -20,7 +20,7 @@ x86_64
1610718799
%INSTALLDATE%
-1613407323
+1614499929
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/libgettextpo-0.19.8.1-1/desc b/msys2/var/lib/pacman/local/libgettextpo-0.19.8.1-1/desc
index 142f5c6a1..1e535f4c3 100644
--- a/msys2/var/lib/pacman/local/libgettextpo-0.19.8.1-1/desc
+++ b/msys2/var/lib/pacman/local/libgettextpo-0.19.8.1-1/desc
@@ -20,7 +20,7 @@ x86_64
1496228161
%INSTALLDATE%
-1613407306
+1614499909
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libgnutls-3.7.0-1/desc b/msys2/var/lib/pacman/local/libgnutls-3.7.0-1/desc
index 314c6fd70..b9c84c3b6 100644
--- a/msys2/var/lib/pacman/local/libgnutls-3.7.0-1/desc
+++ b/msys2/var/lib/pacman/local/libgnutls-3.7.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1607638585
%INSTALLDATE%
-1613407322
+1614499927
%PACKAGER%
CI (msys2-autobuild/378bff86/414000399)
diff --git a/msys2/var/lib/pacman/local/libgpg-error-1.41-2/desc b/msys2/var/lib/pacman/local/libgpg-error-1.41-2/desc
index 092479e6f..382e5e306 100644
--- a/msys2/var/lib/pacman/local/libgpg-error-1.41-2/desc
+++ b/msys2/var/lib/pacman/local/libgpg-error-1.41-2/desc
@@ -20,7 +20,7 @@ x86_64
1610719224
%INSTALLDATE%
-1613407316
+1614499920
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/libgpgme-1.15.1-1/desc b/msys2/var/lib/pacman/local/libgpgme-1.15.1-1/desc
index f20ff935a..d1578ec62 100644
--- a/msys2/var/lib/pacman/local/libgpgme-1.15.1-1/desc
+++ b/msys2/var/lib/pacman/local/libgpgme-1.15.1-1/desc
@@ -20,7 +20,7 @@ x86_64
1610724826
%INSTALLDATE%
-1613407330
+1614499936
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/libhogweed-3.7-1/desc b/msys2/var/lib/pacman/local/libhogweed-3.7-1/desc
index dc313781a..036fbd54d 100644
--- a/msys2/var/lib/pacman/local/libhogweed-3.7-1/desc
+++ b/msys2/var/lib/pacman/local/libhogweed-3.7-1/desc
@@ -20,7 +20,7 @@ x86_64
1610718588
%INSTALLDATE%
-1613407306
+1614499910
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/libiconv-1.16-2/desc b/msys2/var/lib/pacman/local/libiconv-1.16-2/desc
index 73d2a863e..f42672485 100644
--- a/msys2/var/lib/pacman/local/libiconv-1.16-2/desc
+++ b/msys2/var/lib/pacman/local/libiconv-1.16-2/desc
@@ -20,7 +20,7 @@ x86_64
1599582030
%INSTALLDATE%
-1613407306
+1614499909
%PACKAGER%
CI (msys2-autobuild/11198cf8/244877582)
diff --git a/msys2/var/lib/pacman/local/libidn2-2.3.0-1/desc b/msys2/var/lib/pacman/local/libidn2-2.3.0-1/desc
index d47609a89..baee16aa3 100644
--- a/msys2/var/lib/pacman/local/libidn2-2.3.0-1/desc
+++ b/msys2/var/lib/pacman/local/libidn2-2.3.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1579072198
%INSTALLDATE%
-1613407319
+1614499925
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libintl-0.19.8.1-1/desc b/msys2/var/lib/pacman/local/libintl-0.19.8.1-1/desc
index c3e4f02d4..096843d82 100644
--- a/msys2/var/lib/pacman/local/libintl-0.19.8.1-1/desc
+++ b/msys2/var/lib/pacman/local/libintl-0.19.8.1-1/desc
@@ -20,7 +20,7 @@ x86_64
1496228176
%INSTALLDATE%
-1613407306
+1614499909
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libksba-1.4.0-1/desc b/msys2/var/lib/pacman/local/libksba-1.4.0-1/desc
index b36f7db3f..721e61f88 100644
--- a/msys2/var/lib/pacman/local/libksba-1.4.0-1/desc
+++ b/msys2/var/lib/pacman/local/libksba-1.4.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1591447572
%INSTALLDATE%
-1613407322
+1614499928
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/liblz4-1.9.3-1/desc b/msys2/var/lib/pacman/local/liblz4-1.9.3-1/desc
index 046de514d..5e75b3494 100644
--- a/msys2/var/lib/pacman/local/liblz4-1.9.3-1/desc
+++ b/msys2/var/lib/pacman/local/liblz4-1.9.3-1/desc
@@ -20,7 +20,7 @@ x86_64
1607636972
%INSTALLDATE%
-1613407306
+1614499910
%PACKAGER%
CI (msys2-autobuild/378bff86/414000399)
diff --git a/msys2/var/lib/pacman/local/liblzma-5.2.5-1/desc b/msys2/var/lib/pacman/local/liblzma-5.2.5-1/desc
index 433de319a..2b3f157ab 100644
--- a/msys2/var/lib/pacman/local/liblzma-5.2.5-1/desc
+++ b/msys2/var/lib/pacman/local/liblzma-5.2.5-1/desc
@@ -20,7 +20,7 @@ x86_64
1584529151
%INSTALLDATE%
-1613407306
+1614499910
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libmetalink-0.1.3-3/desc b/msys2/var/lib/pacman/local/libmetalink-0.1.3-3/desc
index ef3af40b9..a12af1809 100644
--- a/msys2/var/lib/pacman/local/libmetalink-0.1.3-3/desc
+++ b/msys2/var/lib/pacman/local/libmetalink-0.1.3-3/desc
@@ -20,7 +20,7 @@ x86_64
1596399854
%INSTALLDATE%
-1613407319
+1614499925
%PACKAGER%
CI (msys2-devtools/e835e769/192445856)
diff --git a/msys2/var/lib/pacman/local/libnettle-3.7-1/desc b/msys2/var/lib/pacman/local/libnettle-3.7-1/desc
index 9955eb4a1..2f7803049 100644
--- a/msys2/var/lib/pacman/local/libnettle-3.7-1/desc
+++ b/msys2/var/lib/pacman/local/libnettle-3.7-1/desc
@@ -20,7 +20,7 @@ x86_64
1610718588
%INSTALLDATE%
-1613407306
+1614499910
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/libnghttp2-1.41.0-1/desc b/msys2/var/lib/pacman/local/libnghttp2-1.41.0-1/desc
index dc3cb449d..f5602ee3c 100644
--- a/msys2/var/lib/pacman/local/libnghttp2-1.41.0-1/desc
+++ b/msys2/var/lib/pacman/local/libnghttp2-1.41.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1591451525
%INSTALLDATE%
-1613407319
+1614499925
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libnpth-1.6-1/desc b/msys2/var/lib/pacman/local/libnpth-1.6-1/desc
index 94a82efe4..5915e7d84 100644
--- a/msys2/var/lib/pacman/local/libnpth-1.6-1/desc
+++ b/msys2/var/lib/pacman/local/libnpth-1.6-1/desc
@@ -20,7 +20,7 @@ x86_64
1533712407
%INSTALLDATE%
-1613407322
+1614499928
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libopenssl-1.1.1.i-1/desc b/msys2/var/lib/pacman/local/libopenssl-1.1.1.i-1/desc
index 2255c3aba..b3962bf8e 100644
--- a/msys2/var/lib/pacman/local/libopenssl-1.1.1.i-1/desc
+++ b/msys2/var/lib/pacman/local/libopenssl-1.1.1.i-1/desc
@@ -20,7 +20,7 @@ x86_64
1607637112
%INSTALLDATE%
-1613407315
+1614499920
%PACKAGER%
CI (msys2-autobuild/378bff86/414000399)
diff --git a/msys2/var/lib/pacman/local/libp11-kit-0.23.22-2/desc b/msys2/var/lib/pacman/local/libp11-kit-0.23.22-2/desc
index ef81e3d81..e372010f7 100644
--- a/msys2/var/lib/pacman/local/libp11-kit-0.23.22-2/desc
+++ b/msys2/var/lib/pacman/local/libp11-kit-0.23.22-2/desc
@@ -20,7 +20,7 @@ x86_64
1610722793
%INSTALLDATE%
-1613407316
+1614499921
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/libpcre-8.44-1/desc b/msys2/var/lib/pacman/local/libpcre-8.44-1/desc
index 3c27b95de..4dfda059c 100644
--- a/msys2/var/lib/pacman/local/libpcre-8.44-1/desc
+++ b/msys2/var/lib/pacman/local/libpcre-8.44-1/desc
@@ -20,7 +20,7 @@ x86_64
1584444106
%INSTALLDATE%
-1613407315
+1614499920
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libpcre2_8-10.36-1/desc b/msys2/var/lib/pacman/local/libpcre2_8-10.36-1/desc
index d046e1a7c..b5caefed4 100644
--- a/msys2/var/lib/pacman/local/libpcre2_8-10.36-1/desc
+++ b/msys2/var/lib/pacman/local/libpcre2_8-10.36-1/desc
@@ -20,7 +20,7 @@ x86_64
1607638233
%INSTALLDATE%
-1613407330
+1614499937
%PACKAGER%
CI (msys2-autobuild/378bff86/414000399)
diff --git a/msys2/var/lib/pacman/local/libpsl-0.21.1-2/desc b/msys2/var/lib/pacman/local/libpsl-0.21.1-2/desc
index 089a6dafe..9efc8f8c3 100644
--- a/msys2/var/lib/pacman/local/libpsl-0.21.1-2/desc
+++ b/msys2/var/lib/pacman/local/libpsl-0.21.1-2/desc
@@ -20,7 +20,7 @@ x86_64
1603608788
%INSTALLDATE%
-1613407319
+1614499925
%PACKAGER%
CI (msys2-autobuild/b3385361/326974552)
diff --git a/msys2/var/lib/pacman/local/libreadline-8.1.0-1/desc b/msys2/var/lib/pacman/local/libreadline-8.1.0-1/desc
index 26ac645b1..cc80e3da2 100644
--- a/msys2/var/lib/pacman/local/libreadline-8.1.0-1/desc
+++ b/msys2/var/lib/pacman/local/libreadline-8.1.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1608495510
%INSTALLDATE%
-1613407314
+1614499919
%PACKAGER%
CI (msys2-autobuild/dfb80bed/434377774)
diff --git a/msys2/var/lib/pacman/local/libsqlite-3.34.0-1/desc b/msys2/var/lib/pacman/local/libsqlite-3.34.0-1/desc
index fbd41171b..a34ff18e4 100644
--- a/msys2/var/lib/pacman/local/libsqlite-3.34.0-1/desc
+++ b/msys2/var/lib/pacman/local/libsqlite-3.34.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1607416684
%INSTALLDATE%
-1613407319
+1614499924
%PACKAGER%
CI (msys2-autobuild/c220de72/407794967)
diff --git a/msys2/var/lib/pacman/local/libssh2-1.9.0-1/desc b/msys2/var/lib/pacman/local/libssh2-1.9.0-1/desc
index cd827c1ce..adf090f32 100644
--- a/msys2/var/lib/pacman/local/libssh2-1.9.0-1/desc
+++ b/msys2/var/lib/pacman/local/libssh2-1.9.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1569828870
%INSTALLDATE%
-1613407319
+1614499925
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libtasn1-4.16.0-1/desc b/msys2/var/lib/pacman/local/libtasn1-4.16.0-1/desc
index 0427cd3ff..d1fa0192b 100644
--- a/msys2/var/lib/pacman/local/libtasn1-4.16.0-1/desc
+++ b/msys2/var/lib/pacman/local/libtasn1-4.16.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1580973077
%INSTALLDATE%
-1613407316
+1614499920
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libunistring-0.9.10-1/desc b/msys2/var/lib/pacman/local/libunistring-0.9.10-1/desc
index f68e3ad9d..9c0e6d430 100644
--- a/msys2/var/lib/pacman/local/libunistring-0.9.10-1/desc
+++ b/msys2/var/lib/pacman/local/libunistring-0.9.10-1/desc
@@ -20,7 +20,7 @@ x86_64
1530004479
%INSTALLDATE%
-1613407319
+1614499925
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libutil-linux-2.35.2-1/desc b/msys2/var/lib/pacman/local/libutil-linux-2.35.2-1/desc
index f9c58da0c..26566edb5 100644
--- a/msys2/var/lib/pacman/local/libutil-linux-2.35.2-1/desc
+++ b/msys2/var/lib/pacman/local/libutil-linux-2.35.2-1/desc
@@ -20,7 +20,7 @@ x86_64
1595318032
%INSTALLDATE%
-1613407329
+1614499936
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libxml2-2.9.10-7/desc b/msys2/var/lib/pacman/local/libxml2-2.9.10-7/desc
index fe8d49bb7..b2ad5e2cf 100644
--- a/msys2/var/lib/pacman/local/libxml2-2.9.10-7/desc
+++ b/msys2/var/lib/pacman/local/libxml2-2.9.10-7/desc
@@ -20,7 +20,7 @@ x86_64
1610721604
%INSTALLDATE%
-1613407314
+1614499919
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/libxslt-1.1.34-3/desc b/msys2/var/lib/pacman/local/libxslt-1.1.34-3/desc
index 1c5c51cf2..2a0884069 100644
--- a/msys2/var/lib/pacman/local/libxslt-1.1.34-3/desc
+++ b/msys2/var/lib/pacman/local/libxslt-1.1.34-3/desc
@@ -20,7 +20,7 @@ x86_64
1587193199
%INSTALLDATE%
-1613407316
+1614499921
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/libzstd-1.4.8-1/desc b/msys2/var/lib/pacman/local/libzstd-1.4.8-1/desc
index 6ec1a8efd..931bcecfa 100644
--- a/msys2/var/lib/pacman/local/libzstd-1.4.8-1/desc
+++ b/msys2/var/lib/pacman/local/libzstd-1.4.8-1/desc
@@ -20,7 +20,7 @@ x86_64
1608526739
%INSTALLDATE%
-1613407315
+1614499919
%PACKAGER%
CI (msys2-autobuild/dfb80bed/434829238)
diff --git a/msys2/var/lib/pacman/local/mintty-1~3.4.4-2/mtree b/msys2/var/lib/pacman/local/mintty-1~3.4.4-2/mtree
deleted file mode 100644
index ecbdcbe0f..000000000
Binary files a/msys2/var/lib/pacman/local/mintty-1~3.4.4-2/mtree and /dev/null differ
diff --git a/msys2/var/lib/pacman/local/mintty-1~3.4.4-2/desc b/msys2/var/lib/pacman/local/mintty-1~3.4.5-1/desc
similarity index 76%
rename from msys2/var/lib/pacman/local/mintty-1~3.4.4-2/desc
rename to msys2/var/lib/pacman/local/mintty-1~3.4.5-1/desc
index 3c8c69795..c5d41b77f 100644
--- a/msys2/var/lib/pacman/local/mintty-1~3.4.4-2/desc
+++ b/msys2/var/lib/pacman/local/mintty-1~3.4.5-1/desc
@@ -2,7 +2,7 @@
mintty
%VERSION%
-1~3.4.4-2
+1~3.4.5-1
%BASE%
mintty
@@ -17,16 +17,16 @@ https://mintty.github.io
x86_64
%BUILDDATE%
-1612728568
+1613590556
%INSTALLDATE%
-1613407321
+1614499927
%PACKAGER%
-CI (msys2-autobuild/770dca45/545958421)
+CI (msys2-autobuild/571bdbec/575929918)
%SIZE%
-2218579
+2257996
%REASON%
1
diff --git a/msys2/var/lib/pacman/local/mintty-1~3.4.4-2/files b/msys2/var/lib/pacman/local/mintty-1~3.4.5-1/files
similarity index 97%
rename from msys2/var/lib/pacman/local/mintty-1~3.4.4-2/files
rename to msys2/var/lib/pacman/local/mintty-1~3.4.5-1/files
index d70001081..5a4bd6137 100644
--- a/msys2/var/lib/pacman/local/mintty-1~3.4.4-2/files
+++ b/msys2/var/lib/pacman/local/mintty-1~3.4.5-1/files
@@ -27,6 +27,8 @@ usr/share/icons/hicolor/64x64/apps/mintty.png
usr/share/licenses/
usr/share/licenses/mintty/
usr/share/licenses/mintty/LICENSE
+usr/share/licenses/mintty/LICENSE.bundling
+usr/share/licenses/mintty/LICENSE.GPL
usr/share/licenses/mintty/LICENSE.Oxygen
usr/share/licenses/mintty/LICENSE.PuTTY
usr/share/man/
diff --git a/msys2/var/lib/pacman/local/mintty-1~3.4.5-1/mtree b/msys2/var/lib/pacman/local/mintty-1~3.4.5-1/mtree
new file mode 100644
index 000000000..088bda894
Binary files /dev/null and b/msys2/var/lib/pacman/local/mintty-1~3.4.5-1/mtree differ
diff --git a/msys2/var/lib/pacman/local/mpfr-4.1.0-1/desc b/msys2/var/lib/pacman/local/mpfr-4.1.0-1/desc
index 6f53a3cf8..da9c2934f 100644
--- a/msys2/var/lib/pacman/local/mpfr-4.1.0-1/desc
+++ b/msys2/var/lib/pacman/local/mpfr-4.1.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1594968368
%INSTALLDATE%
-1613407321
+1614499926
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/msys2-keyring-1~20210213-1/desc b/msys2/var/lib/pacman/local/msys2-keyring-1~20210213-1/desc
index bccac8c90..f0da6acb0 100644
--- a/msys2/var/lib/pacman/local/msys2-keyring-1~20210213-1/desc
+++ b/msys2/var/lib/pacman/local/msys2-keyring-1~20210213-1/desc
@@ -20,7 +20,7 @@ any
1613244505
%INSTALLDATE%
-1613407321
+1614499927
%PACKAGER%
CI (msys2-autobuild/571bdbec/564357706)
diff --git a/msys2/var/lib/pacman/local/msys2-launcher-1.0-1/desc b/msys2/var/lib/pacman/local/msys2-launcher-1.0-1/desc
index c9c2dc328..556653548 100644
--- a/msys2/var/lib/pacman/local/msys2-launcher-1.0-1/desc
+++ b/msys2/var/lib/pacman/local/msys2-launcher-1.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1590831820
%INSTALLDATE%
-1613407321
+1614499927
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/msys2-runtime-3.1.7-4/desc b/msys2/var/lib/pacman/local/msys2-runtime-3.1.7-4/desc
index b97d08a9d..c047fbe62 100644
--- a/msys2/var/lib/pacman/local/msys2-runtime-3.1.7-4/desc
+++ b/msys2/var/lib/pacman/local/msys2-runtime-3.1.7-4/desc
@@ -20,7 +20,7 @@ x86_64
1604838298
%INSTALLDATE%
-1613407308
+1614499911
%PACKAGER%
CI (msys2-autobuild/6e7d6a99/352268253)
diff --git a/msys2/var/lib/pacman/local/nano-5.4-1/desc b/msys2/var/lib/pacman/local/nano-5.4-1/desc
index c26909b8d..d75530050 100644
--- a/msys2/var/lib/pacman/local/nano-5.4-1/desc
+++ b/msys2/var/lib/pacman/local/nano-5.4-1/desc
@@ -20,7 +20,7 @@ x86_64
1608502290
%INSTALLDATE%
-1613407322
+1614499927
%PACKAGER%
CI (msys2-autobuild/dfb80bed/434377774)
diff --git a/msys2/var/lib/pacman/local/ncurses-6.2-1/desc b/msys2/var/lib/pacman/local/ncurses-6.2-1/desc
index d5cd213c6..c93e70056 100644
--- a/msys2/var/lib/pacman/local/ncurses-6.2-1/desc
+++ b/msys2/var/lib/pacman/local/ncurses-6.2-1/desc
@@ -20,7 +20,7 @@ x86_64
1581921893
%INSTALLDATE%
-1613407314
+1614499919
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/nettle-3.7-1/desc b/msys2/var/lib/pacman/local/nettle-3.7-1/desc
index fdc9ec815..f79cc0e20 100644
--- a/msys2/var/lib/pacman/local/nettle-3.7-1/desc
+++ b/msys2/var/lib/pacman/local/nettle-3.7-1/desc
@@ -20,7 +20,7 @@ x86_64
1610718588
%INSTALLDATE%
-1613407322
+1614499928
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/openssl-1.1.1.i-1/desc b/msys2/var/lib/pacman/local/openssl-1.1.1.i-1/desc
index 279ecf7db..ae1063848 100644
--- a/msys2/var/lib/pacman/local/openssl-1.1.1.i-1/desc
+++ b/msys2/var/lib/pacman/local/openssl-1.1.1.i-1/desc
@@ -20,7 +20,7 @@ x86_64
1607637112
%INSTALLDATE%
-1613407315
+1614499920
%PACKAGER%
CI (msys2-autobuild/378bff86/414000399)
diff --git a/msys2/var/lib/pacman/local/p11-kit-0.23.22-2/desc b/msys2/var/lib/pacman/local/p11-kit-0.23.22-2/desc
index e5aeb5e27..f328b4b9b 100644
--- a/msys2/var/lib/pacman/local/p11-kit-0.23.22-2/desc
+++ b/msys2/var/lib/pacman/local/p11-kit-0.23.22-2/desc
@@ -20,7 +20,7 @@ x86_64
1610722793
%INSTALLDATE%
-1613407316
+1614499921
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/pacman-5.2.2-12/desc b/msys2/var/lib/pacman/local/pacman-5.2.2-12/desc
index 2d92e5097..d2c0df523 100644
--- a/msys2/var/lib/pacman/local/pacman-5.2.2-12/desc
+++ b/msys2/var/lib/pacman/local/pacman-5.2.2-12/desc
@@ -20,7 +20,7 @@ x86_64
1613207822
%INSTALLDATE%
-1613407323
+1614499929
%PACKAGER%
CI (msys2-autobuild/571bdbec/563416777)
diff --git a/msys2/var/lib/pacman/local/pacman-contrib-1.4.0-1/desc b/msys2/var/lib/pacman/local/pacman-contrib-1.4.0-1/desc
index e5a1f341d..1f2e47f9c 100644
--- a/msys2/var/lib/pacman/local/pacman-contrib-1.4.0-1/desc
+++ b/msys2/var/lib/pacman/local/pacman-contrib-1.4.0-1/desc
@@ -20,7 +20,7 @@ x86_64
1603628225
%INSTALLDATE%
-1613407327
+1614499933
%PACKAGER%
CI (msys2-autobuild/b3385361/327177988)
diff --git a/msys2/var/lib/pacman/local/pacman-mirrors-20210127-1/mtree b/msys2/var/lib/pacman/local/pacman-mirrors-20210127-1/mtree
deleted file mode 100644
index d6aad3172..000000000
Binary files a/msys2/var/lib/pacman/local/pacman-mirrors-20210127-1/mtree and /dev/null differ
diff --git a/msys2/var/lib/pacman/local/pacman-mirrors-20210127-1/desc b/msys2/var/lib/pacman/local/pacman-mirrors-20210227-1/desc
similarity index 76%
rename from msys2/var/lib/pacman/local/pacman-mirrors-20210127-1/desc
rename to msys2/var/lib/pacman/local/pacman-mirrors-20210227-1/desc
index e2be5200c..c6ea1009e 100644
--- a/msys2/var/lib/pacman/local/pacman-mirrors-20210127-1/desc
+++ b/msys2/var/lib/pacman/local/pacman-mirrors-20210227-1/desc
@@ -2,7 +2,7 @@
pacman-mirrors
%VERSION%
-20210127-1
+20210227-1
%BASE%
pacman-mirrors
@@ -17,16 +17,16 @@ https://www.msys2.org/dev/mirrors/
any
%BUILDDATE%
-1611779908
+1614423972
%INSTALLDATE%
-1613407323
+1614499928
%PACKAGER%
-CI (msys2-autobuild/4eaa5d39/516139984)
+CI (msys2-autobuild/f16726ab/605366766)
%SIZE%
-3831
+3959
%REASON%
1
diff --git a/msys2/var/lib/pacman/local/pacman-mirrors-20210127-1/files b/msys2/var/lib/pacman/local/pacman-mirrors-20210227-1/files
similarity index 100%
rename from msys2/var/lib/pacman/local/pacman-mirrors-20210127-1/files
rename to msys2/var/lib/pacman/local/pacman-mirrors-20210227-1/files
diff --git a/msys2/var/lib/pacman/local/pacman-mirrors-20210227-1/mtree b/msys2/var/lib/pacman/local/pacman-mirrors-20210227-1/mtree
new file mode 100644
index 000000000..6651e561e
Binary files /dev/null and b/msys2/var/lib/pacman/local/pacman-mirrors-20210227-1/mtree differ
diff --git a/msys2/var/lib/pacman/local/perl-5.32.0-2/desc b/msys2/var/lib/pacman/local/perl-5.32.0-2/desc
index ed09c558d..3161e00d2 100644
--- a/msys2/var/lib/pacman/local/perl-5.32.0-2/desc
+++ b/msys2/var/lib/pacman/local/perl-5.32.0-2/desc
@@ -20,7 +20,7 @@ x86_64
1598564438
%INSTALLDATE%
-1613407327
+1614499933
%PACKAGER%
CI (msys2-autobuild/dcde5668/227626603)
diff --git a/msys2/var/lib/pacman/local/pinentry-1.1.0-2/desc b/msys2/var/lib/pacman/local/pinentry-1.1.0-2/desc
index 951cad30f..51be83456 100644
--- a/msys2/var/lib/pacman/local/pinentry-1.1.0-2/desc
+++ b/msys2/var/lib/pacman/local/pinentry-1.1.0-2/desc
@@ -20,7 +20,7 @@ x86_64
1529987917
%INSTALLDATE%
-1613407322
+1614499928
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/rebase-4.4.4-2/desc b/msys2/var/lib/pacman/local/rebase-4.4.4-2/desc
index 6d57d0c72..7d72e66dd 100644
--- a/msys2/var/lib/pacman/local/rebase-4.4.4-2/desc
+++ b/msys2/var/lib/pacman/local/rebase-4.4.4-2/desc
@@ -20,7 +20,7 @@ x86_64
1599386428
%INSTALLDATE%
-1613407327
+1614499933
%PACKAGER%
CI (msys2-autobuild/0178d212/241477599)
diff --git a/msys2/var/lib/pacman/local/sed-4.8-1/desc b/msys2/var/lib/pacman/local/sed-4.8-1/desc
index 0444ea833..191ed8b04 100644
--- a/msys2/var/lib/pacman/local/sed-4.8-1/desc
+++ b/msys2/var/lib/pacman/local/sed-4.8-1/desc
@@ -20,7 +20,7 @@ x86_64
1579156783
%INSTALLDATE%
-1613407315
+1614499920
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/tcl-8.6.10-1/desc b/msys2/var/lib/pacman/local/tcl-8.6.10-1/desc
index d866800b3..09035726a 100644
--- a/msys2/var/lib/pacman/local/tcl-8.6.10-1/desc
+++ b/msys2/var/lib/pacman/local/tcl-8.6.10-1/desc
@@ -20,7 +20,7 @@ x86_64
1585121528
%INSTALLDATE%
-1613407319
+1614499924
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/tftp-hpa-5.2-3/desc b/msys2/var/lib/pacman/local/tftp-hpa-5.2-3/desc
index 292c2c845..e0f2c14f1 100644
--- a/msys2/var/lib/pacman/local/tftp-hpa-5.2-3/desc
+++ b/msys2/var/lib/pacman/local/tftp-hpa-5.2-3/desc
@@ -20,7 +20,7 @@ x86_64
1556610732
%INSTALLDATE%
-1613407321
+1614499927
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/time-1.9-1/desc b/msys2/var/lib/pacman/local/time-1.9-1/desc
index 6197a8451..fae6006e8 100644
--- a/msys2/var/lib/pacman/local/time-1.9-1/desc
+++ b/msys2/var/lib/pacman/local/time-1.9-1/desc
@@ -20,7 +20,7 @@ x86_64
1532679224
%INSTALLDATE%
-1613407327
+1614499933
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/tzcode-2020f-1/desc b/msys2/var/lib/pacman/local/tzcode-2020f-1/desc
index ed253414b..f7fc29506 100644
--- a/msys2/var/lib/pacman/local/tzcode-2020f-1/desc
+++ b/msys2/var/lib/pacman/local/tzcode-2020f-1/desc
@@ -20,7 +20,7 @@ x86_64
1610719799
%INSTALLDATE%
-1613407329
+1614499936
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/util-linux-2.35.2-1/desc b/msys2/var/lib/pacman/local/util-linux-2.35.2-1/desc
index cf62eab03..c7f3d5b37 100644
--- a/msys2/var/lib/pacman/local/util-linux-2.35.2-1/desc
+++ b/msys2/var/lib/pacman/local/util-linux-2.35.2-1/desc
@@ -20,7 +20,7 @@ x86_64
1595318032
%INSTALLDATE%
-1613407330
+1614499936
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/wget-1.21.1-2/desc b/msys2/var/lib/pacman/local/wget-1.21.1-2/desc
index 8c2bbc9cc..0e6e2576b 100644
--- a/msys2/var/lib/pacman/local/wget-1.21.1-2/desc
+++ b/msys2/var/lib/pacman/local/wget-1.21.1-2/desc
@@ -20,7 +20,7 @@ x86_64
1610726958
%INSTALLDATE%
-1613407330
+1614499937
%PACKAGER%
CI (msys2-autobuild/9e2e1814/488022070)
diff --git a/msys2/var/lib/pacman/local/which-2.21-2/desc b/msys2/var/lib/pacman/local/which-2.21-2/desc
index 914d47cde..b785caae2 100644
--- a/msys2/var/lib/pacman/local/which-2.21-2/desc
+++ b/msys2/var/lib/pacman/local/which-2.21-2/desc
@@ -17,7 +17,7 @@ x86_64
1437376459
%INSTALLDATE%
-1613407323
+1614499928
%PACKAGER%
Alexpux
diff --git a/msys2/var/lib/pacman/local/xz-5.2.5-1/desc b/msys2/var/lib/pacman/local/xz-5.2.5-1/desc
index 5f7ae9b8f..bddeab422 100644
--- a/msys2/var/lib/pacman/local/xz-5.2.5-1/desc
+++ b/msys2/var/lib/pacman/local/xz-5.2.5-1/desc
@@ -20,7 +20,7 @@ x86_64
1584529151
%INSTALLDATE%
-1613407323
+1614499929
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/zlib-1.2.11-1/desc b/msys2/var/lib/pacman/local/zlib-1.2.11-1/desc
index 627294fdc..1310bbeb2 100644
--- a/msys2/var/lib/pacman/local/zlib-1.2.11-1/desc
+++ b/msys2/var/lib/pacman/local/zlib-1.2.11-1/desc
@@ -20,7 +20,7 @@ x86_64
1485320558
%INSTALLDATE%
-1613407314
+1614499919
%PACKAGER%
Alexey Pavlov
diff --git a/msys2/var/lib/pacman/local/zstd-1.4.8-1/desc b/msys2/var/lib/pacman/local/zstd-1.4.8-1/desc
index d833a776c..7fcb0fc2a 100644
--- a/msys2/var/lib/pacman/local/zstd-1.4.8-1/desc
+++ b/msys2/var/lib/pacman/local/zstd-1.4.8-1/desc
@@ -20,7 +20,7 @@ x86_64
1608526739
%INSTALLDATE%
-1613407323
+1614499929
%PACKAGER%
CI (msys2-autobuild/dfb80bed/434829238)
diff --git a/msys2/var/lib/pacman/sync/mingw32.db b/msys2/var/lib/pacman/sync/mingw32.db
index 25a08a0d6..da5d53ede 100644
Binary files a/msys2/var/lib/pacman/sync/mingw32.db and b/msys2/var/lib/pacman/sync/mingw32.db differ
diff --git a/msys2/var/lib/pacman/sync/mingw32.db.sig b/msys2/var/lib/pacman/sync/mingw32.db.sig
index b40f991d6..5d1f87929 100644
Binary files a/msys2/var/lib/pacman/sync/mingw32.db.sig and b/msys2/var/lib/pacman/sync/mingw32.db.sig differ
diff --git a/msys2/var/lib/pacman/sync/mingw64.db b/msys2/var/lib/pacman/sync/mingw64.db
index fff2e2b1a..7456bc760 100644
Binary files a/msys2/var/lib/pacman/sync/mingw64.db and b/msys2/var/lib/pacman/sync/mingw64.db differ
diff --git a/msys2/var/lib/pacman/sync/mingw64.db.sig b/msys2/var/lib/pacman/sync/mingw64.db.sig
index 3dcf918ba..ccd7a3e55 100644
Binary files a/msys2/var/lib/pacman/sync/mingw64.db.sig and b/msys2/var/lib/pacman/sync/mingw64.db.sig differ
diff --git a/msys2/var/lib/pacman/sync/msys.db b/msys2/var/lib/pacman/sync/msys.db
index bb1d8039d..c95e501e1 100644
Binary files a/msys2/var/lib/pacman/sync/msys.db and b/msys2/var/lib/pacman/sync/msys.db differ
diff --git a/msys2/var/lib/pacman/sync/msys.db.sig b/msys2/var/lib/pacman/sync/msys.db.sig
index ea9848ca7..5c3a4eb4e 100644
Binary files a/msys2/var/lib/pacman/sync/msys.db.sig and b/msys2/var/lib/pacman/sync/msys.db.sig differ
diff --git a/msys2/var/log/pacman.log b/msys2/var/log/pacman.log
index ce3620086..b510f31f2 100644
--- a/msys2/var/log/pacman.log
+++ b/msys2/var/log/pacman.log
@@ -1,105 +1,105 @@
-[2021-02-15T16:40:22+0000] [PACMAN] Running 'pacman -Syu --root /tmp/newmsys/msys64'
-[2021-02-15T16:40:22+0000] [PACMAN] synchronizing package lists
-[2021-02-15T16:40:26+0000] [PACMAN] starting core system upgrade
-[2021-02-15T16:40:26+0000] [PACMAN] starting full system upgrade
-[2021-02-15T16:40:26+0000] [PACMAN] Running 'pacman -S --noconfirm --root /tmp/newmsys/msys64 base'
-[2021-02-15T16:41:45+0000] [ALPM] transaction started
-[2021-02-15T16:41:45+0000] [ALPM] installed bash (5.1.004-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed bash-completion (2.11-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed gcc-libs (10.2.0-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed libbz2 (1.0.8-2)
-[2021-02-15T16:41:46+0000] [ALPM] installed libintl (0.19.8.1-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed libiconv (1.16-2)
-[2021-02-15T16:41:46+0000] [ALPM] installed libexpat (2.2.10-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed libgettextpo (0.19.8.1-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed libasprintf (0.19.8.1-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed gettext (0.19.8.1-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed liblzma (5.2.5-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed liblz4 (1.9.3-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed gmp (6.2.1-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed libhogweed (3.7-1)
-[2021-02-15T16:41:46+0000] [ALPM] installed libnettle (3.7-1)
-[2021-02-15T16:41:47+0000] [ALPM] installed coreutils (8.32-1)
-[2021-02-15T16:41:47+0000] [ALPM] installed icu (68.2-1)
-[2021-02-15T16:41:48+0000] [ALPM] installed msys2-runtime (3.1.7-4)
-[2021-02-15T16:41:54+0000] [ALPM] installed ncurses (6.2-1)
-[2021-02-15T16:41:54+0000] [ALPM] installed libreadline (8.1.0-1)
-[2021-02-15T16:41:54+0000] [ALPM] installed zlib (1.2.11-1)
-[2021-02-15T16:41:54+0000] [ALPM] installed libxml2 (2.9.10-7)
-[2021-02-15T16:41:55+0000] [ALPM] installed libzstd (1.4.8-1)
-[2021-02-15T16:41:55+0000] [ALPM] installed bsdtar (3.5.1-1)
-[2021-02-15T16:41:55+0000] [ALPM] installed bzip2 (1.0.8-2)
-[2021-02-15T16:41:55+0000] [ALPM] installed libopenssl (1.1.1.i-1)
-[2021-02-15T16:41:55+0000] [ALPM] installed openssl (1.1.1.i-1)
-[2021-02-15T16:41:55+0000] [ALPM] installed findutils (4.7.0-1)
-[2021-02-15T16:41:55+0000] [ALPM] installed sed (4.8-1)
-[2021-02-15T16:41:55+0000] [ALPM] installed libffi (3.3-1)
-[2021-02-15T16:41:55+0000] [ALPM] installed libpcre (8.44-1)
-[2021-02-15T16:41:55+0000] [ALPM] installed less (563-2)
-[2021-02-15T16:41:56+0000] [ALPM] installed gzip (1.10-1)
-[2021-02-15T16:41:56+0000] [ALPM] installed libcrypt (2.1-2)
-[2021-02-15T16:41:56+0000] [ALPM] installed info (6.7-3)
-[2021-02-15T16:41:56+0000] [ALPM] installed libtasn1 (4.16.0-1)
-[2021-02-15T16:41:56+0000] [ALPM] installed libgpg-error (1.41-2)
-[2021-02-15T16:41:56+0000] [ALPM] installed libgcrypt (1.8.7-1)
-[2021-02-15T16:41:56+0000] [ALPM] installed libxslt (1.1.34-3)
-[2021-02-15T16:41:56+0000] [ALPM] installed glib2 (2.66.6-1)
-[2021-02-15T16:41:56+0000] [ALPM] installed libp11-kit (0.23.22-2)
-[2021-02-15T16:41:56+0000] [ALPM] installed p11-kit (0.23.22-2)
-[2021-02-15T16:41:56+0000] [ALPM] installed ca-certificates (20190110-1)
-[2021-02-15T16:41:57+0000] [ALPM] installed brotli (1.0.9-1)
-[2021-02-15T16:41:57+0000] [ALPM] installed libdb (5.3.28-3)
-[2021-02-15T16:41:57+0000] [ALPM] installed libedit (20191231_3.1-2)
-[2021-02-15T16:41:59+0000] [ALPM] installed tcl (8.6.10-1)
-[2021-02-15T16:41:59+0000] [ALPM] installed libsqlite (3.34.0-1)
-[2021-02-15T16:41:59+0000] [ALPM] installed heimdal-libs (7.7.0-2)
-[2021-02-15T16:41:59+0000] [ALPM] installed libunistring (0.9.10-1)
-[2021-02-15T16:41:59+0000] [ALPM] installed libidn2 (2.3.0-1)
-[2021-02-15T16:41:59+0000] [ALPM] installed libmetalink (0.1.3-3)
-[2021-02-15T16:41:59+0000] [ALPM] installed libnghttp2 (1.41.0-1)
-[2021-02-15T16:41:59+0000] [ALPM] installed libpsl (0.21.1-2)
-[2021-02-15T16:41:59+0000] [ALPM] installed libssh2 (1.9.0-1)
-[2021-02-15T16:41:59+0000] [ALPM] installed libcurl (7.74.0-4)
-[2021-02-15T16:42:00+0000] [ALPM] installed curl (7.74.0-4)
-[2021-02-15T16:42:00+0000] [ALPM] installed grep (3.0-2)
-[2021-02-15T16:42:00+0000] [ALPM] installed filesystem (2021.02-1)
-[2021-02-15T16:42:00+0000] [ALPM] installed dash (0.5.11.3-1)
-[2021-02-15T16:42:00+0000] [ALPM] installed file (5.39-2)
-[2021-02-15T16:42:01+0000] [ALPM] installed mpfr (4.1.0-1)
-[2021-02-15T16:42:01+0000] [ALPM] installed gawk (5.1.0-1)
-[2021-02-15T16:42:01+0000] [ALPM] installed libargp (20110921-2)
-[2021-02-15T16:42:01+0000] [ALPM] installed getent (2.18.90-2)
-[2021-02-15T16:42:01+0000] [ALPM] installed tftp-hpa (5.2-3)
-[2021-02-15T16:42:01+0000] [ALPM] installed inetutils (1.9.4-2)
-[2021-02-15T16:42:01+0000] [ALPM] installed mintty (1~3.4.4-2)
-[2021-02-15T16:42:01+0000] [ALPM] installed msys2-keyring (1~20210213-1)
-[2021-02-15T16:42:01+0000] [ALPM] installed msys2-launcher (1.0-1)
-[2021-02-15T16:42:02+0000] [ALPM] installed nano (5.4-1)
-[2021-02-15T16:42:02+0000] [ALPM] installed libassuan (2.5.4-1)
-[2021-02-15T16:42:02+0000] [ALPM] installed libgnutls (3.7.0-1)
-[2021-02-15T16:42:02+0000] [ALPM] installed libksba (1.4.0-1)
-[2021-02-15T16:42:02+0000] [ALPM] installed libnpth (1.6-1)
-[2021-02-15T16:42:02+0000] [ALPM] installed nettle (3.7-1)
-[2021-02-15T16:42:02+0000] [ALPM] installed pinentry (1.1.0-2)
-[2021-02-15T16:42:03+0000] [ALPM] installed gnupg (2.2.27-1)
-[2021-02-15T16:42:03+0000] [ALPM] installed pacman-mirrors (20210127-1)
-[2021-02-15T16:42:03+0000] [ALPM] installed which (2.21-2)
-[2021-02-15T16:42:03+0000] [ALPM] installed xz (5.2.5-1)
-[2021-02-15T16:42:03+0000] [ALPM] installed zstd (1.4.8-1)
-[2021-02-15T16:42:03+0000] [ALPM] installed pacman (5.2.2-12)
-[2021-02-15T16:42:03+0000] [ALPM] installed db (5.3.28-3)
-[2021-02-15T16:42:03+0000] [ALPM] installed libgdbm (1.19-1)
-[2021-02-15T16:42:04+0000] [ALPM] installed gdbm (1.19-1)
-[2021-02-15T16:42:07+0000] [ALPM] installed perl (5.32.0-2)
-[2021-02-15T16:42:07+0000] [ALPM] installed pacman-contrib (1.4.0-1)
-[2021-02-15T16:42:07+0000] [ALPM] installed rebase (4.4.4-2)
-[2021-02-15T16:42:07+0000] [ALPM] installed time (1.9-1)
-[2021-02-15T16:42:09+0000] [ALPM] installed tzcode (2020f-1)
-[2021-02-15T16:42:09+0000] [ALPM] installed libutil-linux (2.35.2-1)
-[2021-02-15T16:42:10+0000] [ALPM] installed util-linux (2.35.2-1)
-[2021-02-15T16:42:10+0000] [ALPM] installed libgpgme (1.15.1-1)
-[2021-02-15T16:42:10+0000] [ALPM] installed libpcre2_8 (10.36-1)
-[2021-02-15T16:42:10+0000] [ALPM] installed wget (1.21.1-2)
-[2021-02-15T16:42:10+0000] [ALPM] installed base (2020.12-1)
-[2021-02-15T16:42:10+0000] [ALPM] transaction completed
-[2021-02-15T16:42:10+0000] [ALPM] running 'texinfo-install.hook'...
+[2021-02-28T08:11:10+0000] [PACMAN] Running 'pacman -Syu --root /tmp/newmsys/msys64'
+[2021-02-28T08:11:10+0000] [PACMAN] synchronizing package lists
+[2021-02-28T08:11:13+0000] [PACMAN] starting core system upgrade
+[2021-02-28T08:11:13+0000] [PACMAN] starting full system upgrade
+[2021-02-28T08:11:13+0000] [PACMAN] Running 'pacman -S --noconfirm --root /tmp/newmsys/msys64 base'
+[2021-02-28T08:11:48+0000] [ALPM] transaction started
+[2021-02-28T08:11:48+0000] [ALPM] installed bash (5.1.004-1)
+[2021-02-28T08:11:49+0000] [ALPM] installed bash-completion (2.11-1)
+[2021-02-28T08:11:49+0000] [ALPM] installed gcc-libs (10.2.0-1)
+[2021-02-28T08:11:49+0000] [ALPM] installed libbz2 (1.0.8-2)
+[2021-02-28T08:11:49+0000] [ALPM] installed libintl (0.19.8.1-1)
+[2021-02-28T08:11:49+0000] [ALPM] installed libiconv (1.16-2)
+[2021-02-28T08:11:49+0000] [ALPM] installed libexpat (2.2.10-1)
+[2021-02-28T08:11:49+0000] [ALPM] installed libgettextpo (0.19.8.1-1)
+[2021-02-28T08:11:49+0000] [ALPM] installed libasprintf (0.19.8.1-1)
+[2021-02-28T08:11:50+0000] [ALPM] installed gettext (0.19.8.1-1)
+[2021-02-28T08:11:50+0000] [ALPM] installed liblzma (5.2.5-1)
+[2021-02-28T08:11:50+0000] [ALPM] installed liblz4 (1.9.3-1)
+[2021-02-28T08:11:50+0000] [ALPM] installed gmp (6.2.1-1)
+[2021-02-28T08:11:50+0000] [ALPM] installed libhogweed (3.7-1)
+[2021-02-28T08:11:50+0000] [ALPM] installed libnettle (3.7-1)
+[2021-02-28T08:11:50+0000] [ALPM] installed coreutils (8.32-1)
+[2021-02-28T08:11:51+0000] [ALPM] installed icu (68.2-1)
+[2021-02-28T08:11:51+0000] [ALPM] installed msys2-runtime (3.1.7-4)
+[2021-02-28T08:11:59+0000] [ALPM] installed ncurses (6.2-1)
+[2021-02-28T08:11:59+0000] [ALPM] installed libreadline (8.1.0-1)
+[2021-02-28T08:11:59+0000] [ALPM] installed zlib (1.2.11-1)
+[2021-02-28T08:11:59+0000] [ALPM] installed libxml2 (2.9.10-7)
+[2021-02-28T08:11:59+0000] [ALPM] installed libzstd (1.4.8-1)
+[2021-02-28T08:11:59+0000] [ALPM] installed bsdtar (3.5.1-1)
+[2021-02-28T08:11:59+0000] [ALPM] installed bzip2 (1.0.8-2)
+[2021-02-28T08:12:00+0000] [ALPM] installed libopenssl (1.1.1.i-1)
+[2021-02-28T08:12:00+0000] [ALPM] installed openssl (1.1.1.i-1)
+[2021-02-28T08:12:00+0000] [ALPM] installed findutils (4.7.0-1)
+[2021-02-28T08:12:00+0000] [ALPM] installed sed (4.8-1)
+[2021-02-28T08:12:00+0000] [ALPM] installed libffi (3.3-1)
+[2021-02-28T08:12:00+0000] [ALPM] installed libpcre (8.44-1)
+[2021-02-28T08:12:00+0000] [ALPM] installed less (563-2)
+[2021-02-28T08:12:00+0000] [ALPM] installed gzip (1.10-1)
+[2021-02-28T08:12:00+0000] [ALPM] installed libcrypt (2.1-2)
+[2021-02-28T08:12:00+0000] [ALPM] installed info (6.7-3)
+[2021-02-28T08:12:00+0000] [ALPM] installed libtasn1 (4.16.0-1)
+[2021-02-28T08:12:00+0000] [ALPM] installed libgpg-error (1.41-2)
+[2021-02-28T08:12:00+0000] [ALPM] installed libgcrypt (1.8.7-1)
+[2021-02-28T08:12:01+0000] [ALPM] installed libxslt (1.1.34-3)
+[2021-02-28T08:12:01+0000] [ALPM] installed glib2 (2.66.6-1)
+[2021-02-28T08:12:01+0000] [ALPM] installed libp11-kit (0.23.22-2)
+[2021-02-28T08:12:01+0000] [ALPM] installed p11-kit (0.23.22-2)
+[2021-02-28T08:12:01+0000] [ALPM] installed ca-certificates (20190110-1)
+[2021-02-28T08:12:02+0000] [ALPM] installed brotli (1.0.9-1)
+[2021-02-28T08:12:02+0000] [ALPM] installed libdb (5.3.28-3)
+[2021-02-28T08:12:02+0000] [ALPM] installed libedit (20191231_3.1-2)
+[2021-02-28T08:12:04+0000] [ALPM] installed tcl (8.6.10-1)
+[2021-02-28T08:12:04+0000] [ALPM] installed libsqlite (3.34.0-1)
+[2021-02-28T08:12:04+0000] [ALPM] installed heimdal-libs (7.7.0-2)
+[2021-02-28T08:12:05+0000] [ALPM] installed libunistring (0.9.10-1)
+[2021-02-28T08:12:05+0000] [ALPM] installed libidn2 (2.3.0-1)
+[2021-02-28T08:12:05+0000] [ALPM] installed libmetalink (0.1.3-3)
+[2021-02-28T08:12:05+0000] [ALPM] installed libnghttp2 (1.41.0-1)
+[2021-02-28T08:12:05+0000] [ALPM] installed libpsl (0.21.1-2)
+[2021-02-28T08:12:05+0000] [ALPM] installed libssh2 (1.9.0-1)
+[2021-02-28T08:12:05+0000] [ALPM] installed libcurl (7.74.0-4)
+[2021-02-28T08:12:06+0000] [ALPM] installed curl (7.74.0-4)
+[2021-02-28T08:12:06+0000] [ALPM] installed grep (3.0-2)
+[2021-02-28T08:12:06+0000] [ALPM] installed filesystem (2021.02-1)
+[2021-02-28T08:12:06+0000] [ALPM] installed dash (0.5.11.3-1)
+[2021-02-28T08:12:06+0000] [ALPM] installed file (5.39-2)
+[2021-02-28T08:12:06+0000] [ALPM] installed mpfr (4.1.0-1)
+[2021-02-28T08:12:06+0000] [ALPM] installed gawk (5.1.0-1)
+[2021-02-28T08:12:07+0000] [ALPM] installed libargp (20110921-2)
+[2021-02-28T08:12:07+0000] [ALPM] installed getent (2.18.90-2)
+[2021-02-28T08:12:07+0000] [ALPM] installed tftp-hpa (5.2-3)
+[2021-02-28T08:12:07+0000] [ALPM] installed inetutils (1.9.4-2)
+[2021-02-28T08:12:07+0000] [ALPM] installed mintty (1~3.4.5-1)
+[2021-02-28T08:12:07+0000] [ALPM] installed msys2-keyring (1~20210213-1)
+[2021-02-28T08:12:07+0000] [ALPM] installed msys2-launcher (1.0-1)
+[2021-02-28T08:12:07+0000] [ALPM] installed nano (5.4-1)
+[2021-02-28T08:12:07+0000] [ALPM] installed libassuan (2.5.4-1)
+[2021-02-28T08:12:07+0000] [ALPM] installed libgnutls (3.7.0-1)
+[2021-02-28T08:12:08+0000] [ALPM] installed libksba (1.4.0-1)
+[2021-02-28T08:12:08+0000] [ALPM] installed libnpth (1.6-1)
+[2021-02-28T08:12:08+0000] [ALPM] installed nettle (3.7-1)
+[2021-02-28T08:12:08+0000] [ALPM] installed pinentry (1.1.0-2)
+[2021-02-28T08:12:08+0000] [ALPM] installed gnupg (2.2.27-1)
+[2021-02-28T08:12:08+0000] [ALPM] installed pacman-mirrors (20210227-1)
+[2021-02-28T08:12:08+0000] [ALPM] installed which (2.21-2)
+[2021-02-28T08:12:09+0000] [ALPM] installed xz (5.2.5-1)
+[2021-02-28T08:12:09+0000] [ALPM] installed zstd (1.4.8-1)
+[2021-02-28T08:12:09+0000] [ALPM] installed pacman (5.2.2-12)
+[2021-02-28T08:12:09+0000] [ALPM] installed db (5.3.28-3)
+[2021-02-28T08:12:09+0000] [ALPM] installed libgdbm (1.19-1)
+[2021-02-28T08:12:09+0000] [ALPM] installed gdbm (1.19-1)
+[2021-02-28T08:12:13+0000] [ALPM] installed perl (5.32.0-2)
+[2021-02-28T08:12:13+0000] [ALPM] installed pacman-contrib (1.4.0-1)
+[2021-02-28T08:12:13+0000] [ALPM] installed rebase (4.4.4-2)
+[2021-02-28T08:12:13+0000] [ALPM] installed time (1.9-1)
+[2021-02-28T08:12:16+0000] [ALPM] installed tzcode (2020f-1)
+[2021-02-28T08:12:16+0000] [ALPM] installed libutil-linux (2.35.2-1)
+[2021-02-28T08:12:16+0000] [ALPM] installed util-linux (2.35.2-1)
+[2021-02-28T08:12:16+0000] [ALPM] installed libgpgme (1.15.1-1)
+[2021-02-28T08:12:17+0000] [ALPM] installed libpcre2_8 (10.36-1)
+[2021-02-28T08:12:17+0000] [ALPM] installed wget (1.21.1-2)
+[2021-02-28T08:12:17+0000] [ALPM] installed base (2020.12-1)
+[2021-02-28T08:12:17+0000] [ALPM] transaction completed
+[2021-02-28T08:12:17+0000] [ALPM] running 'texinfo-install.hook'...